retrieval not working in workflow for more than 100 files
Self Checks
- [x] I have read the Contributing Guide and Language Policy.
- [x] This is only for bug report, if you would like to ask a question, please head to Discussions.
- [x] I have searched for existing issues search for existing issues, including closed ones.
- [x] I confirm that I am using English to submit this report, otherwise it will be closed.
- [x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)
- [x] Please do not modify this template :) and fill in all the required fields.
Dify version
1.11.1
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
I used the API to upload 200 pdfs into a knowledgebase. When all documents are activated, the retrieval works in the knowledge > retrieval testing section but not in the retrieval node of my workflow. I get an empty results as retrieval response:
however, when I deactivate 100 documents so that there are only 100 documents active in the knowledge base:
The retrieval works in the retrieval node in the workflow:
the docker compose logs show the following exception:
api-1 | Exception in thread Thread-81 (_retriever): api-1 | Traceback (most recent call last): api-1 | File "/usr/local/lib/python3.12/threading.py", line 1075, in _bootstrap_inner api-1 | self.run() api-1 | File "/usr/local/lib/python3.12/threading.py", line 1012, in run api-1 | self._target(*self._args, **self._kwargs) api-1 | File "/app/api/core/rag/retrieval/dataset_retrieval.py", line 653, in _retriever api-1 | documents = RetrievalService.retrieve( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/core/rag/datasource/retrieval_service.py", line 107, in retrieve api-1 | raise ValueError(";\n".join(exceptions)) api-1 | ValueError: Error parsing message; api-1 | Error parsing message api-1 | /app/api/.venv/lib/python3.12/site-packages/sqlalchemy/sql/compiler.py:3299: ResourceWarning: unclosed <socket object, fd=26, family=2, type=1, proto=6> api-1 | def _literal_execute_expanding_parameter(self, name, parameter, values):
Any Ideas what is going on?
In a different dify installation that we use in production with v1.9.2, we do not have that issue. There, we use over 400 documents successfully in a chatflow.
✔️ Expected Behavior
The expected behavior would be a successful retrieval with more than 100 active documents in the knowledgebase
❌ Actual Behavior
please see the detailed description in repo steps section.
retrieval node returns empty json in a workflow:
This issue is likely caused by how Dify 1.11.1 handles retrieval with large document sets in workflows. The retrieval node uses multi-threading and aggregates exceptions from all threads—if any thread fails (for example, due to resource exhaustion, message size, or parsing errors), the workflow node returns empty results and logs a ValueError like "Error parsing message" reference.
There’s no explicit hardcoded document limit, but practical limits come from thread pool size, database connections, and resource exhaustion when handling many documents concurrently. Known bugs in 1.11.1—like manual segment indexing, metadata search inconsistencies, and unreliable retrieval of certain segment types—can also cause empty results or failures in workflows with large knowledge bases reference.
To mitigate:
- Reduce the number of active documents or optimize metadata filters to avoid overwhelming the retrieval pipeline.
- Increase Docker resource allocations (CPU/memory) and check the RETRIEVAL_SERVICE_EXECUTORS setting to tune concurrency.
- Re-index segments or reload the knowledge base if you suspect indexing issues.
- For robust support with large document sets, consider upgrading to a newer Dify version—recent releases include fixes for deduplication, recursion, and retrieval stability with large datasets.
If you need more technical details or want to troubleshoot further, let me know what you’d like to dig into.
To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other
i index the 260 document
using knowledge in chatflow
it work ok
i have the same problem , hao does resolve it ?
i have the same problem , hao does resolve it ?
how many documents do you have?
137个 , 换成90几个就可以使用filter , 不使用filter 就很ok
api-1 | Exception in thread Thread-15 (_retriever): api-1 | Traceback (most recent call last): api-1 | File "/usr/local/lib/python3.12/threading.py", line 1075, in _bootstrap_inner api-1 | self.run() api-1 | File "/usr/local/lib/python3.12/threading.py", line 1012, in run api-1 | self._target(*self._args, **self._kwargs) api-1 | File "/app/api/core/rag/retrieval/dataset_retrieval.py", line 798, in _retriever api-1 | documents = RetrievalService.retrieve( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/core/rag/datasource/retrieval_service.py", line 111, in retrieve api-1 | raise ValueError(";\n".join(exceptions)) api-1 | ValueError: Error parsing message; api-1 | Error parsing message
What filter are you referring to? We are not using any meta data filter at the moment.
As mentioned in the original post, we have other older dify deployments with retrieval nodes for over 400 documents that work fine on v1.9.2. Therefore, I suspect an issue with the current version.
Unfortunately, I do not understand the Error parsing message...
137个 , 换成90几个就可以使用filter , 不使用filter 就很ok
api-1 | Exception in thread Thread-15 (_retriever): api-1 | Traceback (most recent call last): api-1 | File "/usr/local/lib/python3.12/threading.py", line 1075, in _bootstrap_inner api-1 | self.run() api-1 | File "/usr/local/lib/python3.12/threading.py", line 1012, in run api-1 | self._target(*self._args, **self._kwargs) api-1 | File "/app/api/core/rag/retrieval/dataset_retrieval.py", line 798, in _retriever api-1 | documents = RetrievalService.retrieve( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/core/rag/datasource/retrieval_service.py", line 111, in retrieve api-1 | raise ValueError(";\n".join(exceptions)) api-1 | ValueError: Error parsing message; api-1 | Error parsing message
give a picture about how to search ?
current implement using ThreadPoolExecutor to concurrent query, when there is a error occur, add it to exceptions list, if exceptions list has a item, raise the value error
parsing message
parse message maybe error occur in parse, tell me you how to search
no problem
是否跟向量数据库有关系, 我使用的weaviate集群
是否跟向量数据库有关系, 我使用的weaviate集群
i am using weaviate too
i found some other error infos , is any help?
api-1 | 2025-12-19 10:11:30.204 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.failed exception=GeneratorExit()
=============== api-1 | 2025-12-19 10:11:23.786 DEBUG [Dummy-35] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:23.786 DEBUG [Dummy-35] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:23.811 DEBUG [Dummy-35] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:23.812 DEBUG [Dummy-35] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef7933e0> api-1 | 2025-12-19 10:11:23.813 DEBUG [Dummy-35] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:23.813 DEBUG [Dummy-35] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:23.813 DEBUG [Dummy-35] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:23.813 DEBUG [Dummy-35] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:23.813 DEBUG [Dummy-35] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:23 | 200 | 849.96µs | 172.31.0.3 | GET "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/triggers?page=1&page_size=256" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:23 +0000] "GET /console/api/files/upload HTTP/1.1" 200 223 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:23 +0000] "GET /console/api/account/profile HTTP/1.1" 200 315 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" api-1 | 2025-12-19 10:11:23.816 DEBUG [Dummy-35] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'application/json; charset=utf-8'), (b'Date', b'Fri, 19 Dec 2025 02:11:23 GMT'), (b'Content-Length', b'40')]) api-1 | 2025-12-19 10:11:23.816 INFO [Dummy-35] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/triggers?page=1&page_size=256 "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:23.816 DEBUG [Dummy-35] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:23.816 DEBUG [Dummy-35] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:23.817 DEBUG [Dummy-35] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:23.817 DEBUG [Dummy-35] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:23.817 DEBUG [Dummy-35] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:23.817 DEBUG [Dummy-35] [_trace.py:47] - close.complete nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:23 +0000] "GET /console/api/workspaces/current/triggers HTTP/1.1" 200 3 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:24 +0000] "GET /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflows/draft HTTP/1.1" 200 6418 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:29 +0000] "POST /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflows/draft HTTP/1.1" 200 119 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" api-1 | 2025-12-19 10:11:29.847 DEBUG [Thread-36 (_generate_worker)] [execution_limits.py:77] - Execution limits monitoring started api-1 | 2025-12-19 10:11:29.856 DEBUG [Thread-36 (_generate_worker)] [worker_pool.py:106] - Starting worker pool: 1 workers (nodes=4, min=1, max=10) api-1 | 2025-12-19 10:11:29.857 DEBUG [GraphDispatcher] [execution_limits.py:92] - Step 1 started: 1711528914102 api-1 | 2025-12-19 10:11:29.892 DEBUG [GraphDispatcher] [execution_limits.py:92] - Step 2 started: 1711528915811 api-1 | 2025-12-19 10:11:29.899 DEBUG [ThreadPoolExecutor-19_0] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:29.899 DEBUG [ThreadPoolExecutor-19_0] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:29.924 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:29.925 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71f45da0f0> api-1 | 2025-12-19 10:11:29.925 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.926 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:29.926 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.926 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:29.926 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.927 DEBUG [ThreadPoolExecutor-19_1] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:29.928 DEBUG [ThreadPoolExecutor-19_1] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:29 | 200 | 4.699467ms | 172.31.0.3 | GET "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256" api-1 | 2025-12-19 10:11:29.952 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:29.953 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'application/json; charset=utf-8'), (b'Date', b'Fri, 19 Dec 2025 02:11:29 GMT'), (b'Transfer-Encoding', b'chunked')]) api-1 | 2025-12-19 10:11:29.953 INFO [ThreadPoolExecutor-19_0] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256 "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:29.953 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.954 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:29.954 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:29.954 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:29.954 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:29.955 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - close.complete api-1 | 2025-12-19 10:11:29.963 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef547050> api-1 | 2025-12-19 10:11:29.963 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.964 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:29.964 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.964 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:29.964 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.968 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'application/json; charset=utf-8'), (b'Date', b'Fri, 19 Dec 2025 02:11:29 GMT'), (b'Transfer-Encoding', b'chunked')]) plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:29 | 200 | 4.412833ms | 172.31.0.3 | GET "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256" api-1 | 2025-12-19 10:11:29.968 INFO [ThreadPoolExecutor-19_1] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256 "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:29.968 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:29.969 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:29.969 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:29.969 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:29.970 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:29.970 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - close.complete api-1 | 2025-12-19 10:11:29.982 DEBUG [ThreadPoolExecutor-19_0] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=False http2=False api-1 | 2025-12-19 10:11:29.983 DEBUG [ThreadPoolExecutor-19_0] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.007 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - connect_tcp.started host='10.1.228.244' port=50050 local_address=None timeout=5.0 socket_options=None api-1 | 2025-12-19 10:11:30.009 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef7e21b0> api-1 | 2025-12-19 10:11:30.009 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.009 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.010 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.010 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.010 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.011 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'access-control-allow-headers', b'Content-Type, Authorization, Batch, X-Openai-Api-Key, X-Openai-Organization, X-Openai-Baseurl, X-Anyscale-Baseurl, X-Anyscale-Api-Key, X-Cohere-Api-Key, X-Cohere-Baseurl, X-Huggingface-Api-Key, X-Azure-Api-Key, X-Azure-Deployment-Id, X-Azure-Resource-Name, X-Google-Api-Key, X-Google-Vertex-Api-Key, X-Google-Studio-Api-Key, X-Palm-Api-Key, X-Jinaai-Api-Key, X-Aws-Access-Key, X-Aws-Secret-Key, X-Voyageai-Baseurl, X-Voyageai-Api-Key, X-Mistral-Baseurl, X-Mistral-Api-Key, X-OctoAI-Api-Key, X-Anthropic-Baseurl, X-Anthropic-Api-Key, X-Databricks-Endpoint, X-Databricks-Token, X-Databricks-User-Agent, X-Friendli-Token, X-Friendli-Baseurl, X-Weaviate-Api-Key'), (b'access-control-allow-methods', b''), (b'access-control-allow-origin', b''), (b'content-type', b'application/json'), (b'vary', b'Origin'), (b'date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'content-length', b'64')]) api-1 | 2025-12-19 10:11:30.012 INFO [ThreadPoolExecutor-19_0] [_client.py:1038] - HTTP Request: GET http://10.1.228.244:50050/v1/meta "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.012 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.012 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.012 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.012 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.015 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.015 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.016 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.016 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.016 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.017 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'content-length', b'0')]) api-1 | 2025-12-19 10:11:30.017 INFO [ThreadPoolExecutor-19_0] [_client.py:1038] - HTTP Request: GET http://10.1.228.244:50050/v1/.well-known/ready "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.017 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.017 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.018 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.018 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.021 DEBUG [ThreadPoolExecutor-19_1] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=False http2=False api-1 | 2025-12-19 10:11:30.022 DEBUG [ThreadPoolExecutor-19_1] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.045 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - connect_tcp.started host='10.1.228.244' port=50050 local_address=None timeout=5.0 socket_options=None api-1 | 2025-12-19 10:11:30.046 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.046 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.047 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.047 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.047 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.047 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef58f1a0> api-1 | 2025-12-19 10:11:30.048 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.048 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.048 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.048 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.048 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.049 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'access-control-allow-headers', b'Content-Type, Authorization, Batch, X-Openai-Api-Key, X-Openai-Organization, X-Openai-Baseurl, X-Anyscale-Baseurl, X-Anyscale-Api-Key, X-Cohere-Api-Key, X-Cohere-Baseurl, X-Huggingface-Api-Key, X-Azure-Api-Key, X-Azure-Deployment-Id, X-Azure-Resource-Name, X-Google-Api-Key, X-Google-Vertex-Api-Key, X-Google-Studio-Api-Key, X-Palm-Api-Key, X-Jinaai-Api-Key, X-Aws-Access-Key, X-Aws-Secret-Key, X-Voyageai-Baseurl, X-Voyageai-Api-Key, X-Mistral-Baseurl, X-Mistral-Api-Key, X-OctoAI-Api-Key, X-Anthropic-Baseurl, X-Anthropic-Api-Key, X-Databricks-Endpoint, X-Databricks-Token, X-Databricks-User-Agent, X-Friendli-Token, X-Friendli-Baseurl, X-Weaviate-Api-Key'), (b'access-control-allow-methods', b''), (b'access-control-allow-origin', b''), (b'content-type', b'application/json'), (b'vary', b'Origin'), (b'date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'transfer-encoding', b'chunked')]) api-1 | 2025-12-19 10:11:30.049 INFO [ThreadPoolExecutor-19_0] [_client.py:1038] - HTTP Request: GET http://10.1.228.244:50050/v1/schema/Vector_dify_prod_index_bb80576e_9c20_483c_af23_dc42a43f9b75_Node "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.049 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.050 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.050 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.050 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.050 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'access-control-allow-headers', b'Content-Type, Authorization, Batch, X-Openai-Api-Key, X-Openai-Organization, X-Openai-Baseurl, X-Anyscale-Baseurl, X-Anyscale-Api-Key, X-Cohere-Api-Key, X-Cohere-Baseurl, X-Huggingface-Api-Key, X-Azure-Api-Key, X-Azure-Deployment-Id, X-Azure-Resource-Name, X-Google-Api-Key, X-Google-Vertex-Api-Key, X-Google-Studio-Api-Key, X-Palm-Api-Key, X-Jinaai-Api-Key, X-Aws-Access-Key, X-Aws-Secret-Key, X-Voyageai-Baseurl, X-Voyageai-Api-Key, X-Mistral-Baseurl, X-Mistral-Api-Key, X-OctoAI-Api-Key, X-Anthropic-Baseurl, X-Anthropic-Api-Key, X-Databricks-Endpoint, X-Databricks-Token, X-Databricks-User-Agent, X-Friendli-Token, X-Friendli-Baseurl, X-Weaviate-Api-Key'), (b'access-control-allow-methods', b''), (b'access-control-allow-origin', b''), (b'content-type', b'application/json'), (b'vary', b'Origin'), (b'date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'content-length', b'64')]) api-1 | 2025-12-19 10:11:30.051 INFO [ThreadPoolExecutor-19_1] [_client.py:1038] - HTTP Request: GET http://10.1.228.244:50050/v1/meta "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.051 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.051 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.051 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.051 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.057 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:30.057 DEBUG [ThreadPoolExecutor-19_0] [_trace.py:47] - close.complete api-1 | 2025-12-19 10:11:30.059 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.059 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.059 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.059 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.059 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.060 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'content-length', b'0')]) api-1 | 2025-12-19 10:11:30.060 INFO [ThreadPoolExecutor-19_1] [_client.py:1038] - HTTP Request: GET http://10.1.228.244:50050/v1/.well-known/ready "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.060 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.060 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.060 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.061 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.061 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.061 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.062 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.062 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.062 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.064 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'access-control-allow-headers', b'Content-Type, Authorization, Batch, X-Openai-Api-Key, X-Openai-Organization, X-Openai-Baseurl, X-Anyscale-Baseurl, X-Anyscale-Api-Key, X-Cohere-Api-Key, X-Cohere-Baseurl, X-Huggingface-Api-Key, X-Azure-Api-Key, X-Azure-Deployment-Id, X-Azure-Resource-Name, X-Google-Api-Key, X-Google-Vertex-Api-Key, X-Google-Studio-Api-Key, X-Palm-Api-Key, X-Jinaai-Api-Key, X-Aws-Access-Key, X-Aws-Secret-Key, X-Voyageai-Baseurl, X-Voyageai-Api-Key, X-Mistral-Baseurl, X-Mistral-Api-Key, X-OctoAI-Api-Key, X-Anthropic-Baseurl, X-Anthropic-Api-Key, X-Databricks-Endpoint, X-Databricks-Token, X-Databricks-User-Agent, X-Friendli-Token, X-Friendli-Baseurl, X-Weaviate-Api-Key'), (b'access-control-allow-methods', b''), (b'access-control-allow-origin', b''), (b'content-type', b'application/json'), (b'vary', b'Origin'), (b'date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'transfer-encoding', b'chunked')]) api-1 | 2025-12-19 10:11:30.064 INFO [ThreadPoolExecutor-19_1] [_client.py:1038] - HTTP Request: GET http://10.1.228.244:50050/v1/schema/Vector_dify_prod_index_bb80576e_9c20_483c_af23_dc42a43f9b75_Node "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.064 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.064 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.064 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.064 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.069 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:30.069 DEBUG [ThreadPoolExecutor-19_1] [_trace.py:47] - close.complete api-1 | Exception in thread Thread-39 (_retriever): api-1 | Traceback (most recent call last): api-1 | File "/usr/local/lib/python3.12/threading.py", line 1075, in _bootstrap_inner api-1 | self.run() api-1 | File "/usr/local/lib/python3.12/threading.py", line 1012, in run api-1 | self._target(*self._args, **self._kwargs) api-1 | File "/app/api/core/rag/retrieval/dataset_retrieval.py", line 798, in _retriever api-1 | documents = RetrievalService.retrieve( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/core/rag/datasource/retrieval_service.py", line 111, in retrieve api-1 | raise ValueError(";\n".join(exceptions)) api-1 | ValueError: Error parsing message; api-1 | Error parsing message api-1 | 2025-12-19 10:11:30.077 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:30.078 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.102 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:30.103 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef6dee10> api-1 | 2025-12-19 10:11:30.103 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.104 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.104 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.104 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.104 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.108 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'application/json; charset=utf-8'), (b'Date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'Transfer-Encoding', b'chunked')]) plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:30 | 200 | 4.429265ms | 172.31.0.3 | GET "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256" api-1 | 2025-12-19 10:11:30.108 INFO [Thread-38 (_multiple_retrieve_thread)] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256 "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.108 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.109 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.109 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.109 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.110 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:30.110 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - close.complete api-1 | 2025-12-19 10:11:30.141 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:30.142 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.167 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:30.168 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef63be30> api-1 | 2025-12-19 10:11:30.168 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_headers.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.168 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.168 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.169 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.169 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_headers.started request=<Request [b'POST']> plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:30 | 200 | 2.711506ms | 172.31.0.3 | POST "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/model/schema" api-1 | 2025-12-19 10:11:30.171 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'text/event-stream'), (b'Date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'Transfer-Encoding', b'chunked')]) api-1 | 2025-12-19 10:11:30.171 INFO [Thread-38 (_multiple_retrieve_thread)] [_client.py:1038] - HTTP Request: POST http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/model/schema "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.172 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.173 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.failed exception=GeneratorExit() api-1 | 2025-12-19 10:11:30.173 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.174 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.174 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:30.175 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.198 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:30.199 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef7e3b00> api-1 | 2025-12-19 10:11:30.199 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_headers.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.200 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.200 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.200 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.200 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_headers.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.202 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'text/event-stream'), (b'Date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'Transfer-Encoding', b'chunked')]) plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:30 | 200 | 2.445663ms | 172.31.0.3 | POST "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/rerank/invoke" api-1 | 2025-12-19 10:11:30.202 INFO [Thread-38 (_multiple_retrieve_thread)] [_client.py:1038] - HTTP Request: POST http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/rerank/invoke "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.202 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.204 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - receive_response_body.failed exception=GeneratorExit() api-1 | 2025-12-19 10:11:30.204 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.204 DEBUG [Thread-38 (_multiple_retrieve_thread)] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.223 DEBUG [GraphWorker-0] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:30.224 DEBUG [GraphWorker-0] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.247 DEBUG [GraphWorker-0] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:30.249 DEBUG [GraphWorker-0] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef661310> api-1 | 2025-12-19 10:11:30.249 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_headers.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.249 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.250 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.250 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.250 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_headers.started request=<Request [b'GET']> plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:30 | 200 | 4.370461ms | 172.31.0.3 | GET "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256" api-1 | 2025-12-19 10:11:30.254 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'application/json; charset=utf-8'), (b'Date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'Transfer-Encoding', b'chunked')]) api-1 | 2025-12-19 10:11:30.254 INFO [GraphWorker-0] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/management/models?page=1&page_size=256 "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.255 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_body.started request=<Request [b'GET']> api-1 | 2025-12-19 10:11:30.255 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:30.255 DEBUG [GraphWorker-0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.255 DEBUG [GraphWorker-0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.256 DEBUG [GraphWorker-0] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:30.256 DEBUG [GraphWorker-0] [_trace.py:47] - close.complete api-1 | 2025-12-19 10:11:30.269 DEBUG [GraphDispatcher] [execution_limits.py:92] - Step 3 started: 1711528917469 api-1 | 2025-12-19 10:11:30.277 DEBUG [GraphWorker-0] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:30.278 DEBUG [GraphWorker-0] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.301 DEBUG [GraphWorker-0] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:30.302 DEBUG [GraphWorker-0] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef6de9f0> api-1 | 2025-12-19 10:11:30.302 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_headers.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.303 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.303 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.303 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.303 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_headers.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.306 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'text/event-stream'), (b'Date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'Transfer-Encoding', b'chunked')]) plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:30 | 200 | 3.027666ms | 172.31.0.3 | POST "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/model/schema" api-1 | 2025-12-19 10:11:30.306 INFO [GraphWorker-0] [_client.py:1038] - HTTP Request: POST http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/model/schema "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.306 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.308 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_body.failed exception=GeneratorExit() api-1 | 2025-12-19 10:11:30.308 DEBUG [GraphWorker-0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:30.308 DEBUG [GraphWorker-0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:30.327 DEBUG [GraphWorker-0] [_config.py:82] - load_ssl_context verify=True cert=None trust_env=True http2=False api-1 | 2025-12-19 10:11:30.328 DEBUG [GraphWorker-0] [_config.py:148] - load_verify_locations cafile='/app/api/.venv/lib/python3.12/site-packages/certifi/cacert.pem' api-1 | 2025-12-19 10:11:30.352 DEBUG [GraphWorker-0] [_trace.py:47] - connect_tcp.started host='plugin_daemon' port=5002 local_address=None timeout=300.0 socket_options=None api-1 | 2025-12-19 10:11:30.353 DEBUG [GraphWorker-0] [_trace.py:47] - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x7f71ef547890> api-1 | 2025-12-19 10:11:30.353 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_headers.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.354 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_headers.complete api-1 | 2025-12-19 10:11:30.354 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_body.started request=<Request [b'POST']> api-1 | 2025-12-19 10:11:30.354 DEBUG [GraphWorker-0] [_trace.py:47] - send_request_body.complete api-1 | 2025-12-19 10:11:30.354 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_headers.started request=<Request [b'POST']> worker_beat-1 | 2025-12-19 10:11:30.411 INFO [MainThread] [beat.py:279] - Scheduler: Sending due task workflow_schedule_task (schedule.workflow_schedule_task.poll_workflow_schedules) worker_beat-1 | 2025-12-19 10:11:30.413 DEBUG [MainThread] [beat.py:287] - schedule.workflow_schedule_task.poll_workflow_schedules sent. id->6c5cc1d1-f02f-4970-972b-545778fa8b51 worker_beat-1 | 2025-12-19 10:11:30.414 DEBUG [MainThread] [beat.py:646] - beat: Waking up now. worker_beat-1 | 2025-12-19 10:11:30.429 INFO [MainThread] [beat.py:279] - Scheduler: Sending due task trigger_provider_refresh (schedule.trigger_provider_refresh_task.trigger_provider_refresh) worker_beat-1 | 2025-12-19 10:11:30.431 DEBUG [MainThread] [beat.py:287] - schedule.trigger_provider_refresh_task.trigger_provider_refresh sent. id->e19cabe8-7776-44a6-bad6-8d0ab3df8847 worker_beat-1 | 2025-12-19 10:11:30.431 DEBUG [MainThread] [beat.py:646] - beat: Waking up in 59.97 seconds. api-1 | 2025-12-19 10:11:30.447 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Content-Type', b'text/event-stream'), (b'Date', b'Fri, 19 Dec 2025 02:11:30 GMT'), (b'Transfer-Encoding', b'chunked')]) api-1 | 2025-12-19 10:11:30.448 INFO [GraphWorker-0] [_client.py:1038] - HTTP Request: POST http://plugin_daemon:5002/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/llm/invoke "HTTP/1.1 200 OK" api-1 | 2025-12-19 10:11:30.448 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_body.started request=<Request [b'POST']> plugin_daemon-1 | [GIN] 2025/12/19 - 02:11:35 | 200 | 4.96387931s | 172.31.0.3 | POST "/plugin/cc94c3ec-7b29-41e2-898c-d7c7b03b59d6/dispatch/llm/invoke" api-1 | 2025-12-19 10:11:35.318 DEBUG [GraphWorker-0] [_trace.py:47] - receive_response_body.complete api-1 | 2025-12-19 10:11:35.318 DEBUG [GraphWorker-0] [_trace.py:47] - response_closed.started api-1 | 2025-12-19 10:11:35.318 DEBUG [GraphWorker-0] [_trace.py:47] - response_closed.complete api-1 | 2025-12-19 10:11:35.319 DEBUG [GraphWorker-0] [_trace.py:47] - close.started api-1 | 2025-12-19 10:11:35.320 DEBUG [GraphWorker-0] [_trace.py:47] - close.complete api-1 | 2025-12-19 10:11:35.327 DEBUG [Dummy-37] [workflow_draft_variable_service.py:905] - Skip saving variable as it has been excluded by its node_type, name=finish_reason, node_type=llm api-1 | 2025-12-19 10:11:35.341 DEBUG [GraphDispatcher] [execution_limits.py:92] - Step 4 started: 1711528919501 api-1 | 2025-12-19 10:11:35.366 DEBUG [Thread-36 (_generate_worker)] [worker_pool.py:125] - Stopping worker pool: 1 workers nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:35 +0000] "POST /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/advanced-chat/workflows/draft/run HTTP/1.1" 200 39631 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" api-1 | 2025-12-19 10:11:35.424 DEBUG [Thread-36 (_generate_worker)] [execution_limits.py:110] - Execution completed: 4 steps in 5.58 seconds nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:35 +0000] "GET /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflows/draft/system-variables HTTP/1.1" 200 2094 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:35 +0000] "GET /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflows/draft/variables?page=1&limit=100 HTTP/1.1" 200 3091 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:35 +0000] "GET /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflows/draft/conversation-variables HTTP/1.1" 200 13 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-" sandbox-1 | [GIN] 2025/12/19 - 02:11:36 | 200 | 27.014µs | ::1 | GET "/health" nginx-1 | 192.168.45.167 - - [19/Dec/2025:02:11:37 +0000] "POST /console/api/apps/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflows/draft HTTP/1.1" 200 119 "http://10.1.228.164/app/ac6ce6a3-2093-4172-8e3a-7a3a6c97538a/workflow" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36" "-"
我新建了一个知识库使用很简单的文本进行测试,就是刚好卡在100个文档的时候是可以进行过滤的,101个文档就无法过滤
I encountered the same issue. After some testing, it turns out that the problem isn't related to the number of documents exceeding 100, but rather arises when the filtered results exceed 100. For example, if the metadata contains a field called "status," and the filtered result set exceeds 100 when "status" equals 1, while it remains under 100 when "status" equals 2, the issue won't occur.Has the new version solved this problem?
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
![]()
i test with 150 document, per document has 10000 chinese character, work well
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
![]()
you can attach the dify api docker, modify the code below and restart the dify api docker, to the see the debug log
@classmethod
def keyword_search(
cls,
flask_app: Flask,
dataset_id: str,
query: str,
top_k: int,
all_documents: list,
exceptions: list,
document_ids_filter: list[str] | None = None,
):
with flask_app.app_context():
try:
dataset = cls._get_dataset(dataset_id)
if not dataset:
raise ValueError("dataset not found")
keyword = Keyword(dataset=dataset)
documents = keyword.search(
cls.escape_query_for_search(query), top_k=top_k, document_ids_filter=document_ids_filter
)
all_documents.extend(documents)
except Exception as e:
logger.error(e, exc_info=True) # add debug log
exceptions.append(str(e))
try:
dataset = cls._get_dataset(dataset_id)
if not dataset:
raise ValueError("dataset not found")
vector = Vector(dataset=dataset)
documents = []
if query_type == QueryType.TEXT_QUERY:
documents.extend(
vector.search_by_vector(
query,
search_type="similarity_score_threshold",
top_k=top_k,
score_threshold=score_threshold,
filter={"group_id": [dataset.id]},
document_ids_filter=document_ids_filter,
)
)
if query_type == QueryType.IMAGE_QUERY:
if not dataset.is_multimodal:
return
documents.extend(
vector.search_by_file(
file_id=query,
top_k=top_k,
score_threshold=score_threshold,
filter={"group_id": [dataset.id]},
document_ids_filter=document_ids_filter,
)
)
if documents:
if (
reranking_model
and reranking_model.get("reranking_model_name")
and reranking_model.get("reranking_provider_name")
and retrieval_method == RetrievalMethod.SEMANTIC_SEARCH
):
data_post_processor = DataPostProcessor(
str(dataset.tenant_id), str(RerankMode.RERANKING_MODEL), reranking_model, None, False
)
if dataset.is_multimodal:
model_manager = ModelManager()
is_support_vision = model_manager.check_model_support_vision(
tenant_id=dataset.tenant_id,
provider=reranking_model.get("reranking_provider_name") or "",
model=reranking_model.get("reranking_model_name") or "",
model_type=ModelType.RERANK,
)
if is_support_vision:
all_documents.extend(
data_post_processor.invoke(
query=query,
documents=documents,
score_threshold=score_threshold,
top_n=len(documents),
query_type=query_type,
)
)
else:
# not effective, return original documents
all_documents.extend(documents)
else:
all_documents.extend(
data_post_processor.invoke(
query=query,
documents=documents,
score_threshold=score_threshold,
top_n=len(documents),
query_type=query_type,
)
)
else:
all_documents.extend(documents)
except Exception as e:
logger.error(e, exc_info=True) # add debug log
exceptions.append(str(e))
@fatelei
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
you can attach the dify api docker, modify the code below and restart the dify api docker, to the see the debug log
@classmethod def keyword_search( cls, flask_app: Flask, dataset_id: str, query: str, top_k: int, all_documents: list, exceptions: list, document_ids_filter: list[str] | None = None, ): with flask_app.app_context(): try: dataset = cls._get_dataset(dataset_id) if not dataset: raise ValueError("dataset not found")
keyword = Keyword(dataset=dataset) documents = keyword.search( cls.escape_query_for_search(query), top_k=top_k, document_ids_filter=document_ids_filter ) all_documents.extend(documents) except Exception as e: logger.error(e, exc_info=True) # add debug log exceptions.append(str(e)) try: dataset = cls._get_dataset(dataset_id) if not dataset: raise ValueError("dataset not found") vector = Vector(dataset=dataset) documents = [] if query_type == QueryType.TEXT_QUERY: documents.extend( vector.search_by_vector( query, search_type="similarity_score_threshold", top_k=top_k, score_threshold=score_threshold, filter={"group_id": [dataset.id]}, document_ids_filter=document_ids_filter, ) ) if query_type == QueryType.IMAGE_QUERY: if not dataset.is_multimodal: return documents.extend( vector.search_by_file( file_id=query, top_k=top_k, score_threshold=score_threshold, filter={"group_id": [dataset.id]}, document_ids_filter=document_ids_filter, ) ) if documents: if ( reranking_model and reranking_model.get("reranking_model_name") and reranking_model.get("reranking_provider_name") and retrieval_method == RetrievalMethod.SEMANTIC_SEARCH ): data_post_processor = DataPostProcessor( str(dataset.tenant_id), str(RerankMode.RERANKING_MODEL), reranking_model, None, False ) if dataset.is_multimodal: model_manager = ModelManager() is_support_vision = model_manager.check_model_support_vision( tenant_id=dataset.tenant_id, provider=reranking_model.get("reranking_provider_name") or "", model=reranking_model.get("reranking_model_name") or "", model_type=ModelType.RERANK, ) if is_support_vision: all_documents.extend( data_post_processor.invoke( query=query, documents=documents, score_threshold=score_threshold, top_n=len(documents), query_type=query_type, ) ) else: # not effective, return original documents all_documents.extend(documents) else: all_documents.extend( data_post_processor.invoke( query=query, documents=documents, score_threshold=score_threshold, top_n=len(documents), query_type=query_type, ) ) else: all_documents.extend(documents) except Exception as e: logger.error(e, exc_info=True) # add debug log exceptions.append(str(e))
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
i test with 150 document, per document has 10000 chinese character, work well
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
i test with 150 document, per document has 10000 chinese character, work well
I have added log printing, and the error is as shown in the image below. This is for testing purposes. I created a new knowledge base containing 101 documents, all with a metadata status of status=2. If I change one of them to status=1, there are no errors, and it can be queried normally.
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
you can attach the dify api docker, modify the code below and restart the dify api docker, to the see the debug log @classmethod def keyword_search( cls, flask_app: Flask, dataset_id: str, query: str, top_k: int, all_documents: list, exceptions: list, document_ids_filter: list[str] | None = None, ): with flask_app.app_context(): try: dataset = cls._get_dataset(dataset_id) if not dataset: raise ValueError("dataset not found")
keyword = Keyword(dataset=dataset) documents = keyword.search( cls.escape_query_for_search(query), top_k=top_k, document_ids_filter=document_ids_filter ) all_documents.extend(documents) except Exception as e: logger.error(e, exc_info=True) # add debug log exceptions.append(str(e)) try: dataset = cls._get_dataset(dataset_id) if not dataset: raise ValueError("dataset not found") vector = Vector(dataset=dataset) documents = [] if query_type == QueryType.TEXT_QUERY: documents.extend( vector.search_by_vector( query, search_type="similarity_score_threshold", top_k=top_k, score_threshold=score_threshold, filter={"group_id": [dataset.id]}, document_ids_filter=document_ids_filter, ) ) if query_type == QueryType.IMAGE_QUERY: if not dataset.is_multimodal: return documents.extend( vector.search_by_file( file_id=query, top_k=top_k, score_threshold=score_threshold, filter={"group_id": [dataset.id]}, document_ids_filter=document_ids_filter, ) ) if documents: if ( reranking_model and reranking_model.get("reranking_model_name") and reranking_model.get("reranking_provider_name") and retrieval_method == RetrievalMethod.SEMANTIC_SEARCH ): data_post_processor = DataPostProcessor( str(dataset.tenant_id), str(RerankMode.RERANKING_MODEL), reranking_model, None, False ) if dataset.is_multimodal: model_manager = ModelManager() is_support_vision = model_manager.check_model_support_vision( tenant_id=dataset.tenant_id, provider=reranking_model.get("reranking_provider_name") or "", model=reranking_model.get("reranking_model_name") or "", model_type=ModelType.RERANK, ) if is_support_vision: all_documents.extend( data_post_processor.invoke( query=query, documents=documents, score_threshold=score_threshold, top_n=len(documents), query_type=query_type, ) ) else: # not effective, return original documents all_documents.extend(documents) else: all_documents.extend( data_post_processor.invoke( query=query, documents=documents, score_threshold=score_threshold, top_n=len(documents), query_type=query_type, ) ) else: all_documents.extend(documents) except Exception as e: logger.error(e, exc_info=True) # add debug log exceptions.append(str(e))@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
i test with 150 document, per document has 10000 chinese character, work well
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
i test with 150 document, per document has 10000 chinese character, work well
I have added log printing, and the error is as shown in the image below. This is for testing purposes. I created a new knowledge base containing 101 documents, all with a metadata status of status=2. If I change one of them to status=1, there are no errors, and it can be queried normally.
![]()
the reason is here
maybe param is not valid, lead weaviate return error
query_vector maybe invalid, i will submit a pr to fix it
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
you can attach the dify api docker, modify the code below and restart the dify api docker, to the see the debug log @classmethod def keyword_search( cls, flask_app: Flask, dataset_id: str, query: str, top_k: int, all_documents: list, exceptions: list, document_ids_filter: list[str] | None = None, ): with flask_app.app_context(): try: dataset = cls._get_dataset(dataset_id) if not dataset: raise ValueError("dataset not found")
keyword = Keyword(dataset=dataset) documents = keyword.search( cls.escape_query_for_search(query), top_k=top_k, document_ids_filter=document_ids_filter ) all_documents.extend(documents) except Exception as e: logger.error(e, exc_info=True) # add debug log exceptions.append(str(e)) try: dataset = cls._get_dataset(dataset_id) if not dataset: raise ValueError("dataset not found") vector = Vector(dataset=dataset) documents = [] if query_type == QueryType.TEXT_QUERY: documents.extend( vector.search_by_vector( query, search_type="similarity_score_threshold", top_k=top_k, score_threshold=score_threshold, filter={"group_id": [dataset.id]}, document_ids_filter=document_ids_filter, ) ) if query_type == QueryType.IMAGE_QUERY: if not dataset.is_multimodal: return documents.extend( vector.search_by_file( file_id=query, top_k=top_k, score_threshold=score_threshold, filter={"group_id": [dataset.id]}, document_ids_filter=document_ids_filter, ) ) if documents: if ( reranking_model and reranking_model.get("reranking_model_name") and reranking_model.get("reranking_provider_name") and retrieval_method == RetrievalMethod.SEMANTIC_SEARCH ): data_post_processor = DataPostProcessor( str(dataset.tenant_id), str(RerankMode.RERANKING_MODEL), reranking_model, None, False ) if dataset.is_multimodal: model_manager = ModelManager() is_support_vision = model_manager.check_model_support_vision( tenant_id=dataset.tenant_id, provider=reranking_model.get("reranking_provider_name") or "", model=reranking_model.get("reranking_model_name") or "", model_type=ModelType.RERANK, ) if is_support_vision: all_documents.extend( data_post_processor.invoke( query=query, documents=documents, score_threshold=score_threshold, top_n=len(documents), query_type=query_type, ) ) else: # not effective, return original documents all_documents.extend(documents) else: all_documents.extend( data_post_processor.invoke( query=query, documents=documents, score_threshold=score_threshold, top_n=len(documents), query_type=query_type, ) ) else: all_documents.extend(documents) except Exception as e: logger.error(e, exc_info=True) # add debug log exceptions.append(str(e))@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
i test with 150 document, per document has 10000 chinese character, work well
@fatelei I upgraded to version 1.11.2, but the same issue persists—just the line numbers reporting errors have changed。The result of metadata status=2 in my document exceeds 100, and it is normal when the status is equal to others and less than 100.
i test with 150 document, per document has 10000 chinese character, work well
I have added log printing, and the error is as shown in the image below. This is for testing purposes. I created a new knowledge base containing 101 documents, all with a metadata status of status=2. If I change one of them to status=1, there are no errors, and it can be queried normally.
![]()
def search_by_vector(self, query_vector: list[float], **kwargs: Any) -> list[Document]:
"""
Performs vector similarity search using the provided query vector.
Filters by document IDs if provided and applies score threshold.
Returns documents sorted by relevance score.
"""
if not self._client.collections.exists(self._collection_name):
return []
col = self._client.collections.use(self._collection_name)
props = list({*self._attributes, "document_id", Field.TEXT_KEY.value})
where = None
doc_ids = kwargs.get("document_ids_filter") or []
if doc_ids:
ors = [Filter.by_property("document_id").equal(x) for x in doc_ids]
where = ors[0]
for f in ors[1:]:
where = where | f
top_k = int(kwargs.get("top_k", 4))
score_threshold = float(kwargs.get("score_threshold") or 0.0)
# Sanitize query_vector to remove NaN/Infinity values that cannot be serialized by protobuf
# add a log
logger.info(query_vector)
please add log to log query_vector to inspect what vector is
@fatelei I copied the code and tried, but there were still issues.
2025-12-30 11:04:34.276 INFO [ThreadPoolExecutor-1_0] [weaviate_vector.py:389] - [-0.016033264663999396, 0.027434697396738747, 0.013895495793780141, 0.018646091834432357, 0.0002486640420619094, -0.016033264663999396, 0.02102139078608098, 0.024228044091409863, -0.010688842488451257, 0.006442996706683299, -0.024465574172839226, -0.025771986826733196, 0.05273162592325824, -0.021258920867510342, 0.01995250635097135, 0.018408561753002994, -0.02482186836366076, -0.0058491724344323995, 0.007066512937604753, 0.024346808200802032, 0.01817103353421865, -0.0035035652086237057, 0.01638955885482093, -0.031591469165140065, -0.028266051750419012, 0.019714976269541985, -0.012767229303974427, -0.001113421092547006, -0.006769600335818047, 0.007036821444595454, -0.022209039330582776, -0.00783848430526642, 0.006947747896890071, 0.013717348698369373, 0.018052267562181458, 0.019714976269541985, -0.0245843382822314, -0.002019003596673946, 0.008907368740376048, -0.009679341039360226, -0.007304042553372861, 0.0008313544700955776, -0.003073042285278925, -0.013242288535510644, 0.0029988142512475625, -0.018764857806469554, -0.029216170213491443, 0.018408561753002994, -0.003785631831075134, 0.009798106080074908, 0.00034887195785343703, -0.02114015489547315, 0.0021229228908839787, 0.016508324826858125, 0.0010763070755313248, -0.01318290648081456, -0.00546318628494031, -0.017695973371359926, -0.012351552127134296, -0.0035926387563290896, -0.0245843382822314, 0.02042756651383008, -0.018646091834432357, 0.011817109909579482, 0.010095018216200357, -0.005967937475147082, -0.02114015489547315, -0.026959637233880018, 0.015795734582570033, -0.01300475845408128, -0.001254454520188034, -0.003102733545457595, -0.004958435560394795, 0.00090558250412694, -0.00218230541124132, 0.02838481585981118, -0.031116409002281336, -0.031591469165140065, -0.015201909378996622, 0.006442996706683299, -0.008313544468125149, 0.015320674419711303, -0.017814737480752095, -0.018527327725040187, 0.02149645094893971, -0.028266051750419012, 0.0013954878314137481, -0.015201909378996622, 0.009441810957930862, -0.013539200671636093, -0.014548703052049637, 0.005552259832645694, 0.025178162554482297, 0.01817103353421865, -0.01419240792990559, 0.03444182641700239, -0.008135397372714381, 0.008372926522821234, -0.019596212160149815, 0.0040676986863571905, 0.02304039368426304, 0.030047524567171708, 0.01270784631795583, -0.018646091834432357, 0.008669839590269195, -0.00024124124156915604, -0.021615215058331878, 0.014429938011334955, 0.00034516055033110323, -0.02114015489547315, -0.021615215058331878, -0.010570077447736574, 0.019358682078720452, 0.008372926522821234, -3.5490299871520804e-05, -0.027078401343272187, -0.02541569263591166, 0.0028503581831848374, -0.024703104254268592, 6.541348845954089e-05, -0.018527327725040187, 0.0016998229572068365, 0.010095018216200357, -0.004453684370188024, 0.02149645094893971, -0.008076014386695784, -0.018764857806469554, 0.004899053040037454, 0.04465561060523994, 0.0010763070755313248, -0.01615202877339157, -0.027553461506130916, 0.02102139078608098, -0.02494063247305293, -0.01638955885482093, 0.00023103487815869515, -0.01817103353421865, -0.01793350345278929, 0.011163902651309985, 0.01638955885482093, -0.005997628502495125, 0.0014845614955344459, 0.0038004773447491555, -0.015023762283585854, -0.015320674419711303, 0.03824230399458217, 0.01051069539304049, 0.017814737480752095, 0.0039786246729905505, -0.006057011022852466, 0.028266051750419012, 0.0066508357607646205, 0.001892815915537567, -0.025178162554482297, -0.004156772234062574, -0.009204280876501497, -0.01478623220215649, 0.029216170213491443, 0.02173398103036907, -0.0016033264198338142, 0.01817103353421865, 0.006442996706683299, 0.008551074549554512, 0.002078386117031287, -0.002716747628796134, -0.021971511111798438, -0.005819480941423101, 0.009085516767109326, 0.020071272323008545, 0.0007608377562750635, 0.0007497035628118906, -0.011698344868864799, -0.022209039330582776, 0.008669839590269195, -0.004186463261410617, -0.015142527324300535, -0.00614608457055785, 0.006353923158977915, 0.00724466003301552, -0.0010614614454419894, 0.004275537274777256, 0.011757726923560885, -0.005166274148814861, 0.003369954654235002, 0.0007422807477672229, 0.015142527324300535, 0.0011282667226363411, 0.006680526788112664, -0.013539200671636093, 0.019358682078720452, -0.015023762283585854, -0.01686461901767966, -0.016627088936250298, -0.0008684684871112588, -0.01241093418183038, 0.030641348839422607, 0.007957249345981101, -0.01698338312707183, 0.004008316165999849, -0.015320674419711303, 0.029216170213491443, -0.01567696861053284, 0.011104519665291388, 0.008194779427410466, -0.0030136597649215837, 0.004394301849830682, -0.02114015489547315, 0.007096203964952795, -0.004631831931260047, -0.01757720739932273, 0.03919242432029963, -0.006680526788112664, -0.004097389713705233, -0.0006977439157068741, 0.011045137610595303, 0.021377684976902515, 0.012767229303974427, 0.00724466003301552, -0.01757720739932273, -0.015023762283585854, 0.0007497035628118906, 0.006561761747397981, -0.014845615188175086, -0.008372926522821234, -0.01947744618811262, -0.0003080465042115935, 0.0043349197951345975, 0.01021378325691504, -0.01051069539304049, 0.007957249345981101, 0.015142527324300535, -0.02494063247305293, -0.008372926522821234, -0.0032808808736989907, 0.02090262667668881, 0.036104535124362916, 0.0037559405708964635, -0.004839670519680113, 0.0033848001679090234, -0.005908554954789741, 0.006621144267755322, -0.003147270319310287, -0.013420435630921412, 0.005344421244225629, 0.02149645094893971, -0.004988126587742838, 0.0021080773772099576, -0.02185274513976124, 0.033491706091284934, -0.012470316236526465, 0.012470316236526465, 0.008135397372714381, 0.016745853045642467, -0.00783848430526642, 0.014133025875209506, 0.011935874950294164, 0.007541572634802225, 0.018883621915861723, -0.006324232131629873, 0.03467935836107678, -0.0016924000839545117, 0.02351545384712177, -0.009798106080074908, 0.01300475845408128, 0.0015365211426394624, 0.01757720739932273, -0.01983374224157918, -0.03444182641700239, 0.024465574172839226, 0.0024346807735140777, 0.0043349197951345975, -0.012114022045704931, 0.00041382151673470763, 0.01466746809276432, 0.0011059983357099954, 0.026959637233880018, 0.00366686702319108, 0.005166274148814861, -0.007719719730212993, 0.00018093093481484559, -0.014608085106745721, 0.008551074549554512, 0.01300475845408128, -0.01983374224157918, 0.003132424805636266, -0.028266051750419012, -0.02090262667668881, 0.00724466003301552, 0.0027464388889748047, -0.010629460433755171, -0.01021378325691504, 0.033491706091284934, 0.0042458457817679575, 0.00614608457055785, 0.01021378325691504, -0.012232787086419613, -0.019714976269541985, -0.011045137610595303, -0.006324232131629873, -0.007422807594087543, 0.003102733545457595, -0.006175776063567148, 0.01270784631795583, -0.0034293371745923434, -0.006977438924238113, -0.008135397372714381, -0.009026133781090729, 0.008610456604250598, -0.0040676986863571905, 0.0016107491766708247, -0.02636581296162912, -0.012173404100401016, 0.0014771387386974353, 0.0007756833863643988, -0.0012024948730830177, -0.017220913208501196, 0.00872922164496528, -0.01508314526960445, -0.009144898821805412, 0.01983374224157918, -0.00659145324040728, 0.002716747628796134, -0.0039786246729905505, 0.01241093418183038, -0.01757720739932273, 0.014133025875209506, -0.027078401343272187, -0.002612828334586101, 0.01686461901767966, 0.014726850147460405, -0.0063836146519872135, 0.010154400270896443, -0.012114022045704931, 0.01241093418183038, -0.019714976269541985, 0.02600951690816256, 0.010688842488451257, 0.011104519665291388, 0.04655584753138481, 0.0027909756628274962, -7.51559295676886e-05, -0.0009723877813212917, 0.011282667692024668, 0.0009649649662766242, -0.029216170213491443, 0.008135397372714381, -0.0024792177801973977, -0.013836112807761545, 0.0013657965712350775, 0.02410927811937267, -0.0009575421512319565, -0.00127672290711438, 0.01686461901767966, -0.009382428903234777, -0.00436461082248264, 0.008076014386695784, -0.020783860704651613, 0.019714976269541985, 0.0228028654654787, 0.012173404100401016, -0.0021229228908839787, 0.009441810957930862, 0.009382428903234777, -0.009857488134770992, 0.020190036432400714, 0.00843230950883983, -0.00576009842106576, 0.043230430116663755, -0.025653222717341027, 0.004661522958608089, 0.0024792177801973977, 0.009323045917216178, -0.018408561753002994, 0.015439439460425987, -0.0011431123527256765, 0.01466746809276432, -0.0022119966714199907, -0.028147285778381815, 0.009857488134770992, -0.019596212160149815, -0.010807607529165939, -0.0006606298404835359, 0.003043351025100254, 0.0007608377562750635, -0.028147285778381815, 0.007600954689498311, 0.0008721798655297641, -0.016033264663999396, 0.0006866097222437012, 0.004038007193347892, 0.023277923765692404, -0.0002486640420619094, -0.0032363440998462987, 0.006532070720049939, -0.003087888031783574, 0.018289797643610824, -0.011460814787435436, -0.004602140438250748, -0.022090275221190607, 0.01508314526960445, 0.018289797643610824, -0.002835512436680188, -0.024465574172839226, -0.015201909378996622, -0.008313544468125149, 0.005225656669172202, -0.020190036432400714, 0.007511881141792927, -0.012470316236526465, -0.007452498621435586, -0.012767229303974427, -0.0122921691411157, 0.013479818616940009, 0.02541569263591166, 0.021971511111798438, 0.008551074549554512, 0.013598583657654692, 0.009382428903234777, -0.005552259832645694, 0.010391930352325806, 0.00991687112078959, 0.019121151997291086, 0.02054633062322225, -0.004305228302125299, -0.03301664965371625, 0.01419240792990559, 0.007363425073730202, -0.00783848430526642, -0.000835065848514083, 0.008610456604250598, 0.0021229228908839787, -0.005997628502495125, -0.009560575998645543, 0.0012915685372037152, -0.005611642353003036, -0.009619958984664142, 0.015914498691962202, 0.027553461506130916, 0.007363425073730202, -0.0016552860669388305, -0.00650237922704064, 0.004483375863197322, -0.00872922164496528, -0.05368174252368565, -0.022090275221190607, -0.0005789789914075059, -0.005166274148814861, -0.016627088936250298, -0.01448932006603104, 0.004809979492332071, 0.024228044091409863, -0.01638955885482093, -0.03230405754678314, 0.008372926522821234, -0.01152019684213152, 0.0020486948568526164, -0.023159159656300235, -0.029216170213491443, 6.680526991839462e-05, 0.008669839590269195, 0.017814737480752095, -0.0228028654654787, -0.011104519665291388, -0.026959637233880018, -0.015558204501140668, -0.02102139078608098, 0.043230430116663755, -0.01947744618811262, 0.004275537274777256, 0.0002987679999576732, -0.04703090769424354, -0.0005047508991684865, -0.01817103353421865, 0.0014326018484294295, -0.005997628502495125, 0.010273165311611125, -0.02054633062322225, -0.044180550442381214, 0.03230405754678314, -0.006799291828827346, -0.017814737480752095, -0.0027464388889748047, -0.009263663862520094, -0.023634219819158964, 0.019121151997291086, 0.0027909756628274962, 0.007304042553372861, -0.031116409002281336, 0.01140143273273935, -0.007125894992300838, -0.010391930352325806, -0.01092637256988062, 0.0018779702854482317, -0.007393116101078245, 0.01686461901767966, 0.004216154754419915, 0.015023762283585854, 0.002761284402648826, 0.01793350345278929, 0.008966751726394644, -0.012589081277241149, -0.004453684370188024, 0.011579579828150117, 0.0008647570504850965, -0.010688842488451257, 0.0045130668905453645, 0.006680526788112664, 0.009501193943949458, -0.013301671521529241, 0.01092637256988062, 0.009144898821805412, 0.0012841456639513906, -0.0006791869071990335, 0.012945376399385195, -0.037054655450080375, -0.007541572634802225, 0.010570077447736574, -0.026722107152450655, -0.01478623220215649, 0.02767222561552309, 0.008491691563535915, 0.01318290648081456, 0.004869361547028155, 0.008076014386695784, 0.02304039368426304, 0.02102139078608098, 0.003132424805636266, -0.016745853045642467, -0.006561761747397981, -0.02304039368426304, -0.00010531108294484382, 0.008254162413429062, -0.008372926522821234, -0.015023762283585854, 0.010035636161504272, -0.007393116101078245, 0.01448932006603104, -0.0029988142512475625, 0.009382428903234777, -0.023277923765692404, -0.01615202877339157, 0.010866990515184536, -0.015439439460425987, -0.0018705475286112212, -0.002568291327902781, 0.06555823541928373, -0.01419240792990559, 0.014133025875209506, -0.012054639059686335, 0.01466746809276432, 0.02410927811937267, 0.038479835938656566, -0.02410927811937267, -0.00436461082248264, -0.007155586485310136, 0.009619958984664142, -0.00991687112078959, 0.001892815915537567, 0.011876491964275567, -0.013657965712350777, 0.014133025875209506, 0.0008499114786034183, 0.0047802879993227715, -0.01508314526960445, -0.005611642353003036, -0.04204278157216196, 0.0008907368740376047, 0.023159159656300235, 0.0006123816300046817, -0.017220913208501196, -0.011163902651309985, -0.0055819513256549925, 0.009263663862520094, 0.002820666923006167, 8.814584134394272e-05, 0.004958435560394795, -0.023277923765692404, 0.0023159159656300234, 0.02042756651383008, -0.01567696861053284, -0.027790991587560283, -0.031116409002281336, -0.010570077447736574, 0.019121151997291086, 0.007214969005667478, -0.01466746809276432, 0.009323045917216178, 0.02541569263591166, -0.006888365376532729, -0.011757726923560885, 0.001684977327117501, 0.012114022045704931, -0.005819480941423101, -0.023634219819158964, 0.007096203964952795, -0.02600951690816256, -0.009382428903234777, -0.03230405754678314, -0.01051069539304049, 0.020783860704651613, -0.019714976269541985, -0.0031769615794889575, -0.007096203964952795, 5.3583393353005365e-05, 0.0039786246729905505, 0.023634219819158964, -0.0026425193619341435, -0.015201909378996622, 0.0036520212766864304, -0.028741110050632717, -0.003310572133877661, -0.01152019684213152, -0.005492877777949609, -0.018408561753002994, -0.0043349197951345975, 0.018764857806469554, -0.0032214983533416495, -0.02541569263591166, 0.016270794745428762, 0.013242288535510644, -0.007660337209855652, -0.01419240792990559, -0.010748225474469854, 0.011460814787435436, -0.0010020790414999622, -0.012054639059686335, 0.004869361547028155, 0.016270794745428762, -0.01270784631795583, 0.013361053576225327, 0.004097389713705233, 0.020190036432400714, 0.0005975359999153464, -0.007304042553372861, -0.02945370029492081, 0.027078401343272187, -0.00733373404638216, 0.017102149099109024, -0.028266051750419012, 0.03301664965371625, 0.02529692852651949, -0.006353923158977915, 0.007125894992300838, 0.020190036432400714, -0.00724466003301552, -0.01478623220215649, 0.01745844328993056, 0.011638961882846202, -0.02102139078608098, 0.01698338312707183, 0.00183343351159554, -0.008847986685679963, -0.008254162413429062, 0.015795734582570033, -0.019596212160149815, -0.013420435630921412, 0.007185277512658179, 0.011698344868864799, -0.010154400270896443, 0.006175776063567148, -0.005611642353003036, -0.003518410722297727, -0.004305228302125299, -0.014311172970620272, -0.019714976269541985, -0.033254177872500595, -0.016270794745428762, 0.016270794745428762, 0.022090275221190607, 0.018764857806469554, -0.03800477577579783, -0.001402910588250759, -0.0022713791917773314, 0.009679341039360226, 0.015914498691962202, 0.004691214451617388, 0.004127081206714531, 0.007779102250570334, 0.018527327725040187, 0.0043349197951345975, -0.011342049746720753, 0.007660337209855652, 0.006561761747397981, -0.02232780530261997, -0.00546318628494031, -0.011460814787435436, -0.006888365376532729, 0.008551074549554512, 0.011638961882846202, 0.004186463261410617, -0.011757726923560885, 0.0010020790414999622, 0.007660337209855652, 0.005997628502495125, -0.015439439460425987, 0.009144898821805412, 0.005492877777949609, -0.004483375863197322, -0.004186463261410617, 0.001915084302463913, 0.005285038723868287, 0.0022713791917773314, -0.016745853045642467, -0.01419240792990559, -0.015558204501140668, -0.026959637233880018, -0.020071272323008545, 0.0020932316307053084, 0.0025979825880814516, -0.0010763070755313248, 0.003889551125285167, 0.02185274513976124, -0.002983968737573541, -0.01638955885482093, 0.00783848430526642, -0.008788603699661364, -7.190844434766794e-05, 0.013123523494795963, -0.023634219819158964, -0.05059385705303898, 0.05296915414204258, -0.02838481585981118, -0.00023938553780798911, 0.016508324826858125, 0.010332548297629722, -0.0004824824831383121, -0.00227137912025-12-30T11:04:34.358316791Z 917773314, 0.020071272323008545, 0.006472688199692597, -0.0002987679999576732, -0.025771986826733196, -0.01092637256988062, 0.01241093418183038, 0.013717348698369373, -0.022446569412012143, 0.007957249345981101, -0.009619958984664142, -0.008313544468125149, 0.009085516767109326, -0.02850357996920335, -0.020665096595259443, -0.00017629168268788544, -0.009679341039360226, 0.018646091834432357, -0.0032363440998462987, 0.004156772234062574, -0.0009204281342162753, 0.004156772234062574, 0.010748225474469854, -0.023159159656300235, 0.006561761747397981, 0.01567696861053284, -0.0006643412771096982, 0.014311172970620272, -0.00510689162845752, -0.005492877777949609, -0.00047505966809364443, -0.0029245862172161997, -0.004602140438250748, 0.022209039330582776, -0.006769600335818047, 0.001974466822821254, -0.009204280876501497, 0.016745853045642467, 0.009204280876501497, 0.007452498621435586, 0.018646091834432357, 0.020190036432400714, -0.006561761747397981, -0.01733967918053839, -0.004631831931260047, 0.006472688199692597, 0.008372926522821234, 0.013836112807761545, -0.0061163935432098065, -0.016033264663999396, 0.01241093418183038, 0.015558204501140668, 0.0045130668905453645, 0.028266051750419012, -0.014548703052049637, 0.01567696861053284, 0.003889551125285167, -0.0026722106221128143, -0.013954877848476226, -0.02149645094893971, -0.007511881141792927, 0.006918056403880772, -0.0038598598651064966, 0.0029542774773948705, -0.016627088936250298, 0.0004212443317793753, 0.008669839590269195, -0.015201909378996622, 0.0005752675547813436, -0.007779102250570334, -0.0017740509912381988, -0.014429938011334955, -0.0022119966714199907, 0.012351552127134296, -0.0006754754705728712, 0.00325118961352032, -0.021971511111798438, 0.008016632331999698, -0.00040454301248078734, 0.008669839590269195, -0.007660337209855652, -0.015795734582570033, 0.000411965827525455, 0.019121151997291086, 0.0014697158654451107, -0.00872922164496528, -0.015320674419711303, -0.0009278509492609429, 0.01817103353421865, 0.014429938011334955, -0.021258920867510342, 0.001729514100970193, -0.017102149099109024, -0.009382428903234777, -0.0038598598651064966, -0.03230405754678314, 0.01615202877339157, 0.027078401343272187, 0.012826611358670513, -0.0003414491428087694, 0.0005307307227209947, 0.007897867291285016, 0.00724466003301552, 0.009560575998645543, 0.0050475091081001785, -0.0015736351596551436, -0.014014260834494823, -0.029216170213491443, -0.01092637256988062, 0.004156772234062574, 0.0015068298824607918, -0.0009798105381583024, 0.01092637256988062, -0.0015959036629968034, 0.008907368740376048, 0.010095018216200357, -0.011935874950294164, -0.03657959528722165, 0.00733373404638216, -0.02090262667668881, 0.0015884807897444788, -0.013420435630921412, -0.01199525700499025, 0.01698338312707183, -0.002226842185094012, -0.00366686702319108, 0.004928744067385496, 0.020308800541792887, 0.013657965712350777, -0.00011644529095993104, 0.0017740509912381988, 0.008491691563535915, -0.016508324826858125, 0.01638955885482093, -0.006324232131629873, -0.0001595903633892975, 0.02897864013206208, 0.010688842488451257, -0.008610456604250598, -0.01567696861053284, 0.011104519665291388, 0.038479835938656566, -0.019596212160149815, 0.014904997242871173, 0.012114022045704931, -0.02304039368426304, -0.0001846423423371794, 0.00510689162845752, 0.01817103353421865, -0.013361053576225327, 0.03966748448315836, 0.013717348698369373, 0.01638955885482093, -0.031591469165140065, -0.027315931424701553, 0.004038007193347892, -0.013836112807761545, -0.020071272323008545, 0.002494063293871419, 0.01567696861053284, -0.010688842488451257, -0.025534458607948854, -0.0015884807897444788, -0.0002987679999576732, 0.011817109909579482, 0.007393116101078245, -0.02042756651383008, -0.0023159159656300234, 0.007274351526024818, -0.0028503581831848374, -0.012470316236526465, 0.0008499114786034183, 0.024465574172839226, 0.0228028654654787, -0.02149645094893971, 0.013776730753065458, -0.04655584753138481, 0.01092637256988062, 0.003830168604927826, 0.009204280876501497, -0.023634219819158964, -0.01199525700499025, 0.01983374224157918, 0.020071272323008545, -0.010273165311611125, -0.019002387887898917, -0.02600951690816256, 0.007779102250570334, -0.00991687112078959, 0.018764857806469554, 0.009382428903234777, 0.0038004773447491555, -0.011698344868864799, 0.008966751726394644, -0.02090262667668881, -0.011698344868864799, 0.015914498691962202, -0.012470316236526465, 0.02185274513976124, 0.016745853045642467, -0.027315931424701553, 0.01686461901767966, -0.020665096595259443, -0.01478623220215649, 0.002449526520018727, 0.014608085106745721, 0.006027319529843167, -0.001788896621327534, -0.025534458607948854, -0.023277923765692404, -0.00037114037388361146, 0.011876491964275567, 0.03444182641700239, -0.0024049897461660354, -0.007779102250570334, -0.013301671521529241, 0.01638955885482093, -0.003028505511426233, 0.008194779427410466, 0.0014771387386974353, -0.016745853045642467, -0.001254454520188034, -0.013420435630921412, -0.01615202877339157, -0.008372926522821234, -0.011757726923560885, 0.013123523494795963, -0.010748225474469854, -0.007007130417247411, -0.005700716366369675, -0.019239917969328283, 0.012589081277241149, -0.015558204501140668, -0.006828982856175388, -0.015795734582570033, 0.0029691229910688917, 0.006710217815460706, -0.03396676625414366, -0.018052267562181458, -0.005819480941423101, -0.0037114037970437715, 0.014726850147460405, -0.03135393722106568, -0.017695973371359926, -0.011698344868864799, -0.008372926522821234, -0.007600954689498311, -0.011876491964275567, -0.009263663862520094, 0.0021526141510626495, 0.050356325108964595, -0.00019763225411343352, -0.003726249310717793, -0.007897867291285016, 0.016627088936250298, -0.004483375863197322, 0.0003136136300470085, 0.0020041580829999244, 0.0035035652086237057, 0.013836112807761545, 0.01152019684213152, -0.006442996706683299, -0.029809994485742345, -0.002538600067724111, 0.002835512436680188, 0.014251789984601675, 0.0008721798655297641, 0.024346808200802032, 0.031116409002281336, -0.002494063293871419, 0.010154400270896443, 0.01686461901767966, 0.011817109909579482, -0.012529699222545064, 0.02648457707102129, 0.004839670519680113, 0.00614608457055785, -0.013064141440099878, 0.011757726923560885, -0.026959637233880018, -0.005374112737234927, -0.01567696861053284, 0.006888365376532729, -0.001380642201324413, -0.007363425073730202, 0.02054633062322225, -0.0018705475286112212, 0.012529699222545064, -0.03895489237622524, -0.008254162413429062, -0.006353923158977915, 0.004275537274777256, -0.01051069539304049, 0.01733967918053839, -0.02957246440431298, -0.011045137610595303, 0.0018185878815062046, 0.018764857806469554, -0.0028948949570375294, -0.005017818080752136, 0.0047802879993227715, -0.026722107152450655, -0.011876491964275567, -0.011876491964275567, 0.00144002460526644, 0.013836112807761545, 0.0228028654654787, -0.0012618772770250446, -0.007096203964952795, 0.031116409002281336, -0.001113421092547006, 0.001707245714043847, 0.0033254178803823102, -0.020071272323008545, -0.013776730753065458, -0.00620546709091519, -0.002776129916322847, -0.016627088936250298, -0.018883621915861723, 0.010273165311611125, -0.0020932316307053084, 0.011698344868864799, 0.00037670747061519796, -0.009619958984664142, -0.0017517826043118529, 0.0012841456639513906, -0.01318290648081456, -0.006858674349184687, 0.002494063293871419, -0.0026870563686174635, -0.018408561753002994, -0.002301070219125374, 0.004305228302125299, -0.009085516767109326, -0.002835512436680188, 0.002805821176501518, 0.01140143273273935, -0.004869361547028155, -0.0031621160658149364, -0.0004565026595858038, 0.014133025875209506, -0.05178150559754078, -0.008372926522821234, 0.01793350345278929, -0.018646091834432357, 0.03657959528722165, -0.01567696861053284, -0.014608085106745721, -0.01448932006603104, -0.010985755555899219, -0.00991687112078959, -0.01051069539304049, -0.026128282880199756, -0.002761284402648826, 0.021377684976902515, 0.006621144267755322, -0.010807607529165939, -0.004631831931260047, 0.014429938011334955, -0.003132424805636266, -0.012945376399385195, 0.009144898821805412, 0.018527327725040187, -0.0017443597310595282, -0.014251789984601675, -0.004305228302125299, -0.01140143273273935, -0.003102733545457595, 0.01466746809276432, 0.01745844328993056, 0.010807607529165939, -0.015439439460425987, 0.00843230950883983, 0.0005975359999153464, 0.03586700690557858, -0.005136582655805562, 0.01152019684213152, 0.0029245862172161997, -0.021615215058331878, 0.011638961882846202, -0.0038598598651064966, -0.004453684370188024, 0.015439439460425987, -0.004720905478965431, -0.0043349197951345975, -0.0012915685372037152, -0.0055819513256549925, 0.003399645914413673, -0.031116409002281336, 0.0122921691411157, 0.03444182641700239, -0.017102149099109024, 0.01947744618811262, -0.017814737480752095, -0.014608085106745721, -0.006057011022852466, -0.006680526788112664, -0.01496438022888977, 0.017220913208501196, -0.02957246440431298, -0.014251789984601675, -0.03372923803535932, 0.007541572634802225, 0.0363420670684373, -0.013420435630921412, 0.028622345941240544, -0.010095018216200357, 0.031828997383924404, 0.10308794730693278, -0.0012693000338620554, 0.0055819513256549925, 0.016745853045642467, 0.009976253175485676, -0.01686461901767966, 0.01241093418183038, -0.002776129916322847, 0.008847986685679963, 0.0005047508991684865, -0.037767243831723446, -0.001670131697028166, -0.009619958984664142, -0.007007130417247411, -0.0023307614793040446, -0.02482186836366076, 0.02494063247305293, -0.010570077447736574, 0.001113421092547006, -0.019002387887898917, -0.004097389713705233, -0.018527327725040187, -0.005433495257592268, 0.004097389713705233, -0.008551074549554512, 0.003948933645642508, -0.008372926522821234, 0.00650237922704064, 0.011104519665291388, 0.014608085106745721, 0.0033254178803823102, 0.010570077447736574, -0.009560575998645543, -0.004186463261410617, -0.0017220913441331823, -0.018527327725040187, 0.022565335384049336, -0.01615202877339157, -0.007214969005667478, -0.014608085106745721, -0.008016632331999698, 0.0034887194621190565, -0.00017258027516555162, -0.018883621915861723, 0.004928744067385496, 0.01638955885482093, -0.009026133781090729, -0.02636581296162912, -0.009085516767109326, 0.018289797643610824, -0.013301671521529241, -0.005433495257592268, 0.02232780530261997, 0.011876491964275567, -0.026603343043058482, -0.014014260834494823, 0.012589081277241149, 0.011579579828150117, -0.00576009842106576, -0.014311172970620272, -0.0021674598975672987, 0.01466746809276432, -0.011757726923560885, 0.009679341039360226, 0.01745844328993056, 0.004691214451617388, -0.014133025875209506, -0.011757726923560885, 0.009619958984664142, 0.004275537274777256, 0.012470316236526465, 0.002820666923006167, 0.0018779702854482317, -0.020308800541792887, -0.008610456604250598, -0.004602140438250748, -0.0012173403867570389, 0.011698344868864799, 0.00659145324040728, -0.01995250635097135, -0.05154397365346639, -0.00576009842106576, 0.000458358377898885, -0.023871749900588327, -0.03135393722106568, 0.022684099493441506, -0.005700716366369675, -0.00218230541124132, 0.0032363440998462987, -0.02114015489547315, 0.009679341039360226, -0.024346808200802032, 0.004394301849830682, 0.02102139078608098, -0.0023604527394827154, -0.008907368740376048, -0.007363425073730202, 0.0005641333613181706, 0.02149645094893971, 0.012767229303974427, 0.009026133781090729, 0.011223284706006071, -0.01241093418183038, -0.0026425193619341435, 0.007452498621435586, -0.026840871261842824, 0.02185274513976124, 0.003028505511426233, -0.010391930352325806, 0.013539200671636093, -0.02351545384712177, 0.02304039368426304, 0.013895495793780141, 0.002508909040376068, -0.0027909756628274962, -0.003073042285278925, 0.0010837299487836494, 0.0007163009242147148, -0.00724466003301552, -0.0013286825542193964, -0.016627088936250298, 0.024228044091409863, 0.002835512436680188, -0.0045130668905453645, 0.021377684976902515, -0.02600951690816256, -0.008254162413429062, -0.005492877777949609, 0.02102139078608098, -0.0031918073259936067, 0.005017818080752136, 0.008016632331999698, -0.0035926387563290896, -0.03444182641700239, 0.0013954878314137481, -0.01419240792990559, 0.01466746809276432, 0.021377684976902515, -0.005878863461780443, -0.028741110050632717, 0.0029542774773948705, 0.015201909378996622, -0.004216154754419915, -0.009323045917216178, -0.010332548297629722, -0.00620546709091519, 0.029097406104099274, 0.005017818080752136, -0.008847986685679963, 0.011282667692024668, -0.012589081277241149, -0.010688842488451257, 0.015914498691962202, 0.007600954689498311, -0.005938245982137783, -0.02149645094893971, -0.00576009842106576, -0.019239917969328283, -0.009501193943949458, 0.004038007193347892, 0.006324232131629873, -0.0038598598651064966, 0.00973872309405631, 0.027790991587560283, 0.011757726923560885, 0.006680526788112664, 0.006413305679335257, 0.017814737480752095, 0.003577793242655068, 0.0007831062014090665, -0.007719719730212993, 0.03800477577579783, 0.004483375863197322, 0.011045137610595303, -0.011045137610595303, -0.006324232131629873, 0.0053147302168775855, -0.020071272323008545, 0.018646091834432357, -0.010391930352325806, 0.00162559480676016, -0.011876491964275567, 0.023634219819158964, 0.010035636161504272, -0.004394301849830682, 0.020071272323008545, 0.02149645094893971, -0.000458358377898885, 0.007719719730212993, 0.0004676368821528053, 0.005789789914075059, -0.0009464079577687835, -0.013064141440099878, -0.009144898821805412, 0.00620546709091519, -0.016508324826858125, 0.00576009842106576, 0.012054639059686335, -0.023277923765692404, 0.0013361053110564072, -0.020665096595259443, -0.0034293371745923434, -0.014904997242871173, -0.005641333846012334, 0.005997628502495125, 0.008966751726394644, -0.00659145324040728, 0.007274351526024818, 0.013776730753065458, 0.033254177872500595, -0.019358682078720452, -0.002731593142470155, 0.0013138369241300612, 0.005908554954789741, 0.008372926522821234, -0.018764857806469554, -0.03301664965371625, 0.025059398445090128, 0.019239917969328283, -0.029097406104099274, 0.01983374224157918, 0.022446569412012143, 0.02114015489547315, 0.013954877848476226, -0.008847986685679963, -0.007897867291285016, -0.016033264663999396, 0.002731593142470155, 0.015320674419711303, 0.02185274513976124, -0.005374112737234927, 0.013895495793780141, -0.004305228302125299, -0.010629460433755171, 0.0034293371745923434, 0.012054639059686335, 0.0019447755626425835, 0.013717348698369373, 0.006353923158977915, -0.016745853045642467, -0.004186463261410617, 0.009501193943949458, -7.33002258065217e-05, 0.013895495793780141, 0.020071272323008545, -0.002241687931598661, 0.02042756651383008, 0.019358682078720452, -0.007660337209855652, 0.004750596971974729, 0.010035636161504272, 0.006769600335818047, 0.006264849611272532, 0.008254162413429062, -0.020190036432400714, -0.0008499114786034183, -0.023752983928551134, -0.03135393722106568, 0.001150535109562687, 0.008610456604250598, 0.008372926522821234, 0.01793350345278929, 0.015023762283585854, 0.0014548702353557753, 0.014133025875209506, -0.0228028654654787, 0.008372926522821234, -0.003637175763012409, 0.011638961882846202, -0.0047802879993227715, -0.003562947496150419, -0.002835512436680188, 0.011935874950294164, -0.007957249345981101, -0.06460811509356627, -0.03277911770964186, 0.006621144267755322, -0.003577793242655068, 0.004750596971974729, 0.004186463261410617, -0.02149645094893971, -0.01199525700499025, -0.004661522958608089, -0.0019893123364952752, -0.0003692846846743588, 0.006977438924238113, 0.009382428903234777, -0.012767229303974427, 0.04085513302766016, 0.005492877777949609, 0.027553461506130916, 0.0010837299487836494, 0.02945370029492081, 0.0012396088900986989, -0.0035332564688023765, 0.015439439460425987, 0.008966751726394644, 0.005403803764582969, 0.00872922164496528, 0.008313544468125149, -0.030403818757993244, 0.012470316236526465, -0.009560575998645543, -0.010866990515184536, -0.015201909378996622, 0.011817109909579482, 0.02933493618552864, 0.007007130417247411, 0.01733967918053839, -0.009976253175485676, 0.008610456604250598, -0.02410927811937267, -0.009976253175485676, 0.008551074549554512, -0.014370555025316359, -0.0008758913021559264, -0.030878878920851973, -0.0045130668905453645, -0.023634219819158964, -0.01199525700499025, 0.00843230950883983, 0.0029692025-12-30T11:04:34.358316791Z 1229910688917, -0.016745853045642467, -0.0008387772269325882, 0.027315931424701553, 0.0006346500169310277, -0.0015884807897444788, -0.008669839590269195, -0.009204280876501497, 0.018408561753002994, 0.000616093008423187, 0.033491706091284934, -0.004572449410902706, -0.013420435630921412, -0.005789789914075059, -0.003369954654235002, 0.005195965176162903, -0.004869361547028155, -0.015558204501140668, 0.005997628502495125, 0.03028505464860107, 0.011579579828150117, 0.0043349197951345975, -0.008907368740376048, -0.002286224705451353, 0.018646091834432357, 0.003399645914413673, -0.0013064141672930506, 0.02090262667668881, 0.01995250635097135, -0.002612828334586101, 0.023752983928551134, 0.001543944015891787, 0.008669839590269195, -0.006799291828827346, -0.013776730753065458, 0.017102149099109024, -0.0014103334615030835, 0.012945376399385195, 0.02885987602266991, -0.011223284706006071, 0.014370555025316359, -0.017695973371359926, 0.0012396088900986989, -0.0016404404368494953, 0.00991687112078959, 0.015795734582570033, 0.0029691229910688917, -0.00029691231074842057, 0.0004936167057053135, -0.04299290189787942, -0.013361053576225327, -0.009976253175485676, 0.02114015489547315, -0.005433495257592268, -0.0035926387563290896, 0.005433495257592268, 0.009085516767109326, -0.015320674419711303, -0.017102149099109024, 0.008372926522821234, -0.015439439460425987, 0.01496438022888977, 0.037054655450080375, 0.030878878920851973, 0.004423993342839981, -0.009323045917216178, -0.011282667692024668, 0.003562947496150419, 0.014608085106745721, 0.012351552127134296, 0.011817109909579482, -0.015320674419711303, 0.027078401343272187, -0.00991687112078959, -0.005433495257592268, -0.022446569412012143, -0.018764857806469554, 0.015795734582570033, 0.001417756218340094, 0.026959637233880018, 0.014133025875209506, -0.00037114037388361146, -0.006353923158977915, -0.00014474474785187646, 0.032541589490857524, -0.010035636161504272, 0.024465574172839226, -0.018052267562181458, -0.017814737480752095, 0.007304042553372861, 0.022090275221190607, 0.025771986826733196, 0.003637175763012409, -0.006442996706683299, 0.02102139078608098, 0.02114015489547315, -0.0037559405708964635, 0.012351552127134296, -0.01092637256988062, -0.0026870563686174635, 0.0301662905392089, 0.0013212596809670718, -0.026603343043058482, -0.008194779427410466, 0.012470316236526465, 0.013301671521529241, 0.019714976269541985, 0.012885993413366598, 0.0029245862172161997, -0.002508909040376068, -0.009026133781090729, -4.755235976719147e-05, 0.02529692852651949, -0.0017814737480752094, -0.009857488134770992, -0.020071272323008545, 0.011817109909579482, -0.017695973371359926, -0.006799291828827346, -0.0009018711257084347, 0.02957246440431298, -0.0053147302168775855, -0.005997628502495125, -0.02589075279877039, -0.003948933645642508, -0.003147270319310287, -0.006799291828827346, -0.0031769615794889575, -0.011876491964275567, -0.008551074549554512, -0.00973872309405631, -0.015558204501140668, -0.02838481585981118, 0.023634219819158964, 0.016270794745428762, -0.007155586485310136, -0.010451313338344405, 0.006175776063567148, -0.025178162554482297, 0.01199525700499025, -0.01140143273273935, 0.008669839590269195, -0.011045137610595303, -0.02850357996920335, -0.0012247632600093635, -0.01508314526960445, 0.017102149099109024, 0.019239917969328283, -0.0066508357607646205, 0.009144898821805412, -0.008966751726394644, 0.022446569412012143, -0.014548703052049637, 0.037767243831723446, -0.00991687112078959, 0.007096203964952795, -0.007155586485310136, -0.0491686765644628, 0.007541572634802225, -0.013123523494795963, 0.008551074549554512, -0.0239905140099805, -0.0034441826882663645, -0.006769600335818047, 0.01508314526960445, 0.004394301849830682, -0.018883621915861723, -0.0122921691411157, -0.004008316165999849, 0.022090275221190607, 0.011876491964275567, 0.028622345941240544, 0.018646091834432357, -0.011104519665291388, -0.007779102250570334, 0.030878878920851973, 0.0014251790915924187, 0.0028503581831848374, -0.005166274148814861, 0.019714976269541985, 0.0009575421512319565, 0.0009241395126347806, -0.00046392547463047144, 0.031828997383924404, 0.007779102250570334, -0.020308800541792887, 0.004691214451617388, 0.0014994071256237813, -0.023871749900588327, 0.0004861938906606459, -0.013539200671636093, -0.009501193943949458, -0.008551074549554512, 0.007660337209855652, -0.019714976269541985, -0.01496438022888977, 0.003681712536865101, -0.013361053576225327, 0.009204280876501497, 0.00325118961352032, 0.016508324826858125, 0.0026870563686174635, -0.005671024873360376, -0.00843230950883983, 0.010391930352325806, 0.03752971561293911, 0.0010540386886049788, 0.00614608457055785, -0.018408561753002994, -0.015023762283585854, -0.00436461082248264, -0.021971511111798438, -0.01698338312707183, 0.0019447755626425835, 0.023871749900588327, -0.01051069539304049, -0.014548703052049637, -0.00011969276890399456, 0.019358682078720452, -0.02054633062322225, 0.0010243474284263082, -0.022565335384049336, -0.021615215058331878, -0.0017592053611488634, 0.006353923158977915, 0.003830168604927826, 0.007779102250570334, -0.008669839590269195, -0.0023604527394827154, -0.028028521668989646, 0.03467935836107678, -0.009323045917216178, 0.002019003596673946, -0.014014260834494823, -0.009144898821805412, -0.0061163935432098065, -0.010035636161504272, -0.014133025875209506, -0.0010763070755313248, -0.0301662905392089, 0.01300475845408128, 0.002241687931598661, -0.0012247632600093635, -0.007096203964952795, -0.00011505351677703441, -0.02529692852651949, 0.002568291327902781, -0.011104519665291388, 0.01199525700499025, -0.015914498691962202, 0.013539200671636093, 0.020783860704651613, -0.006828982856175388, 0.0029394317308902213, 0.014311172970620272, 0.005344421244225629, 0.01496438022888977, -0.01199525700499025, 0.006472688199692597, -0.003399645914413673, 0.00991687112078959, -0.008847986685679963, 0.0399050127019427, 0.003132424805636266, 0.01615202877339157, 0.010273165311611125, 0.0026722106221128143, 0.0023901439996613857, 0.014370555025316359, -0.0040676986863571905, 0.002494063293871419, 0.00218230541124132, 0.002494063293871419, 0.02042756651383008, -0.0363420670684373, 0.009085516767109326, -0.01615202877339157, 0.011460814787435436, 0.021615215058331878, -0.011045137610595303, -0.007600954689498311, -0.001915084302463913, 0.013598583657654692, 0.01745844328993056, 0.02149645094893971, -0.008669839590269195, 0.01152019684213152, 0.003147270319310287, 0.011104519665291388, 0.018883621915861723, 0.024703104254268592, 0.0009130053191716076, -0.023396689737729598, 0.01478623220215649, 0.004483375863197322, 0.04346796206073814, -0.017695973371359926, -0.008254162413429062, 0.008254162413429062, 0.005789789914075059, 0.02114015489547315, -0.024465574172839226, 0.009085516767109326, -0.005997628502495125, -0.02114015489547315, -0.02636581296162912, -0.009501193943949458, -0.019596212160149815, 0.005730407393717718, 0.003043351025100254, 0.028028521668989646, -0.018883621915861723, 0.030403818757993244, 0.012945376399385195, -0.023159159656300235, -0.00036186186962969117, -0.028028521668989646, -0.004423993342839981, 0.001974466822821254, -0.013717348698369373, -0.019596212160149815, 0.009501193943949458, -0.018646091834432357, 0.011935874950294164, -0.0027909756628274962, -0.01508314526960445, -0.007779102250570334, -0.015914498691962202, 0.041567721409303225, -0.0061163935432098065, 0.005671024873360376, 0.003948933645642508, 0.03895489237622524, -0.031116409002281336, -0.00733373404638216, 0.01496438022888977, -0.006621144267755322, 0.006353923158977915, -0.013064141440099878, -0.028266051750419012, -0.019121151997291086, 0.0020932316307053084, -0.012054639059686335, -0.012529699222545064, -0.018289797643610824, -0.01300475845408128, 0.011282667692024668, 0.022565335384049336, 0.007719719730212993, 0.0030136597649215837, 0.0014697158654451107, -0.02232780530261997, 0.0016330176800124848, -0.02351545384712177, -0.024228044091409863, -0.003948933645642508, -0.009323045917216178, -0.015142527324300535, 0.012589081277241149, -0.03942995253908397, -0.0011950719998306929, 0.0017443597310595282, 0.010570077447736574, -0.0023307614793040446, 0.006561761747397981, -0.023277923765692404, 0.0043349197951345975, 0.020308800541792887, -0.0010985754624576705, -0.006235158118263233, 0.011638961882846202, 0.0050475091081001785, 0.002301070219125374, -0.014845615188175086, -0.004869361547028155, -0.007304042553372861, 0.0363420670684373, 0.01995250635097135, 0.008491691563535915, 0.002612828334586101, -0.01270784631795583, 0.013064141440099878, -0.015439439460425987, -1.7034762998628206e-06, -0.017814737480752095, 0.008610456604250598, -0.03539194674271985, -0.03028505464860107, 0.00218230541124132, -0.03895489237622524, -0.007541572634802225, -0.0009798105381583024, 0.017220913208501196, 0.013657965712350777, -0.001707245714043847, -0.004750596971974729, -0.002805821176501518, -0.00325118961352032, 0.019358682078720452, 0.036104535124362916, 0.0018408562684325506, 0.005671024873360376, -0.004869361547028155, 0.0013212596809670718, -0.01757720739932273, 0.005967937475147082, -0.012470316236526465, -0.006799291828827346, -0.015914498691962202, -0.007185277512658179, 0.010332548297629722, -0.005938245982137783, 0.00255344581422876, 0.003087888031783574, -0.020665096595259443, -0.02054633062322225, -0.011282667692024668, -0.004186463261410617, -0.015201909378996622, 0.013776730753065458, -0.019714976269541985, 0.009323045917216178, 0.0012693000338620554, 0.014726850147460405, 0.0003581504621073574, -0.024465574172839226, 0.011282667692024668, -0.01995250635097135, 0.015201909378996622, 0.02945370029492081, -0.012114022045704931, 0.007422807594087543, -0.008551074549554512, -0.014548703052049637, 0.023396689737729598, 0.0022119966714199907, 0.008194779427410466, -0.01615202877339157, -0.0042458457817679575, -0.012232787086419613, 0.016270794745428762, 0.03396676625414366, 0.0031769615794889575, -0.0010391930585156436, 0.02102139078608098, 0.0018853931587005564, -0.013301671521529241, 0.02636581296162912, -0.0010540386886049788, -0.007363425073730202, -0.00872922164496528, 0.021615215058331878, -0.002137768637388628, -0.009679341039360226, 0.00029691231074842057, -0.001684977327117501, 0.02589075279877039, -0.012054639059686335, -0.004631831931260047, -0.007482190114444885, 0.0009352737643056106, -0.030641348839422607, -0.00783848430526642, -0.016270794745428762, 0.000616093008423187, -0.05795728026412416, 0.007482190114444885, 0.003830168604927826, -0.007897867291285016, 0.03135393722106568, -0.016033264663999396, 0.026722107152450655, 0.0029542774773948705, -0.00991687112078959, -0.007096203964952795, -0.012648464263259745, -0.009085516767109326, 0.007036821444595454, -0.011163902651309985, -0.026603343043058482, -0.023159159656300235, -0.007452498621435586, 0.017220913208501196, 0.007897867291285016, -0.0014697158654451107, -0.006175776063567148, -0.010273165311611125, -0.0014548702353557753, -0.004572449410902706, 0.01745844328993056, 0.001974466822821254, -0.013361053576225327, 0.003577793242655068, 0.007452498621435586, -0.009263663862520094, 0.005730407393717718, 0.0013435281843087318, -0.0024049897461660354, 0.037767243831723446, 0.01793350345278929, 0.014726850147460405, -0.008907368740376048, 0.013954877848476226, 0.00288004921053288, -0.01733967918053839, -0.01318290648081456, -0.009204280876501497, 0.0122921691411157, -0.020190036432400714, 0.008194779427410466, -0.0008684684871112588, -0.005225656669172202, 0.008491691563535915, -0.02636581296162912, -0.010629460433755171, 0.0021080773772099576, -0.008551074549554512, -0.011342049746720753, -0.004869361547028155, 0.008194779427410466, 0.013657965712350777, -0.02232780530261997, -0.018646091834432357, 0.02232780530261997, -0.01318290648081456, 0.013717348698369373, -0.03206652932799879, -0.014251789984601675, 0.008669839590269195, -0.006710217815460706, 0.01567696861053284, 0.0033848001679090234, 0.00650237922704064, -0.010451313338344405, -0.022921629574870872, 0.01995250635097135, 0.00724466003301552, 0.014726850147460405, -0.02090262667668881, 0.008847986685679963, -0.04513067076809867, -0.010273165311611125, -0.006324232131629873, 0.004691214451617388, 0.0016404404368494953, -0.025653222717341027, -0.0040676986863571905, -0.00028021099144983264, 0.0024792177801973977, -0.008966751726394644, 0.015914498691962202, -0.025653222717341027, 0.015795734582570033, -0.015201909378996622, 0.0006828982856175388, 0.0034441826882663645, 0.009323045917216178, -0.012589081277241149, 0.004899053040037454, 0.00036742896636127767, 0.033491706091284934, -0.015142527324300535, -0.009026133781090729, -0.00029691231074842057, -0.023159159656300235, -0.013598583657654692, 0.017220913208501196, -0.00872922164496528, -0.001915084302463913, -0.0013954878314137481, 0.003459028201940386, 0.006828982856175388, 0.01567696861053284, 0.006532070720049939, -0.011223284706006071, 0.00546318628494031, 0.008907368740376048, 0.010095018216200357, -0.002449526520018727, -0.015795734582570033, -0.00218230541124132, 0.009798106080074908, -0.00164786331010182, -0.004809979492332071, -0.01733967918053839, 0.009560575998645543, 0.013895495793780141, -0.005997628502495125, -0.00023938553780798911, 0.0053147302168775855, -0.005255347696520245, -0.002019003596673946, -0.00991687112078959, -0.006175776063567148, 0.014429938011334955, 0.008135397372714381, 0.012232787086419613, 0.015201909378996622, 0.004542758383554663, -0.010807607529165939, 0.000556710546273503, 0.023277923765692404, -0.004216154754419915, 0.008966751726394644, -0.01567696861053284, -0.004008316165999849, -0.01757720739932273, 0.029691230376350172, 0.004899053040037454, -0.017695973371359926, -0.03895489237622524, -0.02185274513976124, -0.011342049746720753, -0.02885987602266991, 0.010688842488451257, 0.00991687112078959, 0.011935874950294164, 0.0019299299325532483, 0.0015810580329074682, -0.01686461901767966, 0.01051069539304049, 0.007155586485310136, -0.006264849611272532, 0.004156772234062574, -0.009263663862520094, -0.004572449410902706, -0.0030136597649215837, 0.005374112737234927, 0.030047524567171708, -0.038479835938656566, -0.006739909308470004, -0.004809979492332071, 0.023634219819158964, -0.011757726923560885, 0.007660337209855652, -0.022921629574870872, -0.00255344581422876, 0.001113421092547006, -0.02838481585981118, -0.002731593142470155, -0.0036965580505391223, -0.005967937475147082, -0.017102149099109024, -0.00325118961352032, 0.013301671521529241, -0.015439439460425987, 0.019121151997291086, 0.008372926522821234, -0.008313544468125149, 0.014548703052049637, -0.005344421244225629, 0.003889551125285167, -0.014370555025316359, 0.0399050127019427, 0.018052267562181458, -0.018289797643610824, -0.024346808200802032, -0.0122921691411157, -0.007511881141792927, -0.001684977327117501, 0.009679341039360226, -3.4098522050645624e-05, -0.024228044091409863, -0.05463186284940311, 0.0014845614955344459, -0.0009946561682476376, 0.011638961882846202, 0.01995250635097135, 0.008907368740376048, -0.023871749900588327, 0.023396689737729598, 0.011638961882846202, 0.0009798105381583024, 0.003073042285278925, -0.0066508357607646205, 0.009679341039360226, 0.004097389713705233, 0.0026722106221128143, -0.01567696861053284, -0.0005233079076763271, 0.013420435630921412, -0.003355108907730353, -0.008194779427410466, -0.013895495793780141, -0.02541569263591166, 0.013895495793780141, 0.003399645914413673, 0.031591469165140065, -0.018764857806469554, -0.0032066528396676283, 0.009026133781090729, -0.019714976269541985, -0.0007905290164537341, 0.0024792177801973977, 0.001543944015891787, 0.009144898821805412, 0.026959637233880018, -0.003310572133877661, -0.009204280876501497, -0.004720905478965431, 0.014073642889190907, 0.0003099022225246747, 0.0004379456510779632, -0.04608078736852608, -0.007482190114444885, 0.013954877848476226, 0.005878863461780443, -0.003102733545457595, 0.02232780530261997, 0.023634219819158964, 0.006947747896890071, 0.0023307614793040446, -0.006175776063567148, 0.023277923765692404, 0.01152019684213152, -0.004988126587742838, -0.007214969005667478, 0.0043349197951345975, 0.000987233411410627, -0.022209039330582776, 0.010095018216200357, -0.009501193943949458, 0.01021378325691504, -0.016270794745428762, -0.01638955885482093, 0.012648464263259745, -0.010807607529165939, 0.018408561753002994, -0.007541572634802025-12-30T11:04:34.358316791Z 2225, 0.009798106080074908, 0.013420435630921412, -0.009976253175485676, -0.00872922164496528, 0.0037707863174011127, 0.0018631246553588966, 0.01508314526960445, 0.01092637256988062, -0.022446569412012143, -0.011342049746720753, 0.0019893123364952752, -0.00028392239897216643, 0.016508324826858125, -0.007066512937604753, -0.014845615188175086, -0.01021378325691504, 0.008788603699661364, -0.02185274513976124, -0.055581983175120565, -0.00366686702319108, -0.020665096595259443, -0.0017517826043118529, 0.014726850147460405, 0.0036520212766864304, -0.001974466822821254, 0.00872922164496528, 0.009026133781090729, 0.02232780530261997, -0.02149645094893971, 0.015914498691962202, 0.0007831062014090665, -0.012114022045704931, 0.005789789914075059, -0.005997628502495125, 0.008372926522821234, -0.016745853045642467, 0.00733373404638216, 0.013064141440099878, -0.004691214451617388, -0.006413305679335257, 0.015320674419711303, 0.00733373404638216, 0.002776129916322847, 0.00023938553780798911, -0.0021674598975672987, -0.0035035652086237057, -0.022684099493441506, -0.018764857806469554, -0.02945370029492081, -0.00109115270562066, -0.004839670519680113, 0.005700716366369675, 0.008491691563535915, 0.0005307307227209947, -0.005166274148814861, -0.011223284706006071, 0.023634219819158964, 0.010035636161504272, 0.012648464263259745, 0.023396689737729598, 0.00546318628494031, 0.025771986826733196, 0.014073642889190907, 0.004156772234062574, 0.004809979492332071, -0.012826611358670513, -0.008372926522821234, -0.002464372033692748, 0.015320674419711303, 0.03206652932799879, 0.0034738739484450353, -0.03895489237622524, 0.009857488134770992, -0.022921629574870872, -0.004097389713705233, 0.0122921691411157, -0.012589081277241149, -0.001358373814398067, 0.016033264663999396, 0.0239905140099805, 0.025771986826733196, 0.005433495257592268, 0.007897867291285016, -0.006442996706683299, 0.00783848430526642, -0.0009278509492609429, -0.02173398103036907, -0.013064141440099878, -0.023159159656300235, -0.02185274513976124, 0.004216154754419915, -0.018764857806469554, 9.046546740742279e-06, -0.0005826903698260111, -0.0013954878314137481, 0.016270794745428762, 0.002345607225808694, -0.0039786246729905505, -0.006264849611272532, 0.00724466003301552, -0.05510692301226183, -0.015795734582570033, -0.0013732194444874024, 0.00019020943906876588, 0.0034887194621190565, 0.027197167315309384, -0.0005381535377656624, 0.00659145324040728, -0.010688842488451257, 0.005878863461780443, -0.007125894992300838, 0.022684099493441506, 0.018764857806469554, -0.02304039368426304, -0.0043349197951345975, 0.009382428903234777, 0.006027319529843167, -0.0245843382822314, -0.016508324826858125, 0.0025831370744074304, -0.009263663862520094, -0.00164786331010182, -0.00843230950883983, 0.016033264663999396, -0.03657959528722165, -0.013420435630921412, -0.00733373404638216, 0.005492877777949609, -0.005730407393717718, 0.016508324826858125, -0.03230405754678314, -0.01270784631795583, 0.011223284706006071, 0.004423993342839981, 0.019121151997291086, -0.007304042553372861, -0.02494063247305293, -0.0024346807735140777, 0.010748225474469854, 0.0012841456639513906, 0.003948933645642508, 0.022446569412012143, -0.00325118961352032, -0.006294540638620574, 0.0029542774773948705, 0.010391930352325806, -0.007422807594087543, 0.026128282880199756, 0.01817103353421865, -0.012589081277241149, -0.008076014386695784, -0.0035926387563290896, -0.00650237922704064, 0.001232186016846374, -0.013895495793780141, 0.010866990515184536, 0.012767229303974427, 0.010332548297629722, -0.00650237922704064, 0.0029691229910688917, -0.0035035652086237057, 0.0017814737480752094, -0.0018482790252695612, -0.00436461082248264, 0.01478623220215649, 0.015439439460425987, 0.017814737480752095, -0.007066512937604753, -0.02149645094893971, 0.027315931424701553, 0.03135393722106568, -0.0032066528396676283, 0.015320674419711303, -0.025059398445090128, -0.02042756651383008, -0.03420429819821805, 0.012648464263259745, -0.004423993342839981, 0.015439439460425987, 0.00038969738239145205, -0.0399050127019427, 0.008847986685679963, 0.0014474474785187647, -0.01448932006603104, 0.047743499801176655, 0.01241093418183038, 0.004899053040037454, -0.004275537274777256, -0.0010391930585156436, -0.007393116101078245, -0.001684977327117501, -0.05154397365346639, 0.007511881141792927, 0.0013064141672930506, -0.00872922164496528, 0.02042756651383008, -0.005700716366369675, 0.009085516767109326, 0.018052267562181458, -0.022684099493441506, 0.008907368740376048, -0.006947747896890071, 0.011163902651309985, 0.0001243320210309547, 0.0034293371745923434, 0.005611642353003036, 0.015558204501140668, 0.00366686702319108, -0.0029542774773948705, -0.01638955885482093, -0.005552259832645694, 0.020308800541792887, 0.018527327725040187, -0.020665096595259443, -0.0033254178803823102, 0.0033254178803823102, -0.013598583657654692, 0.001729514100970193, -0.021971511111798438, -0.01757720739932273, -0.005967937475147082, -0.0017740509912381988, -0.01686461901767966, -0.030641348839422607, -0.009619958984664142, -0.005077200135448222, 0.013598583657654692, -0.012767229303974427, 0.01051069539304049, 0.004928744067385496, 0.021377684976902515, 0.015558204501140668, 0.007422807594087543, -0.028266051750419012, 0.008372926522821234, -0.02600951690816256, 0.00391924215263321, 0.028741110050632717, 0.005166274148814861, 0.029809994485742345, 0.020190036432400714, 0.007274351526024818, -0.012054639059686335, -0.011817109909579482, -0.0002282513297929019, -0.005017818080752136, -0.005908554954789741, -0.001915084302463913, 0.01686461901767966, 0.01300475845408128, 0.007036821444595454, 0.013123523494795963, 0.012173404100401016, -0.015439439460425987, 0.00127672290711438, -0.007125894992300838, 0.006413305679335257, -0.006977438924238113, -0.02351545384712177, -0.00576009842106576, -0.009441810957930862, -0.011163902651309985, -0.0016552860669388305, -0.00733373404638216, 0.013657965712350777, 0.010629460433755171, -0.002805821176501518, -0.03586700690557858, 0.005195965176162903, -0.003607484502833739, 0.0016552860669388305, 0.028741110050632717, 0.01995250635097135, -0.009441810957930862, 0.008788603699661364, -0.013954877848476226, 0.009560575998645543, 0.016508324826858125, 0.006858674349184687, 0.01817103353421865, 0.01199525700499025, -0.010985755555899219, -0.04655584753138481, 0.0122921691411157, 0.01745844328993056, 0.010807607529165939, 0.010273165311611125, 0.009976253175485676, -0.005552259832645694, 0.004572449410902706, 0.0033848001679090234, -0.013479818616940009, 0.0008424886635587506, 0.002761284402648826, -0.00991687112078959, 0.010391930352325806, -0.00018557018694180573, 0.004928744067385496, -0.022565335384049336, 0.0055819513256549925, -0.016508324826858125, 0.005878863461780443, 0.025059398445090128, -0.0027464388889748047, -0.019121151997291086, -0.005938245982137783, -0.005225656669172202, 0.012470316236526465, 0.045843259149741744, -0.00783848430526642, -0.014608085106745721, 0.006947747896890071, -0.00023752983404682222, 0.0008610456720665911, 0.012826611358670513, 0.01615202877339157, -0.013242288535510644, 0.004839670519680113, 0.0009278509492609429, -0.013776730753065458, 0.025771986826733196, 0.001543944015891787, 0.014133025875209506, -0.005433495257592268, -0.013717348698369373, -0.016033264663999396, -0.017814737480752095, 0.009501193943949458, 0.004572449410902706, -0.027790991587560283, -0.0038598598651064966, 0.0042458457817679575, -0.0061163935432098065, -0.001172803612904347, -0.0037707863174011127, -0.00036000615131661, 0.0007979518314984017, 0.004839670519680113, 0.02482186836366076, 0.002508909040376068, 0.005611642353003036, 0.032541589490857524, 0.006175776063567148, -0.0037410950572224423, 0.010451313338344405, 0.011579579828150117, -0.023277923765692404, 0.02589075279877039, -0.019121151997291086, -0.002716747628796134, 0.003562947496150419, -0.0030581967716049032, -0.020308800541792887, 0.007541572634802225, -0.036104535124362916, -0.01757720739932273, 0.037767243831723446, -0.016508324826858125, -0.024228044091409863, 0.004156772234062574, 0.006472688199692597, 0.028028521668989646, -0.008491691563535915, 0.012589081277241149, -0.0005641333613181706, 4.0129551998480956e-05, 0.015914498691962202, -0.003132424805636266, 0.004631831931260047, 0.011935874950294164, 0.006858674349184687, 0.0014251790915924187, 0.011757726923560885, 0.02173398103036907, 0.009501193943949458, -0.0031769615794889575, -0.010332548297629722, 0.031116409002281336, -0.02054633062322225, -0.022565335384049336, 0.006175776063567148, 0.022921629574870872, -0.00733373404638216, 0.01793350345278929, -0.03681712350600599, 0.00650237922704064, 0.006057011022852466, 0.018289797643610824, 0.03919242432029963, 0.017102149099109024, 0.013895495793780141, -0.012351552127134296, 0.03919242432029963, -0.008372926522821234, 0.014251789984601675, 0.029809994485742345, -0.011223284706006071, -0.0030581967716049032, -0.025534458607948854, 0.0038004773447491555, -0.006977438924238113, -0.01140143273273935, -0.0021674598975672987, 0.007511881141792927, 0.041567721409303225, 0.010985755555899219, 0.006828982856175388, -0.00028577808818141913, -0.005374112737234927, -0.0020486948568526164, 0.07790978475245049, 0.007363425073730202, 0.01318290648081456, -0.0034293371745923434, -0.00973872309405631, -0.0005158851508393164, 0.010629460433755171, -0.0055819513256549925, -0.007957249345981101, -0.02992876045777954, 0.013361053576225327, 0.02042756651383008, -0.01508314526960445, 0.0022565334452726822, -0.02351545384712177, -0.0031621160658149364, -0.009679341039360226, -0.015201909378996622, 0.020071272323008545, -0.003562947496150419, -0.019596212160149815, 0.000458358377898885, 0.020190036432400714, 0.014608085106745721, -0.0026276738482601224, 0.025534458607948854, 0.0021229228908839787, -0.0301662905392089, -0.004691214451617388, 0.007482190114444885, 0.0008981596890822724, 0.010748225474469854, -0.005611642353003036, -0.0005307307227209947, 0.010332548297629722, -0.010154400270896443, -0.002761284402648826, 0.008610456604250598, -0.0027019018822914847, -0.005433495257592268, -0.005700716366369675, 0.00724466003301552, 0.010332548297629722, 0.014608085106745721, -0.0012915685372037152, -0.012054639059686335, -0.0122921691411157, 0.008788603699661364, -0.0016330176800124848, 0.015142527324300535, -0.0008424886635587506, -0.0026276738482601224, 0.021377684976902515, -0.023396689737729598, 0.0007905290164537341, 0.00366686702319108, -0.008788603699661364, 0.009263663862520094, -0.01615202877339157, -0.0020041580829999244, 0.01496438022888977, 0.019121151997291086, 0.0019002386723745777, -0.0016998229572068365, -0.020783860704651613, -0.008847986685679963, 0.009323045917216178, 0.01698338312707183, -0.01270784631795583, -0.018646091834432357, -0.005403803764582969, 0.014904997242871173, -0.01733967918053839, -0.024703104254268592, 0.007719719730212993, 0.009144898821805412, 0.0042458457817679575, 0.0016404404368494953, 0.02232780530261997, -0.022684099493441506, 0.004453684370188024, 0.013598583657654692, 0.0026573651084387927, 0.002137768637388628, 0.0040676986863571905, 0.030878878920851973, -0.0037114037970437715, -0.00325118961352032, 0.011757726923560885, -0.01021378325691504, -0.00546318628494031, -0.008551074549554512, -0.012529699222545064, -0.015795734582570033, -0.004305228302125299, -0.010985755555899219, -0.027909755696952452, 0.004691214451617388, 0.005789789914075059, 0.026722107152450655, 0.004869361547028155, 0.0032214983533416495, -0.0003562947728981047, -0.012054639059686335, -0.007214969005667478, 0.021258920867510342, 0.01419240792990559, 0.024346808200802032, -0.010570077447736574, 0.0013212596809670718, -0.017695973371359926, -0.0034738739484450353, 0.020071272323008545, -0.01733967918053839, 0.011876491964275567, -0.041567721409303225, 0.010332548297629722, 0.016745853045642467, 0.012589081277241149, 0.01817103353421865, -0.013301671521529241, -0.027197167315309384, 0.005195965176162903, 0.014073642889190907, -0.004928744067385496, 0.01638955885482093, -0.0020338493431785953, 0.03206652932799879, 0.00991687112078959, -0.01241093418183038, 0.01092637256988062, 0.014014260834494823, -0.013361053576225327, -0.006799291828827346, -0.02304039368426304, 0.002568291327902781, 0.006799291828827346, -0.00011969276890399456, -0.04180525335337762, -0.0009798105381583024, -0.0066508357607646205, 0.0017220913441331823, 0.011638961882846202, -0.002137768637388628, 0.0024346807735140777, 0.013123523494795963, 0.009085516767109326, -0.0002291791889494425, 0.0015290983858024516, -0.012648464263259745, -0.04726843963831793, 0.0034293371745923434, -0.009323045917216178, -0.017102149099109024, 0.011817109909579482, -0.008788603699661364, -0.008254162413429062, -0.015142527324300535, 0.010273165311611125, 0.0002783552731367515, 0.009144898821805412, 0.01318290648081456, 0.011460814787435436, -0.009323045917216178, 0.009323045917216178, -0.016033264663999396, -0.007036821444595454, -0.0010243474284263082, -0.03942995253908397, -0.01615202877339157, -0.007304042553372861, -0.00030619081500234086, 0.0006903211006622065, -0.013895495793780141, 0.007274351526024818, -0.014548703052049637, 0.010095018216200357, 0.00329572662020364, 0.020190036432400714, 0.0023307614793040446, -0.014311172970620272, -0.002197150924915341, 0.012826611358670513, 0.031828997383924404, -0.015914498691962202, 0.021377684976902515, -0.006947747896890071, 0.00973872309405631, -0.006828982856175388, 0.017814737480752095, -0.007036821444595454, 0.01496438022888977, -0.013064141440099878, 0.00510689162845752, -0.028147285778381815, 0.019121151997291086, 0.006086702050200508, -0.008847986685679963, -0.019239917969328283, -0.009976253175485676, -0.00391924215263321, -0.018527327725040187, 0.0047802879993227715, -0.013776730753065458, -0.01021378325691504, -0.018052267562181458, 0.02185274513976124, -0.025178162554482297, 0.026128282880199756, 0.031591469165140065, 0.0034441826882663645, -0.014014260834494823, -0.014073642889190907, -0.01757720739932273, -0.0043349197951345975, -0.00973872309405631, -0.0009649649662766242, 0.008194779427410466, -0.00391924215263321, 0.01478623220215649, -0.0058491724344323995, 0.00872922164496528, 0.0020635406033572656, -0.0005084623357946488, -0.001729514100970193, -0.012114022045704931, 0.005255347696520245, -0.007779102250570334, -0.009026133781090729, -0.008907368740376048, 0.009679341039360226, -0.0032363440998462987, 0.011757726923560885, 0.002835512436680188, 0.009204280876501497, -0.010451313338344405, 0.0011950719998306929, 0.0018557018985218858, 0.002731593142470155, 7.747555563116868e-05, 0.01947744618811262, 0.007482190114444885, -0.006086702050200508, 0.02957246440431298, -0.008313544468125149, 0.008194779427410466, -0.0018705475286112212, 0.013361053576225327, -0.027434697396738747, -0.0047802879993227715, 0.01686461901767966, 0.022684099493441506, -0.012232787086419613, -0.015914498691962202, -0.02090262667668881, -0.0012247632600093635, 0.012470316236526465, -0.028741110050632717, 0.026840871261842824, 0.01638955885482093, -0.004572449410902706, 0.01757720739932273, -0.008847986685679963, 0.01496438022888977, -0.00659145324040728, -0.019358682078720452, 0.004186463261410617, 0.0029988142512475625, 0.007096203964952795, -0.005136582655805562, 0.015201909378996622, -0.008966751726394644, -0.02541569263591166, 0.026603343043058482, 0.011698344868864799, -0.013301671521529241, 0.010985755555899219, -0.005374112737234927, 0.0016107491766708247, -0.011223284706006071, 0.027434697396738747, 0.02885987602266991, -0.009798106080074908, 0.009679341039360226, -0.003414491428087694, -0.01241093418183038, -0.010035636161504272, 0.023871749900588327, 0.008966751726394644, 0.007274351526024818, 0.004097389713705233, 0.014073642889190907, -0.01419240792990559, 0.00724466003301552, 0.014726850147460405, 0.0016998229572068365, 0.02992876045777954, -0.013598583657654692, 0.01140143273273935, 0.009085516767109326, -0.009323045917216178, -0.00028392239897216643, -0.033491706091284934, -0.005700716366369675, 0.013064141440099878, 0.0066508357607646205, 0.019596212160149815, -0.018408561753002994, -0.0011431123527256765, 0.008135397372714381, -0.00013546624359795617, 0.008847986685679963, 0.014370555025316359, 0.02648457707102129, 0.005938245982137783, 0.0245843382822314, -0.026603343043058482, -0.010332548297629722, 0.004305228302125299, 2025-12-30T11:04:34.358316791Z -0.000534442159347157, 0.020308800541792887, 0.0066508357607646205, 0.0031918073259936067, -0.019239917969328283, 0.008907368740376048, -0.028147285778381815, -0.007897867291285016, 0.005433495257592268, 0.016627088936250298, -0.016508324826858125, 0.019121151997291086, -0.01021378325691504, -0.014904997242871173, 0.0020635406033572656, -0.02933493618552864, 0.008076014386695784, -0.0010466158153526542, 0.022090275221190607, 0.014548703052049637, 0.007719719730212993, 0.003132424805636266, 0.005789789914075059, -0.018527327725040187, -0.01478623220215649, -0.006918056403880772, -0.006324232131629873, 0.005522568805297652, 0.004483375863197322, -0.026959637233880018, 0.00733373404638216, -0.009026133781090729, -0.01733967918053839, -0.010154400270896443, -3.798389770786296e-06, -0.01021378325691504, 0.01745844328993056, -0.006888365376532729, 0.0007756833863643988, 0.008610456604250598, 0.010095018216200357, 0.02173398103036907, -0.01567696861053284, 0.02054633062322225, 0.013598583657654692, -0.00046392547463047144, 0.0021229228908839787, -0.019002387887898917, -0.027790991587560283, -0.009798106080074908, 0.03539194674271985, 0.0603325810784178, -0.01793350345278929, 0.027434697396738747, -0.012885993413366598, -0.019002387887898917, 0.004720905478965431, 0.004691214451617388, 0.04038007286480143, 0.002464372033692748, -0.09691217636563945, 0.01478623220215649, 0.0020041580829999244, 0.02494063247305293, -0.02648457707102129, -0.0012470316469357094, -0.032541589490857524, -0.02304039368426304, -0.012054639059686335, -0.004602140438250748, -0.006888365376532729, -0.007897867291285016, -0.011698344868864799, 0.003785631831075134, 0.02351545384712177, -0.03135393722106568, -0.01270784631795583, -0.010095018216200357, 0.010451313338344405, 0.019714976269541985, 0.01567696861053284, -0.02992876045777954, 0.00659145324040728, 0.0014697158654451107, 0.025059398445090128, -0.0034293371745923434, -0.006710217815460706, -0.028741110050632717, -0.008966751726394644, 0.008076014386695784, -0.023159159656300235, -0.008788603699661364, 0.03467935836107678, 0.003414491428087694, -0.006057011022852466, 0.009560575998645543, -0.002137768637388628, -0.017102149099109024, -0.010748225474469854, -0.01638955885482093, 0.0022565334452726822, 0.004097389713705233, -0.01152019684213152, 0.04085513302766016, 0.013895495793780141, -0.00391924215263321, 0.013836112807761545, -0.012945376399385195, 0.0063836146519872135, 0.02767222561552309, 0.0018185878815062046, 0.015320674419711303, 0.02636581296162912, 0.003562947496150419, 0.008491691563535915, 0.020071272323008545, -0.007779102250570334, 0.0239905140099805, 0.006235158118263233, 0.02838481585981118, -0.018646091834432357, 0.005967937475147082, -0.013301671521529241, -0.0023159159656300234, -0.015439439460425987, 0.007897867291285016, 0.05439433463061877, -0.01300475845408128, 0.010629460433755171, 0.00391924215263321, 0.021971511111798438, 0.010629460433755171, -0.015439439460425987, -0.009026133781090729, 0.004899053040037454, -0.012885993413366598, -0.030641348839422607, 0.0029988142512475625, -0.004631831931260047, -0.005255347696520245, -0.01947744618811262, 0.025534458607948854, 0.01615202877339157, 0.005967937475147082, -0.013539200671636093, -0.02482186836366076, -0.01757720739932273, 0.015558204501140668, -0.04133019319051889, -0.002835512436680188, -0.004127081206714531, -0.011282667692024668, 0.004453684370188024, 0.0063836146519872135, 0.017695973371359926, 0.028622345941240544, 0.01152019684213152, -0.0004175329242570415, -0.00329572662020364, 0.01757720739932273, 0.018527327725040187, -0.0019299299325532483, 0.006710217815460706, -0.012529699222545064, 0.005522568805297652, 0.00391924215263321, 0.010332548297629722, 0.03206652932799879, 0.01615202877339157, 0.01793350345278929, -0.00576009842106576, -0.016033264663999396, -0.00546318628494031, 0.004542758383554663, -0.03277911770964186, -0.028028521668989646, -0.027197167315309384, -0.012232787086419613, -0.0010614614454419894, -0.013242288535510644, 0.0018557018985218858, -0.010451313338344405, 0.0050475091081001785, 0.023871749900588327, 0.018052267562181458, 0.01318290648081456, 0.005017818080752136, 0.02589075279877039, -0.0031769615794889575, -0.023159159656300235, -0.012945376399385195, 0.009501193943949458, 0.004958435560394795, -0.002835512436680188, -0.01021378325691504, 0.0003729960921966926, -0.007660337209855652, 0.04204278157216196, -0.004394301849830682, 0.007600954689498311, 0.003310572133877661, -0.024703104254268592, -0.005077200135448222, -0.0012915685372037152, -0.004097389713705233, -0.016745853045642467, -0.024703104254268592, -0.013717348698369373, -0.0239905140099805, 0.009679341039360226, -0.0011356895958886657, 0.007779102250570334, -0.011163902651309985, -0.006264849611272532, -0.0016107491766708247, 0.011579579828150117, -0.012173404100401016, -0.0012618772770250446, 0.0037707863174011127, 0.003399645914413673, -0.004839670519680113, -0.010451313338344405, -0.01638955885482093, -0.004691214451617388, 0.015201909378996622, 0.001788896621327534, -0.006739909308470004, -0.006561761747397981, -0.01051069539304049, 0.030641348839422607, 0.012470316236526465, 0.004127081206714531, 0.00659145324040728, -0.01152019684213152, -0.006472688199692597, -0.018052267562181458, 0.019358682078720452, 0.001172803612904347, -0.012173404100401016, -0.026722107152450655, 0.023396689737729598, -0.02494063247305293, 0.008076014386695784, 0.009263663862520094, -0.002538600067724111, -0.004720905478965431, -0.0007051667307515418, 0.0245843382822314, 0.00011366174259413779, -0.0010763070755313248, -0.011638961882846202, 0.005225656669172202, -0.019002387887898917, -0.01419240792990559, -0.022446569412012143, 0.018052267562181458, 0.04061760108358577, -0.0008462000419772558, -0.0016924000839545117, -0.004691214451617388, 0.005136582655805562, 0.01300475845408128, 0.0023604527394827154, -0.028622345941240544, -0.010451313338344405, 0.00035072764706268973, 0.03515441479864546, 0.007660337209855652, 0.0239905140099805, 0.002568291327902781, 0.019121151997291086, -0.015023762283585854, 0.03586700690557858, -0.01983374224157918, 0.026959637233880018, 0.022209039330582776, 0.00991687112078959, -0.000534442159347157, -0.000616093008423187, 0.025534458607948854, -0.03420429819821805, -0.014608085106745721, -0.004988126587742838, 0.0122921691411157, -0.0228028654654787, -0.008372926522821234, -0.03752971561293911, -0.0010985754624576705, -0.024465574172839226, -0.011282667692024668, -0.007957249345981101, 0.014548703052049637, 0.02636581296162912, -3.9433664907032644e-05, -0.007511881141792927, 0.009323045917216178, 0.014845615188175086, 0.011638961882846202, -0.0039786246729905505, -0.01241093418183038, 0.004809979492332071, -0.031828997383924404, -0.024703104254268592, 0.004869361547028155, -0.00973872309405631, 0.016033264663999396, 0.011460814787435436, -0.020308800541792887, 0.01567696861053284, -0.0008462000419772558, 0.005433495257592268, 0.0007831062014090665, 0.0008462000419772558, 0.010332548297629722, 0.011579579828150117, -0.01466746809276432, 0.036104535124362916, -0.01466746809276432, 0.01318290648081456, 0.0020486948568526164, 0.004928744067385496, 0.0017963193781645448, -0.005611642353003036, 0.01745844328993056, 0.009679341039360226, 0.01995250635097135, 0.011638961882846202, -0.02102139078608098, 0.007957249345981101, -0.015023762283585854, 0.0, 0.001915084302463913, -0.003830168604927826, -0.004423993342839981, -0.011579579828150117, -0.014073642889190907, -0.02351545384712177, -0.004423993342839981, -0.013954877848476226, -0.007957249345981101, -0.0009946561682476376, 0.007007130417247411, 0.015558204501140668, -0.019121151997291086, 0.007363425073730202, 0.0053147302168775855, -0.01318290648081456, 0.00659145324040728, -0.017814737480752095, -0.01615202877339157, -0.015795734582570033, 0.027078401343272187, -0.004958435560394795, -0.016627088936250298, -0.022565335384049336, 0.002731593142470155, -0.0005084623357946488, 0.010866990515184536, 0.01817103353421865, 0.0045130668905453645, -0.013301671521529241, 0.006175776063567148, 0.005344421244225629, -0.003637175763012409, 0.00014010549572491632, -0.010688842488451257, -0.01615202877339157, 0.020071272323008545, -0.005700716366369675, 0.004156772234062574, 0.01983374224157918, 0.010451313338344405, -0.007066512937604753, 0.005492877777949609, -7.886732981406529e-05, -0.005789789914075059, 0.015320674419711303, -0.02102139078608098, 0.009204280876501497, -0.013895495793780141, 0.005938245982137783, -0.010807607529165939, -0.008610456604250598, 0.006769600335818047, 0.023634219819158964, -0.013420435630921412, 0.012589081277241149, 0.007036821444595454, -0.011223284706006071, 0.013301671521529241, -0.028147285778381815, -0.0053147302168775855, 0.015439439460425987, -0.01745844328993056, 0.003830168604927826, 0.002716747628796134, 0.007422807594087543, 0.02304039368426304, -0.009441810957930862, -0.021971511111798438, 0.01567696861053284, 0.003132424805636266, -0.001521675512550127, 0.0037410950572224423, -0.005908554954789741, -0.007125894992300838, -0.008847986685679963, -0.013123523494795963, 0.008907368740376048, 0.003087888031783574, -0.016508324826858125, 0.02304039368426304, -0.000556710546273503, 0.008491691563535915, -0.019358682078720452, 0.006828982856175388, 0.012767229303974427, -0.005433495257592268, 0.021971511111798438, -0.005077200135448222, 0.0005864018064521736, -0.005730407393717718, 0.0011876492429936823, 0.0034293371745923434, 0.002820666923006167, -0.021971511111798438, 0.028266051750419012, 0.008788603699661364, 0.007155586485310136, -0.01793350345278929, -0.026603343043058482, 0.0019447755626425835, -0.0005678447979443329, 0.008194779427410466, -0.018883621915861723, 0.016270794745428762, 0.006739909308470004, 0.0016552860669388305, 0.010985755555899219, 0.004809979492332071, 0.0032363440998462987, 0.005938245982137783, 0.007957249345981101, 0.0013435281843087318, 0.01199525700499025, 0.017814737480752095, 0.012232787086419613, 0.009323045917216178, 0.0301662905392089, -0.003399645914413673, -0.00650237922704064, 0.016033264663999396, -0.027434697396738747, -0.009501193943949458, 0.008610456604250598, 0.023871749900588327, -0.020308800541792887, -0.004127081206714531, -0.011698344868864799, 0.005671024873360376, 0.009679341039360226, -0.0021080773772099576, 0.002731593142470155, 0.009026133781090729, -0.02541569263591166, -0.010629460433755171, -0.00015680681502350425, -0.014311172970620272, 0.013776730753065458, 0.009085516767109326, 0.010629460433755171, -0.003132424805636266, -0.013420435630921412, -0.026959637233880018, 0.02304039368426304, -0.010273165311611125, -0.0010391930585156436, 0.025653222717341027, 0.006799291828827346, 0.012767229303974427, 0.0017517826043118529, -0.007066512937604753, 0.019002387887898917, 0.013301671521529241, -0.02304039368426304, 0.007363425073730202, -0.002286224705451353, -0.016745853045642467, 0.01567696861053284, -0.014073642889190907, 0.0122921691411157, -0.013064141440099878, -0.004275537274777256, 0.014014260834494823, -0.0008721798655297641, -0.012589081277241149, 0.006532070720049939, -0.01947744618811262, 0.007214969005667478, -0.008491691563535915, 0.0013657965712350775, -0.01051069539304049, -0.003340263394056332, 0.012826611358670513, -0.007779102250570334, -0.023396689737729598, -0.006413305679335257, 0.014133025875209506, -0.008076014386695784, -0.016270794745428762, -0.03562947496150419, -0.0006643412771096982, -0.001707245714043847, -0.018408561753002994, 0.005195965176162903, 0.012648464263259745, 0.010748225474469854, -0.01817103353421865, 0.0016107491766708247, -0.024703104254268592, 0.016745853045642467, -0.00040639870169004, -0.009441810957930862, 0.02850357996920335, -0.009144898821805412, -0.027790991587560283, 0.006739909308470004, -0.005166274148814861, 0.025059398445090128, -0.016627088936250298, -0.015914498691962202, -0.015201909378996622, -0.012114022045704931, 0.0010466158153526542, 0.012589081277241149, -0.0023307614793040446, -0.0008573342936480858, 0.01745844328993056, -0.009382428903234777, 0.007393116101078245, -0.00436461082248264, -0.007304042553372861, -0.003948933645642508, -0.00436461082248264, 0.018289797643610824, 0.001402910588250759, 0.03966748448315836, 0.016270794745428762, 0.004839670519680113, -0.007719719730212993, 0.007541572634802225, 0.003310572133877661, 0.01817103353421865, -0.015320674419711303, -0.01983374224157918, 0.008847986685679963, 0.01615202877339157, -0.08076014572960286, -0.009144898821805412, -0.02054633062322225, 0.009976253175485676, 0.013301671521529241, 0.00991687112078959, 0.0019002386723745777, 0.01021378325691504, -0.00218230541124132, -0.01757720739932273, -0.04014254464601709, 0.01021378325691504, 0.028147285778381815, 0.0026276738482601224, 0.007511881141792927, 0.009026133781090729, 0.0016552860669388305, 0.0061163935432098065, 0.028147285778381815, 0.00288004921053288, 0.0006123816300046817, -0.00436461082248264, -0.013064141440099878, 0.005789789914075059, -0.00783848430526642, 0.03372923803535932, -0.0037114037970437715, 0.014073642889190907, -0.026603343043058482, 0.030641348839422607, -0.023871749900588327, -0.006264849611272532, -0.004988126587742838, -0.008551074549554512, -0.018052267562181458, 0.0032214983533416495, -0.019239917969328283, 0.016745853045642467, -0.017102149099109024, -0.012885993413366598, 0.006353923158977915, 0.0031769615794889575, -0.00620546709091519, -0.0029245862172161997, -0.015320674419711303, -0.002761284402648826, 0.03467935836107678, -0.0010243474284263082, -0.020783860704651613, -0.019002387887898917, 0.00032103641598784765, 0.021258920867510342, 0.0039786246729905505, 0.0061163935432098065, -0.0122921691411157, -0.00047505966809364443, 0.004156772234062574, -0.01051069539304049, 0.011876491964275567, -0.0031918073259936067, 0.011638961882846202, -0.0363420670684373, -0.005878863461780443, 0.006353923158977915, -0.005077200135448222, 0.029216170213491443, 0.005374112737234927, 0.027553461506130916, -0.003948933645642508, 0.020071272323008545, 0.009679341039360226, -0.0012024948730830177, 0.023396689737729598, 0.015320674419711303, -0.007185277512658179, 0.002301070219125374, 0.007036821444595454, 0.011638961882846202, 0.018289797643610824, 0.00014103334032954264, 0.0239905140099805, -0.004928744067385496, -0.037054655450080375, 0.002137768637388628, -0.010985755555899219, -0.010391930352325806, -0.026128282880199756, -0.01686461901767966, 0.004839670519680113, 0.013123523494795963, 0.010332548297629722, 0.016745853045642467, 0.013123523494795963, -0.0061163935432098065, -0.016627088936250298, 0.005522568805297652, -0.006264849611272532, 0.007779102250570334, 0.02102139078608098, -0.014133025875209506, -0.014726850147460405, -0.015201909378996622, 0.014251789984601675, 0.011638961882846202, 0.013361053576225327, -0.008076014386695784, 0.014429938011334955, -0.0053147302168775855, 0.01638955885482093, -0.00659145324040728, -0.004631831931260047, 0.008610456604250598, -0.004631831931260047, -0.000708878109170047, 0.017220913208501196, -0.0239905140099805, -0.0029245862172161997, -0.012114022045704931, -0.009382428903234777, -0.007541572634802225, 0.01466746809276432, 0.01051069539304049, 0.014133025875209506, 0.020665096595259443, 0.0004899052690791512, -0.0005233079076763271, -0.007660337209855652, -0.007363425073730202, -0.026722107152450655, -0.009085516767109326, -0.010866990515184536, -0.016033264663999396, 0.004839670519680113, -0.0006643412771096982, 0.00366686702319108, 0.00783848430526642, -0.023871749900588327, -0.0026573651084387927, -0.008788603699661364, -0.01733967918053839, 0.0013286825542193964, -0.0023752984859873646, -0.001402910588250759, -0.007155586485310136, -0.036104535124362916, -0.016270794745428762, 0.029216170213491443, 0.00162559480676016, -0.006918056403880772, 0.005819480941423101, -0.00973872309405631, -0.013776730753065458, 0.023634219819158964, 0.01567696861053284, 0.009857488134770992, 0.0363420670684373, -0.017102149099109024, -0.03729218366886471, -0.007660337209855652, 0.01995250635097135, 0.00325118961352032, 0.01615202877339157, 0.008788603699661364, -0.016033264663999396, 0.011460814787435436, 0.010866990515184536, 0.01757720739932273, -0.01318290648081456, 0.0023901439996613857, -0.001959621076316605, 0.001974466822821254, -0.009204280876501497, -0.02541569263591166, -0.01757720739932273, -0.0019447755626422025-12-30T11:04:34.358316791Z 5835, 0.0005938246214968411, -0.0055819513256549925, -0.006799291828827346, -0.009501193943949458, -0.0029691229910688917, 0.012232787086419613, 0.022090275221190607, 0.004216154754419915, 0.007185277512658179, -0.004542758383554663, -0.019002387887898917, 0.03467935836107678, -0.01793350345278929, -0.0010540386886049788, -0.005344421244225629, 0.01466746809276432, -0.002241687931598661, -0.015795734582570033, 0.010273165311611125, -0.0009575421512319565, 0.010807607529165939, 0.08693592412147629, 0.002345607225808694, 0.003340263394056332, -0.012114022045704931, -0.00012989913231445545, -0.0006420728319756953, 0.004602140438250748, 0.002538600067724111, 0.0026573651084387927, -0.004661522958608089, -0.014073642889190907, -0.01567696861053284, 0.01300475845408128, 0.023634219819158964, -0.053206686086116964, -0.009560575998645543, -0.0301662905392089, -0.0043349197951345975, 0.015439439460425987, -0.026840871261842824, 0.011638961882846202, 0.00783848430526642, -0.010332548297629722, -0.010688842488451257, -0.033254177872500595, -0.006235158118263233, -0.02185274513976124, 0.011935874950294164, 0.0014103334615030835, -0.006057011022852466, 0.013836112807761545, 0.010866990515184536, 0.0011579579828150117, -0.029691230376350172, -0.0007868175798275718, 0.010688842488451257, -0.00436461082248264, 0.006977438924238113, -0.00650237922704064, -2.8995342164404465e-05, 0.006413305679335257, 0.007541572634802225, -0.025059398445090128, -0.016627088936250298, 0.02114015489547315, -0.021377684976902515, 0.03301664965371625, -0.005700716366369675, 0.0016627089401911551, 0.013361053576225327, 0.0019002386723745777, 0.012351552127134296, -0.012648464263259745, -0.005997628502495125, 0.010866990515184536, 0.011460814787435436, 0.00872922164496528, -0.0029542774773948705, 0.010095018216200357, 0.004869361547028155, 0.012767229303974427, 0.00973872309405631, -0.0050475091081001785, -0.027078401343272187, 0.011282667692024668, -0.012648464263259745, -0.0017963193781645448, -0.016627088936250298, -0.03681712350600599, 0.02945370029492081, 0.020071272323008545, 0.009026133781090729, -0.006027319529843167, -0.009679341039360226, 0.0025979825880814516, 0.013361053576225327, -0.015439439460425987, -0.00288004921053288, -0.005522568805297652, 0.010273165311611125, -0.010807607529165939, -0.022209039330582776, -0.0020932316307053084, 0.010391930352325806, -0.012826611358670513, -0.004008316165999849, -0.01615202877339157, -0.009857488134770992, -0.004186463261410617, 0.008135397372714381, 0.020308800541792887, 0.02054633062322225, 0.004928744067385496, 0.0021080773772099576, -0.012054639059686335, -0.007393116101078245, 0.0006086701933785194, -0.014311172970620272, 0.008907368740376048, 0.008076014386695784, 0.006828982856175388, 0.010095018216200357, 0.01983374224157918, 0.0038598598651064966, -0.020308800541792887, 0.02114015489547315, -0.0017369369742225177, -0.008194779427410466, -0.015914498691962202, -0.021615215058331878, 0.033254177872500595, -0.014548703052049637, 0.026722107152450655, -0.008788603699661364, -0.024228044091409863, 0.007957249345981101, -0.00510689162845752, 0.00620546709091519, 0.005522568805297652, -2.8647398618680313e-05, -0.006086702050200508, 0.011282667692024668, -0.0004286671468240429, 0.022446569412012143, -0.004958435560394795, -0.0016775544538651765, -0.021615215058331878, 0.003726249310717793, -0.011223284706006071, 0.0029394317308902213, -0.023277923765692404, 0.018289797643610824, -0.006621144267755322, 0.010332548297629722, 0.019596212160149815, -0.007274351526024818, 0.009263663862520094, -0.007600954689498311, -0.02541569263591166, -0.0035481019824763977, 0.006710217815460706, 0.007779102250570334, -0.02173398103036907, -0.010748225474469854, 0.0002291791889494425, -0.006828982856175388, -0.010035636161504272, -0.0021229228908839787, -0.017695973371359926, 0.003132424805636266, -0.006353923158977915, 0.008907368740376048, 0.004839670519680113, -0.0034887194621190565, -0.01021378325691504, -0.013717348698369373, -0.004483375863197322, 0.00991687112078959, -0.01567696861053284, -0.025771986826733196, -0.020783860704651613, -0.01092637256988062, 0.005166274148814861, -0.00872922164496528, 0.028741110050632717, -0.0017443597310595282, -0.019714976269541985, -0.0301662905392089, -0.004988126587742838, -0.015201909378996622, 0.004869361547028155, -0.009323045917216178, 0.00783848430526642, -0.014133025875209506, 0.011163902651309985, -0.01241093418183038, 0.011460814787435436, 0.013717348698369373, 0.028147285778381815, -0.027909755696952452, -0.005938245982137783, 0.00362233001650776, -0.025059398445090128, 0.006264849611272532, 0.007393116101078245, 0.023159159656300235, 0.010095018216200357, 0.02885987602266991, -0.008788603699661364, -0.02410927811937267, -0.012054639059686335, -0.020665096595259443, 0.003577793242655068, 0.0005975359999153464, 0.014311172970620272, 0.006828982856175388, 0.0009723877813212917, -0.01496438022888977, -0.004038007193347892, -0.019596212160149815, -0.015439439460425987, 0.00614608457055785, -0.0122921691411157, 0.0035332564688023765, -0.004691214451617388, -0.014251789984601675, 0.0037410950572224423, -0.05819481220819855, 0.010688842488451257, -0.0031175790591316164, -0.0037707863174011127, 0.012767229303974427, -0.028266051750419012, 0.00733373404638216, 0.0010763070755313248, 0.019596212160149815, 0.017220913208501196, -0.004453684370188024, 0.01757720739932273, 0.010332548297629722, -0.009976253175485676, 0.001729514100970193, -0.045843259149741744, 0.0011950719998306929, -0.002197150924915341, -0.029216170213491443, 0.01947744618811262, -0.00391924215263321, -0.0012841456639513906, -0.0019447755626425835, -0.03301664965371625, -0.006532070720049939, -0.01817103353421865, -0.003369954654235002, 0.013598583657654692, 0.010570077447736574, -0.00991687112078959, -0.003889551125285167, -0.019714976269541985, -0.019714976269541985, -0.02541569263591166, 0.006947747896890071, 0.011935874950294164, -0.017102149099109024, 0.01300475845408128, 0.008966751726394644, -0.002805821176501518, -0.0023901439996613857, -0.0001939208465910997, 0.006888365376532729, 0.005195965176162903, 0.0018705475286112212, 0.005017818080752136, 0.011817109909579482, 0.0032363440998462987, 0.05534445123104618, -0.015914498691962202, -0.014904997242871173, -0.008847986685679963, -0.005878863461780443, -0.012826611358670513, -0.01496438022888977, 0.00021526141801664778, 0.005285038723868287, -0.013301671521529241, 0.007897867291285016, 0.018052267562181458, 0.01757720739932273, 0.006264849611272532, -0.011460814787435436, -0.0026870563686174635, 0.018764857806469554, -0.002761284402648826, 0.0025979825880814516, 0.00033588204607718294, -0.006947747896890071, -0.007897867291285016, -0.010273165311611125, 0.013836112807761545, -0.045843259149741744, 0.009263663862520094, 0.0007793947647829041, 0.012173404100401016, -0.0029542774773948705, -0.0005121737142131541, 0.0014622931086080999, 0.009441810957930862, -0.0003284592310325153, -0.011876491964275567, 0.005938245982137783, 0.0024346807735140777, 0.0014771387386974353, 0.02589075279877039, -0.01478623220215649, 0.028266051750419012, 0.007541572634802225, -0.0013212596809670718, -0.0012099176299200283, 0.005671024873360376, 0.010273165311611125, -0.0007163009242147148, -0.0030136597649215837, 0.0007459921843933852, -0.0007274351176778876, -0.002776129916322847, 0.010629460433755171, 0.046793379475459196, -0.012589081277241149, -0.031828997383924404, -0.002805821176501518, -0.01092637256988062, -0.013479818616940009, -0.009323045917216178, 0.002805821176501518, -0.016745853045642467, 0.0023604527394827154, 0.022684099493441506, 0.010748225474469854, -0.0017814737480752094, 0.008254162413429062, -0.009441810957930862, 0.0007274351176778876, -0.02173398103036907, -0.01686461901767966, -0.017220913208501196, 0.010332548297629722, -0.00659145324040728, -0.01140143273273935, 0.013657965712350777, -0.003637175763012409, -0.002449526520018727, -0.008076014386695784, -0.0066508357607646205, -0.0024346807735140777, 0.0008276430334694153, -0.012885993413366598, -0.006621144267755322, -0.014845615188175086, 0.010985755555899219, -0.004809979492332071, -0.006918056403880772, 0.004869361547028155, -0.027315931424701553, -0.015795734582570033, 0.003414491428087694, 0.013123523494795963, -0.02102139078608098, 0.002805821176501518, 0.008966751726394644, 0.005077200135448222, 0.004602140438250748, 0.004809979492332071, -0.009619958984664142, -0.032541589490857524, 0.007660337209855652, -0.005878863461780443, -0.008788603699661364, 0.012054639059686335, -0.005195965176162903, 0.013539200671636093, -0.016508324826858125, -0.007719719730212993, 0.0029245862172161997, -0.02185274513976124, 0.001232186016846374, -0.006413305679335257, -0.002731593142470155, 0.006027319529843167, -0.004869361547028155, 0.010035636161504272, -0.015201909378996622, -0.02589075279877039, 0.00436461082248264, -0.020071272323008545, -0.023159159656300235, 0.021615215058331878, 0.005492877777949609, 9.928004935902992e-05, -0.01199525700499025, -0.0009501193361872889, 0.007393116101078245, -0.01021378325691504, -0.012114022045704931, -0.01496438022888977, 0.0399050127019427, -0.0026276738482601224, -0.006086702050200508, -0.012173404100401016, -0.01733967918053839, -0.0002579425754196582, -0.00109115270562066, -0.00021526141801664778, -0.0011431123527256765, -0.01817103353421865, 0.009085516767109326, -0.003073042285278925, -4.569665964400312e-05, 0.005997628502495125, -0.01638955885482093, -0.01051069539304049, -0.009619958984664142, -0.0011356895958886657, 0.012173404100401016, -0.026840871261842824, 0.008016632331999698, 0.0037410950572224423, 0.0014622931086080999, -0.006947747896890071, 0.011460814787435436, 0.005878863461780443, 0.022921629574870872, 0.01567696861053284, -0.008610456604250598, -0.01733967918053839, -0.009204280876501497, -0.06793353250828732, 0.008788603699661364, 0.00024309694533032294, -0.000180003075658305, -0.009560575998645543, -0.001892815915537567, 0.02351545384712177, -0.004750596971974729, 0.0004899052690791512, -0.010273165311611125, -0.007185277512658179, -0.027553461506130916, -0.006977438924238113, -0.0008090860249615747, 0.003637175763012409]
2025-12-30 11:04:34.398 ERROR [ThreadPoolExecutor-1_0] [retrieval_service.py:310] - Error parsing message
Traceback (most recent call last):
File "/app/api/core/rag/datasource/retrieval_service.py", line 244, in embedding_search
vector.search_by_vector(
File "/app/api/core/rag/datasource/vdb/vector_factory.py", line 273, in search_by_vector
return self._vector_processor.search_by_vector(query_vector, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/api/core/rag/datasource/vdb/weaviate/weaviate_vector.py", line 391, in search_by_vector
res = col.query.near_vector(
^^^^^^^^^^^^^^^^^^^^^^
File "/app/api/.venv/lib/python3.12/site-packages/weaviate/collections/queries/near_vector/query/executor.py", line 376, in near_vector
request = self._query.near_vector(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/api/.venv/lib/python3.12/site-packages/weaviate/collections/grpc/query.py", line 266, in near_vector
return self.__create_request(
^^^^^^^^^^^^^^^^^^^^^^
File "/app/api/.venv/lib/python3.12/site-packages/weaviate/collections/grpc/query.py", line 473, in __create_request
return search_get_pb2.SearchRequest(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
google.protobuf.message.DecodeError: Error parsing message
Exception in thread Thread-6 (_retriever):
Traceback (most recent call last):
File "/usr/local/lib/python3.12/threading.py", line 1075, in _bootstrap_inner
self.run()
File "/usr/local/lib/python3.12/threading.py", line 1012, in run
self._target(*self._args, **self._kwargs)
File "/app/api/core/rag/retrieval/dataset_retrieval.py", line 801, in _retriever
documents = RetrievalService.retrieve(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/api/core/rag/datasource/retrieval_service.py", line 115, in retrieve
raise ValueError(";\n".join(exceptions))
ValueError: Error parsing message
2025-12-30 11:04:35.111 INFO [GraphWorker-0] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/ea73d443-7cfe-47ac-af34-3471c5fef849/management/models?page=1&page_size=256 "HTTP/1.1 200 OK"
@fatelei I copied the code and tried, but there were still issues.
2025-12-30 11:04:34.251 INFO [ThreadPoolExecutor-1_0] [_client.py:1038] - HTTP Request: GET http://weaviate:8080/v1/schema/Vector_index_859f7a62_ba64_4d35_9ce3_930881adc4b8_Node "HTTP/1.1 200 OK" 2025-12-30 11:04:34.276 INFO [ThreadPoolExecutor-1_0] [weaviate_vector.py:389] - [-0.016033264663999396, 0.027434697396738747, 0.013895495793780141, 0.018646091834432357, 0.0002486640420619094, -0.016033264663999396, 0.02102139078608098, 0.024228044091409863, -0.010688842488451257, 0.006442996706683299, -0.024465574172839226, -0.025771986826733196, 0.05273162592325824, -0.021258920867510342, 0.01995250635097135, 0.018408561753002994, -0.02482186836366076, -0.0058491724344323995, 0.007066512937604753, 0.024346808200802032, 0.01817103353421865, -0.0035035652086237057, 0.01638955885482093, -0.031591469165140065, -0.028266051750419012, 0.019714976269541985, -0.012767229303974427, -0.001113421092547006, -0.006769600335818047, 0.007036821444595454, -0.022209039330582776, -0.00783848430526642, 0.006947747896890071, 0.013717348698369373, 0.018052267562181458, 0.019714976269541985, -0.0245843382822314, -0.002019003596673946, 0.008907368740376048, -0.009679341039360226, -0.007304042553372861, 0.0008313544700955776, -0.003073042285278925, -0.013242288535510644, 0.0029988142512475625, -0.018764857806469554, -0.029216170213491443, 0.018408561753002994, -0.003785631831075134, 0.009798106080074908, 0.00034887195785343703, -0.02114015489547315, 0.0021229228908839787, 0.016508324826858125, 0.0010763070755313248, -0.01318290648081456, -0.00546318628494031, -0.017695973371359926, -0.012351552127134296, -0.0035926387563290896, -0.0245843382822314, 0.02042756651383008, -0.018646091834432357, 0.011817109909579482, 0.010095018216200357, -0.005967937475147082, -0.02114015489547315, -0.026959637233880018, 0.015795734582570033, -0.01300475845408128, -0.001254454520188034, -0.003102733545457595, -0.004958435560394795, 0.00090558250412694, -0.00218230541124132, 0.02838481585981118, -0.031116409002281336, -0.031591469165140065, -0.015201909378996622, 0.006442996706683299, -0.008313544468125149, 0.015320674419711303, -0.017814737480752095, -0.018527327725040187, 0.02149645094893971, -0.028266051750419012, 0.0013954878314137481, -0.015201909378996622, 0.009441810957930862, -0.013539200671636093, -0.014548703052049637, 0.005552259832645694, 0.025178162554482297, 0.01817103353421865, -0.01419240792990559, 0.03444182641700239, -0.008135397372714381, 0.008372926522821234, -0.019596212160149815, 0.0040676986863571905, 0.02304039368426304, 0.030047524567171708, 0.01270784631795583, -0.018646091834432357, 0.008669839590269195, -0.00024124124156915604, -0.021615215058331878, 0.014429938011334955, 0.00034516055033110323, -0.02114015489547315, -0.021615215058331878, -0.010570077447736574, 0.019358682078720452, 0.008372926522821234, -3.5490299871520804e-05, -0.027078401343272187, -0.02541569263591166, 0.0028503581831848374, -0.024703104254268592, 6.541348845954089e-05, -0.018527327725040187, 0.0016998229572068365, 0.010095018216200357, -0.004453684370188024, 0.02149645094893971, -0.008076014386695784, -0.018764857806469554, 0.004899053040037454, 0.04465561060523994, 0.0010763070755313248, -0.01615202877339157, -0.027553461506130916, 0.02102139078608098, -0.02494063247305293, -0.01638955885482093, 0.00023103487815869515, -0.01817103353421865, -0.01793350345278929, 0.011163902651309985, 0.01638955885482093, -0.005997628502495125, 0.0014845614955344459, 0.0038004773447491555, -0.015023762283585854, -0.015320674419711303, 0.03824230399458217, 0.01051069539304049, 0.017814737480752095, 0.0039786246729905505, -0.006057011022852466, 0.028266051750419012, 0.0066508357607646205, 0.001892815915537567, -0.025178162554482297, -0.004156772234062574, -0.009204280876501497, -0.01478623220215649, 0.029216170213491443, 0.02173398103036907, -0.0016033264198338142, 0.01817103353421865, 0.006442996706683299, 0.008551074549554512, 0.002078386117031287, -0.002716747628796134, -0.021971511111798438, -0.005819480941423101, 0.009085516767109326, 0.020071272323008545, 0.0007608377562750635, 0.0007497035628118906, -0.011698344868864799, -0.022209039330582776, 0.008669839590269195, -0.004186463261410617, -0.015142527324300535, -0.00614608457055785, 0.006353923158977915, 0.00724466003301552, -0.0010614614454419894, 0.004275537274777256, 0.011757726923560885, -0.005166274148814861, 0.003369954654235002, 0.0007422807477672229, 0.015142527324300535, 0.0011282667226363411, 0.006680526788112664, -0.013539200671636093, 0.019358682078720452, -0.015023762283585854, -0.01686461901767966, -0.016627088936250298, -0.0008684684871112588, -0.01241093418183038, 0.030641348839422607, 0.007957249345981101, -0.01698338312707183, 0.004008316165999849, -0.015320674419711303, 0.029216170213491443, -0.01567696861053284, 0.011104519665291388, 0.008194779427410466, -0.0030136597649215837, 0.004394301849830682, -0.02114015489547315, 0.007096203964952795, -0.004631831931260047, -0.01757720739932273, 0.03919242432029963, -0.006680526788112664, -0.004097389713705233, -0.0006977439157068741, 0.011045137610595303, 0.021377684976902515, 0.012767229303974427, 0.00724466003301552, -0.01757720739932273, -0.015023762283585854, 0.0007497035628118906, 0.006561761747397981, -0.014845615188175086, -0.008372926522821234, -0.01947744618811262, -0.0003080465042115935, 0.0043349197951345975, 0.01021378325691504, -0.01051069539304049, 0.007957249345981101, 0.015142527324300535, -0.02494063247305293, -0.008372926522821234, -0.0032808808736989907, 0.02090262667668881, 0.036104535124362916, 0.0037559405708964635, -0.004839670519680113, 0.0033848001679090234, -0.005908554954789741, 0.006621144267755322, -0.003147270319310287, -0.013420435630921412, 0.005344421244225629, 0.02149645094893971, -0.004988126587742838, 0.0021080773772099576, -0.02185274513976124, 0.033491706091284934, -0.012470316236526465, 0.012470316236526465, 0.008135397372714381, 0.016745853045642467, -0.00783848430526642, 0.014133025875209506, 0.011935874950294164, 0.007541572634802225, 0.018883621915861723, -0.006324232131629873, 0.03467935836107678, -0.0016924000839545117, 0.02351545384712177, -0.009798106080074908, 0.01300475845408128, 0.0015365211426394624, 0.01757720739932273, -0.01983374224157918, -0.03444182641700239, 0.024465574172839226, 0.0024346807735140777, 0.0043349197951345975, -0.012114022045704931, 0.00041382151673470763, 0.01466746809276432, 0.0011059983357099954, 0.026959637233880018, 0.00366686702319108, 0.005166274148814861, -0.007719719730212993, 0.00018093093481484559, -0.014608085106745721, 0.008551074549554512, 0.01300475845408128, -0.01983374224157918, 0.003132424805636266, -0.028266051750419012, -0.02090262667668881, 0.00724466003301552, 0.0027464388889748047, -0.010629460433755171, -0.01021378325691504, 0.033491706091284934, 0.0042458457817679575, 0.00614608457055785, 0.01021378325691504, -0.012232787086419613, -0.019714976269541985, -0.011045137610595303, -0.006324232131629873, -0.007422807594087543, 0.003102733545457595, -0.006175776063567148, 0.01270784631795583, -0.0034293371745923434, -0.006977438924238113, -0.008135397372714381, -0.009026133781090729, 0.008610456604250598, -0.0040676986863571905, 0.0016107491766708247, -0.02636581296162912, -0.012173404100401016, 0.0014771387386974353, 0.0007756833863643988, -0.0012024948730830177, -0.017220913208501196, 0.00872922164496528, -0.01508314526960445, -0.009144898821805412, 0.01983374224157918, -0.00659145324040728, 0.002716747628796134, -0.0039786246729905505, 0.01241093418183038, -0.01757720739932273, 0.014133025875209506, -0.027078401343272187, -0.002612828334586101, 0.01686461901767966, 0.014726850147460405, -0.0063836146519872135, 0.010154400270896443, -0.012114022045704931, 0.01241093418183038, -0.019714976269541985, 0.02600951690816256, 0.010688842488451257, 0.011104519665291388, 0.04655584753138481, 0.0027909756628274962, -7.51559295676886e-05, -0.0009723877813212917, 0.011282667692024668, 0.0009649649662766242, -0.029216170213491443, 0.008135397372714381, -0.0024792177801973977, -0.013836112807761545, 0.0013657965712350775, 0.02410927811937267, -0.0009575421512319565, -0.00127672290711438, 0.01686461901767966, -0.009382428903234777, -0.00436461082248264, 0.008076014386695784, -0.020783860704651613, 0.019714976269541985, 0.0228028654654787, 0.012173404100401016, -0.0021229228908839787, 0.009441810957930862, 0.009382428903234777, -0.009857488134770992, 0.020190036432400714, 0.00843230950883983, -0.00576009842106576, 0.043230430116663755, -0.025653222717341027, 0.004661522958608089, 0.0024792177801973977, 0.009323045917216178, -0.018408561753002994, 0.015439439460425987, -0.0011431123527256765, 0.01466746809276432, -0.0022119966714199907, -0.028147285778381815, 0.009857488134770992, -0.019596212160149815, -0.010807607529165939, -0.0006606298404835359, 0.003043351025100254, 0.0007608377562750635, -0.028147285778381815, 0.007600954689498311, 0.0008721798655297641, -0.016033264663999396, 0.0006866097222437012, 0.004038007193347892, 0.023277923765692404, -0.0002486640420619094, -0.0032363440998462987, 0.006532070720049939, -0.003087888031783574, 0.018289797643610824, -0.011460814787435436, -0.004602140438250748, -0.022090275221190607, 0.01508314526960445, 0.018289797643610824, -0.002835512436680188, -0.024465574172839226, -0.015201909378996622, -0.008313544468125149, 0.005225656669172202, -0.020190036432400714, 0.007511881141792927, -0.012470316236526465, -0.007452498621435586, -0.012767229303974427, -0.0122921691411157, 0.013479818616940009, 0.02541569263591166, 0.021971511111798438, 0.008551074549554512, 0.013598583657654692, 0.009382428903234777, -0.005552259832645694, 0.010391930352325806, 0.00991687112078959, 0.019121151997291086, 0.02054633062322225, -0.004305228302125299, -0.03301664965371625, 0.01419240792990559, 0.007363425073730202, -0.00783848430526642, -0.000835065848514083, 0.008610456604250598, 0.0021229228908839787, -0.005997628502495125, -0.009560575998645543, 0.0012915685372037152, -0.005611642353003036, -0.009619958984664142, 0.015914498691962202, 0.027553461506130916, 0.007363425073730202, -0.0016552860669388305, -0.00650237922704064, 0.004483375863197322, -0.00872922164496528, -0.05368174252368565, -0.022090275221190607, -0.0005789789914075059, -0.005166274148814861, -0.016627088936250298, -0.01448932006603104, 0.004809979492332071, 0.024228044091409863, -0.01638955885482093, -0.03230405754678314, 0.008372926522821234, -0.01152019684213152, 0.0020486948568526164, -0.023159159656300235, -0.029216170213491443, 6.680526991839462e-05, 0.008669839590269195, 0.017814737480752095, -0.0228028654654787, -0.011104519665291388, -0.026959637233880018, -0.015558204501140668, -0.02102139078608098, 0.043230430116663755, -0.01947744618811262, 0.004275537274777256, 0.0002987679999576732, -0.04703090769424354, -0.0005047508991684865, -0.01817103353421865, 0.0014326018484294295, -0.005997628502495125, 0.010273165311611125, -0.02054633062322225, -0.044180550442381214, 0.03230405754678314, -0.006799291828827346, -0.017814737480752095, -0.0027464388889748047, -0.009263663862520094, -0.023634219819158964, 0.019121151997291086, 0.0027909756628274962, 0.007304042553372861, -0.031116409002281336, 0.01140143273273935, -0.007125894992300838, -0.010391930352325806, -0.01092637256988062, 0.0018779702854482317, -0.007393116101078245, 0.01686461901767966, 0.004216154754419915, 0.015023762283585854, 0.002761284402648826, 0.01793350345278929, 0.008966751726394644, -0.012589081277241149, -0.004453684370188024, 0.011579579828150117, 0.0008647570504850965, -0.010688842488451257, 0.0045130668905453645, 0.006680526788112664, 0.009501193943949458, -0.013301671521529241, 0.01092637256988062, 0.009144898821805412, 0.0012841456639513906, -0.0006791869071990335, 0.012945376399385195, -0.037054655450080375, -0.007541572634802225, 0.010570077447736574, -0.026722107152450655, -0.01478623220215649, 0.02767222561552309, 0.008491691563535915, 0.01318290648081456, 0.004869361547028155, 0.008076014386695784, 0.02304039368426304, 0.02102139078608098, 0.003132424805636266, -0.016745853045642467, -0.006561761747397981, -0.02304039368426304, -0.00010531108294484382, 0.008254162413429062, -0.008372926522821234, -0.015023762283585854, 0.010035636161504272, -0.007393116101078245, 0.01448932006603104, -0.0029988142512475625, 0.009382428903234777, -0.023277923765692404, -0.01615202877339157, 0.010866990515184536, -0.015439439460425987, -0.0018705475286112212, -0.002568291327902781, 0.06555823541928373, -0.01419240792990559, 0.014133025875209506, -0.012054639059686335, 0.01466746809276432, 0.02410927811937267, 0.038479835938656566, -0.02410927811937267, -0.00436461082248264, -0.007155586485310136, 0.009619958984664142, -0.00991687112078959, 0.001892815915537567, 0.011876491964275567, -0.013657965712350777, 0.014133025875209506, 0.0008499114786034183, 0.0047802879993227715, -0.01508314526960445, -0.005611642353003036, -0.04204278157216196, 0.0008907368740376047, 0.023159159656300235, 0.0006123816300046817, -0.017220913208501196, -0.011163902651309985, -0.0055819513256549925, 0.009263663862520094, 0.002820666923006167, 8.814584134394272e-05, 0.004958435560394795, -0.023277923765692404, 0.0023159159656300234, 0.02042756651383008, -0.01567696861053284, -0.027790991587560283, -0.031116409002281336, -0.010570077447736574, 0.019121151997291086, 0.007214969005667478, -0.01466746809276432, 0.009323045917216178, 0.02541569263591166, -0.006888365376532729, -0.011757726923560885, 0.001684977327117501, 0.012114022045704931, -0.005819480941423101, -0.023634219819158964, 0.007096203964952795, -0.02600951690816256, -0.009382428903234777, -0.03230405754678314, -0.01051069539304049, 0.020783860704651613, -0.019714976269541985, -0.0031769615794889575, -0.007096203964952795, 5.3583393353005365e-05, 0.0039786246729905505, 0.023634219819158964, -0.0026425193619341435, -0.015201909378996622, 0.0036520212766864304, -0.028741110050632717, -0.003310572133877661, -0.01152019684213152, -0.005492877777949609, -0.018408561753002994, -0.0043349197951345975, 0.018764857806469554, -0.0032214983533416495, -0.02541569263591166, 0.016270794745428762, 0.013242288535510644, -0.007660337209855652, -0.01419240792990559, -0.010748225474469854, 0.011460814787435436, -0.0010020790414999622, -0.012054639059686335, 0.004869361547028155, 0.016270794745428762, -0.01270784631795583, 0.013361053576225327, 0.004097389713705233, 0.020190036432400714, 0.0005975359999153464, -0.007304042553372861, -0.02945370029492081, 0.027078401343272187, -0.00733373404638216, 0.017102149099109024, -0.028266051750419012, 0.03301664965371625, 0.02529692852651949, -0.006353923158977915, 0.007125894992300838, 0.020190036432400714, -0.00724466003301552, -0.01478623220215649, 0.01745844328993056, 0.011638961882846202, -0.02102139078608098, 0.01698338312707183, 0.00183343351159554, -0.008847986685679963, -0.008254162413429062, 0.015795734582570033, -0.019596212160149815, -0.013420435630921412, 0.007185277512658179, 0.011698344868864799, -0.010154400270896443, 0.006175776063567148, -0.005611642353003036, -0.003518410722297727, -0.004305228302125299, -0.014311172970620272, -0.019714976269541985, -0.033254177872500595, -0.016270794745428762, 0.016270794745428762, 0.022090275221190607, 0.018764857806469554, -0.03800477577579783, -0.001402910588250759, -0.0022713791917773314, 0.009679341039360226, 0.015914498691962202, 0.004691214451617388, 0.004127081206714531, 0.007779102250570334, 0.018527327725040187, 0.0043349197951345975, -0.011342049746720753, 0.007660337209855652, 0.006561761747397981, -0.02232780530261997, -0.00546318628494031, -0.011460814787435436, -0.006888365376532729, 0.008551074549554512, 0.011638961882846202, 0.004186463261410617, -0.011757726923560885, 0.0010020790414999622, 0.007660337209855652, 0.005997628502495125, -0.015439439460425987, 0.009144898821805412, 0.005492877777949609, -0.004483375863197322, -0.004186463261410617, 0.001915084302463913, 0.005285038723868287, 0.0022713791917773314, -0.016745853045642467, -0.01419240792990559, -0.015558204501140668, -0.026959637233880018, -0.020071272323008545, 0.0020932316307053084, 0.0025979825880814516, -0.0010763070755313248, 0.003889551125285167, 0.02185274513976124, -0.002983968737573541, -0.01638955885482093, 0.00783848430526642, -0.008788603699661364, -7.190844434766794e-05, 0.013123523494795963, -0.023634219819158964, -0.05059385705303898, 0.05296915414204258, -0.02838481585981118, -0.00023938553780798911, 0.016508324826858125, 0.010332548297629722, -0.0004824824831383121, -0.00227137912025-12-30T11:04:34.358316791Z 917773314, 0.020071272323008545, 0.006472688199692597, -0.0002987679999576732, -0.025771986826733196, -0.01092637256988062, 0.01241093418183038, 0.013717348698369373, -0.022446569412012143, 0.007957249345981101, -0.009619958984664142, -0.008313544468125149, 0.009085516767109326, -0.02850357996920335, -0.020665096595259443, -0.00017629168268788544, -0.009679341039360226, 0.018646091834432357, -0.0032363440998462987, 0.004156772234062574, -0.0009204281342162753, 0.004156772234062574, 0.010748225474469854, -0.023159159656300235, 0.006561761747397981, 0.01567696861053284, -0.0006643412771096982, 0.014311172970620272, -0.00510689162845752, -0.005492877777949609, -0.00047505966809364443, -0.0029245862172161997, -0.004602140438250748, 0.022209039330582776, -0.006769600335818047, 0.001974466822821254, -0.009204280876501497, 0.016745853045642467, 0.009204280876501497, 0.007452498621435586, 0.018646091834432357, 0.020190036432400714, -0.006561761747397981, -0.01733967918053839, -0.004631831931260047, 0.006472688199692597, 0.008372926522821234, 0.013836112807761545, -0.0061163935432098065, -0.016033264663999396, 0.01241093418183038, 0.015558204501140668, 0.0045130668905453645, 0.028266051750419012, -0.014548703052049637, 0.01567696861053284, 0.003889551125285167, -0.0026722106221128143, -0.013954877848476226, -0.02149645094893971, -0.007511881141792927, 0.006918056403880772, -0.0038598598651064966, 0.0029542774773948705, -0.016627088936250298, 0.0004212443317793753, 0.008669839590269195, -0.015201909378996622, 0.0005752675547813436, -0.007779102250570334, -0.0017740509912381988, -0.014429938011334955, -0.0022119966714199907, 0.012351552127134296, -0.0006754754705728712, 0.00325118961352032, -0.021971511111798438, 0.008016632331999698, -0.00040454301248078734, 0.008669839590269195, -0.007660337209855652, -0.015795734582570033, 0.000411965827525455, 0.019121151997291086, 0.0014697158654451107, -0.00872922164496528, -0.015320674419711303, -0.0009278509492609429, 0.01817103353421865, 0.014429938011334955, -0.021258920867510342, 0.001729514100970193, -0.017102149099109024, -0.009382428903234777, -0.0038598598651064966, -0.03230405754678314, 0.01615202877339157, 0.027078401343272187, 0.012826611358670513, -0.0003414491428087694, 0.0005307307227209947, 0.007897867291285016, 0.00724466003301552, 0.009560575998645543, 0.0050475091081001785, -0.0015736351596551436, -0.014014260834494823, -0.029216170213491443, -0.01092637256988062, 0.004156772234062574, 0.0015068298824607918, -0.0009798105381583024, 0.01092637256988062, -0.0015959036629968034, 0.008907368740376048, 0.010095018216200357, -0.011935874950294164, -0.03657959528722165, 0.00733373404638216, -0.02090262667668881, 0.0015884807897444788, -0.013420435630921412, -0.01199525700499025, 0.01698338312707183, -0.002226842185094012, -0.00366686702319108, 0.004928744067385496, 0.020308800541792887, 0.013657965712350777, -0.00011644529095993104, 0.0017740509912381988, 0.008491691563535915, -0.016508324826858125, 0.01638955885482093, -0.006324232131629873, -0.0001595903633892975, 0.02897864013206208, 0.010688842488451257, -0.008610456604250598, -0.01567696861053284, 0.011104519665291388, 0.038479835938656566, -0.019596212160149815, 0.014904997242871173, 0.012114022045704931, -0.02304039368426304, -0.0001846423423371794, 0.00510689162845752, 0.01817103353421865, -0.013361053576225327, 0.03966748448315836, 0.013717348698369373, 0.01638955885482093, -0.031591469165140065, -0.027315931424701553, 0.004038007193347892, -0.013836112807761545, -0.020071272323008545, 0.002494063293871419, 0.01567696861053284, -0.010688842488451257, -0.025534458607948854, -0.0015884807897444788, -0.0002987679999576732, 0.011817109909579482, 0.007393116101078245, -0.02042756651383008, -0.0023159159656300234, 0.007274351526024818, -0.0028503581831848374, -0.012470316236526465, 0.0008499114786034183, 0.024465574172839226, 0.0228028654654787, -0.02149645094893971, 0.013776730753065458, -0.04655584753138481, 0.01092637256988062, 0.003830168604927826, 0.009204280876501497, -0.023634219819158964, -0.01199525700499025, 0.01983374224157918, 0.020071272323008545, -0.010273165311611125, -0.019002387887898917, -0.02600951690816256, 0.007779102250570334, -0.00991687112078959, 0.018764857806469554, 0.009382428903234777, 0.0038004773447491555, -0.011698344868864799, 0.008966751726394644, -0.02090262667668881, -0.011698344868864799, 0.015914498691962202, -0.012470316236526465, 0.02185274513976124, 0.016745853045642467, -0.027315931424701553, 0.01686461901767966, -0.020665096595259443, -0.01478623220215649, 0.002449526520018727, 0.014608085106745721, 0.006027319529843167, -0.001788896621327534, -0.025534458607948854, -0.023277923765692404, -0.00037114037388361146, 0.011876491964275567, 0.03444182641700239, -0.0024049897461660354, -0.007779102250570334, -0.013301671521529241, 0.01638955885482093, -0.003028505511426233, 0.008194779427410466, 0.0014771387386974353, -0.016745853045642467, -0.001254454520188034, -0.013420435630921412, -0.01615202877339157, -0.008372926522821234, -0.011757726923560885, 0.013123523494795963, -0.010748225474469854, -0.007007130417247411, -0.005700716366369675, -0.019239917969328283, 0.012589081277241149, -0.015558204501140668, -0.006828982856175388, -0.015795734582570033, 0.0029691229910688917, 0.006710217815460706, -0.03396676625414366, -0.018052267562181458, -0.005819480941423101, -0.0037114037970437715, 0.014726850147460405, -0.03135393722106568, -0.017695973371359926, -0.011698344868864799, -0.008372926522821234, -0.007600954689498311, -0.011876491964275567, -0.009263663862520094, 0.0021526141510626495, 0.050356325108964595, -0.00019763225411343352, -0.003726249310717793, -0.007897867291285016, 0.016627088936250298, -0.004483375863197322, 0.0003136136300470085, 0.0020041580829999244, 0.0035035652086237057, 0.013836112807761545, 0.01152019684213152, -0.006442996706683299, -0.029809994485742345, -0.002538600067724111, 0.002835512436680188, 0.014251789984601675, 0.0008721798655297641, 0.024346808200802032, 0.031116409002281336, -0.002494063293871419, 0.010154400270896443, 0.01686461901767966, 0.011817109909579482, -0.012529699222545064, 0.02648457707102129, 0.004839670519680113, 0.00614608457055785, -0.013064141440099878, 0.011757726923560885, -0.026959637233880018, -0.005374112737234927, -0.01567696861053284, 0.006888365376532729, -0.001380642201324413, -0.007363425073730202, 0.02054633062322225, -0.0018705475286112212, 0.012529699222545064, -0.03895489237622524, -0.008254162413429062, -0.006353923158977915, 0.004275537274777256, -0.01051069539304049, 0.01733967918053839, -0.02957246440431298, -0.011045137610595303, 0.0018185878815062046, 0.018764857806469554, -0.0028948949570375294, -0.005017818080752136, 0.0047802879993227715, -0.026722107152450655, -0.011876491964275567, -0.011876491964275567, 0.00144002460526644, 0.013836112807761545, 0.0228028654654787, -0.0012618772770250446, -0.007096203964952795, 0.031116409002281336, -0.001113421092547006, 0.001707245714043847, 0.0033254178803823102, -0.020071272323008545, -0.013776730753065458, -0.00620546709091519, -0.002776129916322847, -0.016627088936250298, -0.018883621915861723, 0.010273165311611125, -0.0020932316307053084, 0.011698344868864799, 0.00037670747061519796, -0.009619958984664142, -0.0017517826043118529, 0.0012841456639513906, -0.01318290648081456, -0.006858674349184687, 0.002494063293871419, -0.0026870563686174635, -0.018408561753002994, -0.002301070219125374, 0.004305228302125299, -0.009085516767109326, -0.002835512436680188, 0.002805821176501518, 0.01140143273273935, -0.004869361547028155, -0.0031621160658149364, -0.0004565026595858038, 0.014133025875209506, -0.05178150559754078, -0.008372926522821234, 0.01793350345278929, -0.018646091834432357, 0.03657959528722165, -0.01567696861053284, -0.014608085106745721, -0.01448932006603104, -0.010985755555899219, -0.00991687112078959, -0.01051069539304049, -0.026128282880199756, -0.002761284402648826, 0.021377684976902515, 0.006621144267755322, -0.010807607529165939, -0.004631831931260047, 0.014429938011334955, -0.003132424805636266, -0.012945376399385195, 0.009144898821805412, 0.018527327725040187, -0.0017443597310595282, -0.014251789984601675, -0.004305228302125299, -0.01140143273273935, -0.003102733545457595, 0.01466746809276432, 0.01745844328993056, 0.010807607529165939, -0.015439439460425987, 0.00843230950883983, 0.0005975359999153464, 0.03586700690557858, -0.005136582655805562, 0.01152019684213152, 0.0029245862172161997, -0.021615215058331878, 0.011638961882846202, -0.0038598598651064966, -0.004453684370188024, 0.015439439460425987, -0.004720905478965431, -0.0043349197951345975, -0.0012915685372037152, -0.0055819513256549925, 0.003399645914413673, -0.031116409002281336, 0.0122921691411157, 0.03444182641700239, -0.017102149099109024, 0.01947744618811262, -0.017814737480752095, -0.014608085106745721, -0.006057011022852466, -0.006680526788112664, -0.01496438022888977, 0.017220913208501196, -0.02957246440431298, -0.014251789984601675, -0.03372923803535932, 0.007541572634802225, 0.0363420670684373, -0.013420435630921412, 0.028622345941240544, -0.010095018216200357, 0.031828997383924404, 0.10308794730693278, -0.0012693000338620554, 0.0055819513256549925, 0.016745853045642467, 0.009976253175485676, -0.01686461901767966, 0.01241093418183038, -0.002776129916322847, 0.008847986685679963, 0.0005047508991684865, -0.037767243831723446, -0.001670131697028166, -0.009619958984664142, -0.007007130417247411, -0.0023307614793040446, -0.02482186836366076, 0.02494063247305293, -0.010570077447736574, 0.001113421092547006, -0.019002387887898917, -0.004097389713705233, -0.018527327725040187, -0.005433495257592268, 0.004097389713705233, -0.008551074549554512, 0.003948933645642508, -0.008372926522821234, 0.00650237922704064, 0.011104519665291388, 0.014608085106745721, 0.0033254178803823102, 0.010570077447736574, -0.009560575998645543, -0.004186463261410617, -0.0017220913441331823, -0.018527327725040187, 0.022565335384049336, -0.01615202877339157, -0.007214969005667478, -0.014608085106745721, -0.008016632331999698, 0.0034887194621190565, -0.00017258027516555162, -0.018883621915861723, 0.004928744067385496, 0.01638955885482093, -0.009026133781090729, -0.02636581296162912, -0.009085516767109326, 0.018289797643610824, -0.013301671521529241, -0.005433495257592268, 0.02232780530261997, 0.011876491964275567, -0.026603343043058482, -0.014014260834494823, 0.012589081277241149, 0.011579579828150117, -0.00576009842106576, -0.014311172970620272, -0.0021674598975672987, 0.01466746809276432, -0.011757726923560885, 0.009679341039360226, 0.01745844328993056, 0.004691214451617388, -0.014133025875209506, -0.011757726923560885, 0.009619958984664142, 0.004275537274777256, 0.012470316236526465, 0.002820666923006167, 0.0018779702854482317, -0.020308800541792887, -0.008610456604250598, -0.004602140438250748, -0.0012173403867570389, 0.011698344868864799, 0.00659145324040728, -0.01995250635097135, -0.05154397365346639, -0.00576009842106576, 0.000458358377898885, -0.023871749900588327, -0.03135393722106568, 0.022684099493441506, -0.005700716366369675, -0.00218230541124132, 0.0032363440998462987, -0.02114015489547315, 0.009679341039360226, -0.024346808200802032, 0.004394301849830682, 0.02102139078608098, -0.0023604527394827154, -0.008907368740376048, -0.007363425073730202, 0.0005641333613181706, 0.02149645094893971, 0.012767229303974427, 0.009026133781090729, 0.011223284706006071, -0.01241093418183038, -0.0026425193619341435, 0.007452498621435586, -0.026840871261842824, 0.02185274513976124, 0.003028505511426233, -0.010391930352325806, 0.013539200671636093, -0.02351545384712177, 0.02304039368426304, 0.013895495793780141, 0.002508909040376068, -0.0027909756628274962, -0.003073042285278925, 0.0010837299487836494, 0.0007163009242147148, -0.00724466003301552, -0.0013286825542193964, -0.016627088936250298, 0.024228044091409863, 0.002835512436680188, -0.0045130668905453645, 0.021377684976902515, -0.02600951690816256, -0.008254162413429062, -0.005492877777949609, 0.02102139078608098, -0.0031918073259936067, 0.005017818080752136, 0.008016632331999698, -0.0035926387563290896, -0.03444182641700239, 0.0013954878314137481, -0.01419240792990559, 0.01466746809276432, 0.021377684976902515, -0.005878863461780443, -0.028741110050632717, 0.0029542774773948705, 0.015201909378996622, -0.004216154754419915, -0.009323045917216178, -0.010332548297629722, -0.00620546709091519, 0.029097406104099274, 0.005017818080752136, -0.008847986685679963, 0.011282667692024668, -0.012589081277241149, -0.010688842488451257, 0.015914498691962202, 0.007600954689498311, -0.005938245982137783, -0.02149645094893971, -0.00576009842106576, -0.019239917969328283, -0.009501193943949458, 0.004038007193347892, 0.006324232131629873, -0.0038598598651064966, 0.00973872309405631, 0.027790991587560283, 0.011757726923560885, 0.006680526788112664, 0.006413305679335257, 0.017814737480752095, 0.003577793242655068, 0.0007831062014090665, -0.007719719730212993, 0.03800477577579783, 0.004483375863197322, 0.011045137610595303, -0.011045137610595303, -0.006324232131629873, 0.0053147302168775855, -0.020071272323008545, 0.018646091834432357, -0.010391930352325806, 0.00162559480676016, -0.011876491964275567, 0.023634219819158964, 0.010035636161504272, -0.004394301849830682, 0.020071272323008545, 0.02149645094893971, -0.000458358377898885, 0.007719719730212993, 0.0004676368821528053, 0.005789789914075059, -0.0009464079577687835, -0.013064141440099878, -0.009144898821805412, 0.00620546709091519, -0.016508324826858125, 0.00576009842106576, 0.012054639059686335, -0.023277923765692404, 0.0013361053110564072, -0.020665096595259443, -0.0034293371745923434, -0.014904997242871173, -0.005641333846012334, 0.005997628502495125, 0.008966751726394644, -0.00659145324040728, 0.007274351526024818, 0.013776730753065458, 0.033254177872500595, -0.019358682078720452, -0.002731593142470155, 0.0013138369241300612, 0.005908554954789741, 0.008372926522821234, -0.018764857806469554, -0.03301664965371625, 0.025059398445090128, 0.019239917969328283, -0.029097406104099274, 0.01983374224157918, 0.022446569412012143, 0.02114015489547315, 0.013954877848476226, -0.008847986685679963, -0.007897867291285016, -0.016033264663999396, 0.002731593142470155, 0.015320674419711303, 0.02185274513976124, -0.005374112737234927, 0.013895495793780141, -0.004305228302125299, -0.010629460433755171, 0.0034293371745923434, 0.012054639059686335, 0.0019447755626425835, 0.013717348698369373, 0.006353923158977915, -0.016745853045642467, -0.004186463261410617, 0.009501193943949458, -7.33002258065217e-05, 0.013895495793780141, 0.020071272323008545, -0.002241687931598661, 0.02042756651383008, 0.019358682078720452, -0.007660337209855652, 0.004750596971974729, 0.010035636161504272, 0.006769600335818047, 0.006264849611272532, 0.008254162413429062, -0.020190036432400714, -0.0008499114786034183, -0.023752983928551134, -0.03135393722106568, 0.001150535109562687, 0.008610456604250598, 0.008372926522821234, 0.01793350345278929, 0.015023762283585854, 0.0014548702353557753, 0.014133025875209506, -0.0228028654654787, 0.008372926522821234, -0.003637175763012409, 0.011638961882846202, -0.0047802879993227715, -0.003562947496150419, -0.002835512436680188, 0.011935874950294164, -0.007957249345981101, -0.06460811509356627, -0.03277911770964186, 0.006621144267755322, -0.003577793242655068, 0.004750596971974729, 0.004186463261410617, -0.02149645094893971, -0.01199525700499025, -0.004661522958608089, -0.0019893123364952752, -0.0003692846846743588, 0.006977438924238113, 0.009382428903234777, -0.012767229303974427, 0.04085513302766016, 0.005492877777949609, 0.027553461506130916, 0.0010837299487836494, 0.02945370029492081, 0.0012396088900986989, -0.0035332564688023765, 0.015439439460425987, 0.008966751726394644, 0.005403803764582969, 0.00872922164496528, 0.008313544468125149, -0.030403818757993244, 0.012470316236526465, -0.009560575998645543, -0.010866990515184536, -0.015201909378996622, 0.011817109909579482, 0.02933493618552864, 0.007007130417247411, 0.01733967918053839, -0.009976253175485676, 0.008610456604250598, -0.02410927811937267, -0.009976253175485676, 0.008551074549554512, -0.014370555025316359, -0.0008758913021559264, -0.030878878920851973, -0.0045130668905453645, -0.023634219819158964, -0.01199525700499025, 0.00843230950883983, 0.0029692025-12-30T11:04:34.358316791Z 1229910688917, -0.016745853045642467, -0.0008387772269325882, 0.027315931424701553, 0.0006346500169310277, -0.0015884807897444788, -0.008669839590269195, -0.009204280876501497, 0.018408561753002994, 0.000616093008423187, 0.033491706091284934, -0.004572449410902706, -0.013420435630921412, -0.005789789914075059, -0.003369954654235002, 0.005195965176162903, -0.004869361547028155, -0.015558204501140668, 0.005997628502495125, 0.03028505464860107, 0.011579579828150117, 0.0043349197951345975, -0.008907368740376048, -0.002286224705451353, 0.018646091834432357, 0.003399645914413673, -0.0013064141672930506, 0.02090262667668881, 0.01995250635097135, -0.002612828334586101, 0.023752983928551134, 0.001543944015891787, 0.008669839590269195, -0.006799291828827346, -0.013776730753065458, 0.017102149099109024, -0.0014103334615030835, 0.012945376399385195, 0.02885987602266991, -0.011223284706006071, 0.014370555025316359, -0.017695973371359926, 0.0012396088900986989, -0.0016404404368494953, 0.00991687112078959, 0.015795734582570033, 0.0029691229910688917, -0.00029691231074842057, 0.0004936167057053135, -0.04299290189787942, -0.013361053576225327, -0.009976253175485676, 0.02114015489547315, -0.005433495257592268, -0.0035926387563290896, 0.005433495257592268, 0.009085516767109326, -0.015320674419711303, -0.017102149099109024, 0.008372926522821234, -0.015439439460425987, 0.01496438022888977, 0.037054655450080375, 0.030878878920851973, 0.004423993342839981, -0.009323045917216178, -0.011282667692024668, 0.003562947496150419, 0.014608085106745721, 0.012351552127134296, 0.011817109909579482, -0.015320674419711303, 0.027078401343272187, -0.00991687112078959, -0.005433495257592268, -0.022446569412012143, -0.018764857806469554, 0.015795734582570033, 0.001417756218340094, 0.026959637233880018, 0.014133025875209506, -0.00037114037388361146, -0.006353923158977915, -0.00014474474785187646, 0.032541589490857524, -0.010035636161504272, 0.024465574172839226, -0.018052267562181458, -0.017814737480752095, 0.007304042553372861, 0.022090275221190607, 0.025771986826733196, 0.003637175763012409, -0.006442996706683299, 0.02102139078608098, 0.02114015489547315, -0.0037559405708964635, 0.012351552127134296, -0.01092637256988062, -0.0026870563686174635, 0.0301662905392089, 0.0013212596809670718, -0.026603343043058482, -0.008194779427410466, 0.012470316236526465, 0.013301671521529241, 0.019714976269541985, 0.012885993413366598, 0.0029245862172161997, -0.002508909040376068, -0.009026133781090729, -4.755235976719147e-05, 0.02529692852651949, -0.0017814737480752094, -0.009857488134770992, -0.020071272323008545, 0.011817109909579482, -0.017695973371359926, -0.006799291828827346, -0.0009018711257084347, 0.02957246440431298, -0.0053147302168775855, -0.005997628502495125, -0.02589075279877039, -0.003948933645642508, -0.003147270319310287, -0.006799291828827346, -0.0031769615794889575, -0.011876491964275567, -0.008551074549554512, -0.00973872309405631, -0.015558204501140668, -0.02838481585981118, 0.023634219819158964, 0.016270794745428762, -0.007155586485310136, -0.010451313338344405, 0.006175776063567148, -0.025178162554482297, 0.01199525700499025, -0.01140143273273935, 0.008669839590269195, -0.011045137610595303, -0.02850357996920335, -0.0012247632600093635, -0.01508314526960445, 0.017102149099109024, 0.019239917969328283, -0.0066508357607646205, 0.009144898821805412, -0.008966751726394644, 0.022446569412012143, -0.014548703052049637, 0.037767243831723446, -0.00991687112078959, 0.007096203964952795, -0.007155586485310136, -0.0491686765644628, 0.007541572634802225, -0.013123523494795963, 0.008551074549554512, -0.0239905140099805, -0.0034441826882663645, -0.006769600335818047, 0.01508314526960445, 0.004394301849830682, -0.018883621915861723, -0.0122921691411157, -0.004008316165999849, 0.022090275221190607, 0.011876491964275567, 0.028622345941240544, 0.018646091834432357, -0.011104519665291388, -0.007779102250570334, 0.030878878920851973, 0.0014251790915924187, 0.0028503581831848374, -0.005166274148814861, 0.019714976269541985, 0.0009575421512319565, 0.0009241395126347806, -0.00046392547463047144, 0.031828997383924404, 0.007779102250570334, -0.020308800541792887, 0.004691214451617388, 0.0014994071256237813, -0.023871749900588327, 0.0004861938906606459, -0.013539200671636093, -0.009501193943949458, -0.008551074549554512, 0.007660337209855652, -0.019714976269541985, -0.01496438022888977, 0.003681712536865101, -0.013361053576225327, 0.009204280876501497, 0.00325118961352032, 0.016508324826858125, 0.0026870563686174635, -0.005671024873360376, -0.00843230950883983, 0.010391930352325806, 0.03752971561293911, 0.0010540386886049788, 0.00614608457055785, -0.018408561753002994, -0.015023762283585854, -0.00436461082248264, -0.021971511111798438, -0.01698338312707183, 0.0019447755626425835, 0.023871749900588327, -0.01051069539304049, -0.014548703052049637, -0.00011969276890399456, 0.019358682078720452, -0.02054633062322225, 0.0010243474284263082, -0.022565335384049336, -0.021615215058331878, -0.0017592053611488634, 0.006353923158977915, 0.003830168604927826, 0.007779102250570334, -0.008669839590269195, -0.0023604527394827154, -0.028028521668989646, 0.03467935836107678, -0.009323045917216178, 0.002019003596673946, -0.014014260834494823, -0.009144898821805412, -0.0061163935432098065, -0.010035636161504272, -0.014133025875209506, -0.0010763070755313248, -0.0301662905392089, 0.01300475845408128, 0.002241687931598661, -0.0012247632600093635, -0.007096203964952795, -0.00011505351677703441, -0.02529692852651949, 0.002568291327902781, -0.011104519665291388, 0.01199525700499025, -0.015914498691962202, 0.013539200671636093, 0.020783860704651613, -0.006828982856175388, 0.0029394317308902213, 0.014311172970620272, 0.005344421244225629, 0.01496438022888977, -0.01199525700499025, 0.006472688199692597, -0.003399645914413673, 0.00991687112078959, -0.008847986685679963, 0.0399050127019427, 0.003132424805636266, 0.01615202877339157, 0.010273165311611125, 0.0026722106221128143, 0.0023901439996613857, 0.014370555025316359, -0.0040676986863571905, 0.002494063293871419, 0.00218230541124132, 0.002494063293871419, 0.02042756651383008, -0.0363420670684373, 0.009085516767109326, -0.01615202877339157, 0.011460814787435436, 0.021615215058331878, -0.011045137610595303, -0.007600954689498311, -0.001915084302463913, 0.013598583657654692, 0.01745844328993056, 0.02149645094893971, -0.008669839590269195, 0.01152019684213152, 0.003147270319310287, 0.011104519665291388, 0.018883621915861723, 0.024703104254268592, 0.0009130053191716076, -0.023396689737729598, 0.01478623220215649, 0.004483375863197322, 0.04346796206073814, -0.017695973371359926, -0.008254162413429062, 0.008254162413429062, 0.005789789914075059, 0.02114015489547315, -0.024465574172839226, 0.009085516767109326, -0.005997628502495125, -0.02114015489547315, -0.02636581296162912, -0.009501193943949458, -0.019596212160149815, 0.005730407393717718, 0.003043351025100254, 0.028028521668989646, -0.018883621915861723, 0.030403818757993244, 0.012945376399385195, -0.023159159656300235, -0.00036186186962969117, -0.028028521668989646, -0.004423993342839981, 0.001974466822821254, -0.013717348698369373, -0.019596212160149815, 0.009501193943949458, -0.018646091834432357, 0.011935874950294164, -0.0027909756628274962, -0.01508314526960445, -0.007779102250570334, -0.015914498691962202, 0.041567721409303225, -0.0061163935432098065, 0.005671024873360376, 0.003948933645642508, 0.03895489237622524, -0.031116409002281336, -0.00733373404638216, 0.01496438022888977, -0.006621144267755322, 0.006353923158977915, -0.013064141440099878, -0.028266051750419012, -0.019121151997291086, 0.0020932316307053084, -0.012054639059686335, -0.012529699222545064, -0.018289797643610824, -0.01300475845408128, 0.011282667692024668, 0.022565335384049336, 0.007719719730212993, 0.0030136597649215837, 0.0014697158654451107, -0.02232780530261997, 0.0016330176800124848, -0.02351545384712177, -0.024228044091409863, -0.003948933645642508, -0.009323045917216178, -0.015142527324300535, 0.012589081277241149, -0.03942995253908397, -0.0011950719998306929, 0.0017443597310595282, 0.010570077447736574, -0.0023307614793040446, 0.006561761747397981, -0.023277923765692404, 0.0043349197951345975, 0.020308800541792887, -0.0010985754624576705, -0.006235158118263233, 0.011638961882846202, 0.0050475091081001785, 0.002301070219125374, -0.014845615188175086, -0.004869361547028155, -0.007304042553372861, 0.0363420670684373, 0.01995250635097135, 0.008491691563535915, 0.002612828334586101, -0.01270784631795583, 0.013064141440099878, -0.015439439460425987, -1.7034762998628206e-06, -0.017814737480752095, 0.008610456604250598, -0.03539194674271985, -0.03028505464860107, 0.00218230541124132, -0.03895489237622524, -0.007541572634802225, -0.0009798105381583024, 0.017220913208501196, 0.013657965712350777, -0.001707245714043847, -0.004750596971974729, -0.002805821176501518, -0.00325118961352032, 0.019358682078720452, 0.036104535124362916, 0.0018408562684325506, 0.005671024873360376, -0.004869361547028155, 0.0013212596809670718, -0.01757720739932273, 0.005967937475147082, -0.012470316236526465, -0.006799291828827346, -0.015914498691962202, -0.007185277512658179, 0.010332548297629722, -0.005938245982137783, 0.00255344581422876, 0.003087888031783574, -0.020665096595259443, -0.02054633062322225, -0.011282667692024668, -0.004186463261410617, -0.015201909378996622, 0.013776730753065458, -0.019714976269541985, 0.009323045917216178, 0.0012693000338620554, 0.014726850147460405, 0.0003581504621073574, -0.024465574172839226, 0.011282667692024668, -0.01995250635097135, 0.015201909378996622, 0.02945370029492081, -0.012114022045704931, 0.007422807594087543, -0.008551074549554512, -0.014548703052049637, 0.023396689737729598, 0.0022119966714199907, 0.008194779427410466, -0.01615202877339157, -0.0042458457817679575, -0.012232787086419613, 0.016270794745428762, 0.03396676625414366, 0.0031769615794889575, -0.0010391930585156436, 0.02102139078608098, 0.0018853931587005564, -0.013301671521529241, 0.02636581296162912, -0.0010540386886049788, -0.007363425073730202, -0.00872922164496528, 0.021615215058331878, -0.002137768637388628, -0.009679341039360226, 0.00029691231074842057, -0.001684977327117501, 0.02589075279877039, -0.012054639059686335, -0.004631831931260047, -0.007482190114444885, 0.0009352737643056106, -0.030641348839422607, -0.00783848430526642, -0.016270794745428762, 0.000616093008423187, -0.05795728026412416, 0.007482190114444885, 0.003830168604927826, -0.007897867291285016, 0.03135393722106568, -0.016033264663999396, 0.026722107152450655, 0.0029542774773948705, -0.00991687112078959, -0.007096203964952795, -0.012648464263259745, -0.009085516767109326, 0.007036821444595454, -0.011163902651309985, -0.026603343043058482, -0.023159159656300235, -0.007452498621435586, 0.017220913208501196, 0.007897867291285016, -0.0014697158654451107, -0.006175776063567148, -0.010273165311611125, -0.0014548702353557753, -0.004572449410902706, 0.01745844328993056, 0.001974466822821254, -0.013361053576225327, 0.003577793242655068, 0.007452498621435586, -0.009263663862520094, 0.005730407393717718, 0.0013435281843087318, -0.0024049897461660354, 0.037767243831723446, 0.01793350345278929, 0.014726850147460405, -0.008907368740376048, 0.013954877848476226, 0.00288004921053288, -0.01733967918053839, -0.01318290648081456, -0.009204280876501497, 0.0122921691411157, -0.020190036432400714, 0.008194779427410466, -0.0008684684871112588, -0.005225656669172202, 0.008491691563535915, -0.02636581296162912, -0.010629460433755171, 0.0021080773772099576, -0.008551074549554512, -0.011342049746720753, -0.004869361547028155, 0.008194779427410466, 0.013657965712350777, -0.02232780530261997, -0.018646091834432357, 0.02232780530261997, -0.01318290648081456, 0.013717348698369373, -0.03206652932799879, -0.014251789984601675, 0.008669839590269195, -0.006710217815460706, 0.01567696861053284, 0.0033848001679090234, 0.00650237922704064, -0.010451313338344405, -0.022921629574870872, 0.01995250635097135, 0.00724466003301552, 0.014726850147460405, -0.02090262667668881, 0.008847986685679963, -0.04513067076809867, -0.010273165311611125, -0.006324232131629873, 0.004691214451617388, 0.0016404404368494953, -0.025653222717341027, -0.0040676986863571905, -0.00028021099144983264, 0.0024792177801973977, -0.008966751726394644, 0.015914498691962202, -0.025653222717341027, 0.015795734582570033, -0.015201909378996622, 0.0006828982856175388, 0.0034441826882663645, 0.009323045917216178, -0.012589081277241149, 0.004899053040037454, 0.00036742896636127767, 0.033491706091284934, -0.015142527324300535, -0.009026133781090729, -0.00029691231074842057, -0.023159159656300235, -0.013598583657654692, 0.017220913208501196, -0.00872922164496528, -0.001915084302463913, -0.0013954878314137481, 0.003459028201940386, 0.006828982856175388, 0.01567696861053284, 0.006532070720049939, -0.011223284706006071, 0.00546318628494031, 0.008907368740376048, 0.010095018216200357, -0.002449526520018727, -0.015795734582570033, -0.00218230541124132, 0.009798106080074908, -0.00164786331010182, -0.004809979492332071, -0.01733967918053839, 0.009560575998645543, 0.013895495793780141, -0.005997628502495125, -0.00023938553780798911, 0.0053147302168775855, -0.005255347696520245, -0.002019003596673946, -0.00991687112078959, -0.006175776063567148, 0.014429938011334955, 0.008135397372714381, 0.012232787086419613, 0.015201909378996622, 0.004542758383554663, -0.010807607529165939, 0.000556710546273503, 0.023277923765692404, -0.004216154754419915, 0.008966751726394644, -0.01567696861053284, -0.004008316165999849, -0.01757720739932273, 0.029691230376350172, 0.004899053040037454, -0.017695973371359926, -0.03895489237622524, -0.02185274513976124, -0.011342049746720753, -0.02885987602266991, 0.010688842488451257, 0.00991687112078959, 0.011935874950294164, 0.0019299299325532483, 0.0015810580329074682, -0.01686461901767966, 0.01051069539304049, 0.007155586485310136, -0.006264849611272532, 0.004156772234062574, -0.009263663862520094, -0.004572449410902706, -0.0030136597649215837, 0.005374112737234927, 0.030047524567171708, -0.038479835938656566, -0.006739909308470004, -0.004809979492332071, 0.023634219819158964, -0.011757726923560885, 0.007660337209855652, -0.022921629574870872, -0.00255344581422876, 0.001113421092547006, -0.02838481585981118, -0.002731593142470155, -0.0036965580505391223, -0.005967937475147082, -0.017102149099109024, -0.00325118961352032, 0.013301671521529241, -0.015439439460425987, 0.019121151997291086, 0.008372926522821234, -0.008313544468125149, 0.014548703052049637, -0.005344421244225629, 0.003889551125285167, -0.014370555025316359, 0.0399050127019427, 0.018052267562181458, -0.018289797643610824, -0.024346808200802032, -0.0122921691411157, -0.007511881141792927, -0.001684977327117501, 0.009679341039360226, -3.4098522050645624e-05, -0.024228044091409863, -0.05463186284940311, 0.0014845614955344459, -0.0009946561682476376, 0.011638961882846202, 0.01995250635097135, 0.008907368740376048, -0.023871749900588327, 0.023396689737729598, 0.011638961882846202, 0.0009798105381583024, 0.003073042285278925, -0.0066508357607646205, 0.009679341039360226, 0.004097389713705233, 0.0026722106221128143, -0.01567696861053284, -0.0005233079076763271, 0.013420435630921412, -0.003355108907730353, -0.008194779427410466, -0.013895495793780141, -0.02541569263591166, 0.013895495793780141, 0.003399645914413673, 0.031591469165140065, -0.018764857806469554, -0.0032066528396676283, 0.009026133781090729, -0.019714976269541985, -0.0007905290164537341, 0.0024792177801973977, 0.001543944015891787, 0.009144898821805412, 0.026959637233880018, -0.003310572133877661, -0.009204280876501497, -0.004720905478965431, 0.014073642889190907, 0.0003099022225246747, 0.0004379456510779632, -0.04608078736852608, -0.007482190114444885, 0.013954877848476226, 0.005878863461780443, -0.003102733545457595, 0.02232780530261997, 0.023634219819158964, 0.006947747896890071, 0.0023307614793040446, -0.006175776063567148, 0.023277923765692404, 0.01152019684213152, -0.004988126587742838, -0.007214969005667478, 0.0043349197951345975, 0.000987233411410627, -0.022209039330582776, 0.010095018216200357, -0.009501193943949458, 0.01021378325691504, -0.016270794745428762, -0.01638955885482093, 0.012648464263259745, -0.010807607529165939, 0.018408561753002994, -0.007541572634802025-12-30T11:04:34.358316791Z 2225, 0.009798106080074908, 0.013420435630921412, -0.009976253175485676, -0.00872922164496528, 0.0037707863174011127, 0.0018631246553588966, 0.01508314526960445, 0.01092637256988062, -0.022446569412012143, -0.011342049746720753, 0.0019893123364952752, -0.00028392239897216643, 0.016508324826858125, -0.007066512937604753, -0.014845615188175086, -0.01021378325691504, 0.008788603699661364, -0.02185274513976124, -0.055581983175120565, -0.00366686702319108, -0.020665096595259443, -0.0017517826043118529, 0.014726850147460405, 0.0036520212766864304, -0.001974466822821254, 0.00872922164496528, 0.009026133781090729, 0.02232780530261997, -0.02149645094893971, 0.015914498691962202, 0.0007831062014090665, -0.012114022045704931, 0.005789789914075059, -0.005997628502495125, 0.008372926522821234, -0.016745853045642467, 0.00733373404638216, 0.013064141440099878, -0.004691214451617388, -0.006413305679335257, 0.015320674419711303, 0.00733373404638216, 0.002776129916322847, 0.00023938553780798911, -0.0021674598975672987, -0.0035035652086237057, -0.022684099493441506, -0.018764857806469554, -0.02945370029492081, -0.00109115270562066, -0.004839670519680113, 0.005700716366369675, 0.008491691563535915, 0.0005307307227209947, -0.005166274148814861, -0.011223284706006071, 0.023634219819158964, 0.010035636161504272, 0.012648464263259745, 0.023396689737729598, 0.00546318628494031, 0.025771986826733196, 0.014073642889190907, 0.004156772234062574, 0.004809979492332071, -0.012826611358670513, -0.008372926522821234, -0.002464372033692748, 0.015320674419711303, 0.03206652932799879, 0.0034738739484450353, -0.03895489237622524, 0.009857488134770992, -0.022921629574870872, -0.004097389713705233, 0.0122921691411157, -0.012589081277241149, -0.001358373814398067, 0.016033264663999396, 0.0239905140099805, 0.025771986826733196, 0.005433495257592268, 0.007897867291285016, -0.006442996706683299, 0.00783848430526642, -0.0009278509492609429, -0.02173398103036907, -0.013064141440099878, -0.023159159656300235, -0.02185274513976124, 0.004216154754419915, -0.018764857806469554, 9.046546740742279e-06, -0.0005826903698260111, -0.0013954878314137481, 0.016270794745428762, 0.002345607225808694, -0.0039786246729905505, -0.006264849611272532, 0.00724466003301552, -0.05510692301226183, -0.015795734582570033, -0.0013732194444874024, 0.00019020943906876588, 0.0034887194621190565, 0.027197167315309384, -0.0005381535377656624, 0.00659145324040728, -0.010688842488451257, 0.005878863461780443, -0.007125894992300838, 0.022684099493441506, 0.018764857806469554, -0.02304039368426304, -0.0043349197951345975, 0.009382428903234777, 0.006027319529843167, -0.0245843382822314, -0.016508324826858125, 0.0025831370744074304, -0.009263663862520094, -0.00164786331010182, -0.00843230950883983, 0.016033264663999396, -0.03657959528722165, -0.013420435630921412, -0.00733373404638216, 0.005492877777949609, -0.005730407393717718, 0.016508324826858125, -0.03230405754678314, -0.01270784631795583, 0.011223284706006071, 0.004423993342839981, 0.019121151997291086, -0.007304042553372861, -0.02494063247305293, -0.0024346807735140777, 0.010748225474469854, 0.0012841456639513906, 0.003948933645642508, 0.022446569412012143, -0.00325118961352032, -0.006294540638620574, 0.0029542774773948705, 0.010391930352325806, -0.007422807594087543, 0.026128282880199756, 0.01817103353421865, -0.012589081277241149, -0.008076014386695784, -0.0035926387563290896, -0.00650237922704064, 0.001232186016846374, -0.013895495793780141, 0.010866990515184536, 0.012767229303974427, 0.010332548297629722, -0.00650237922704064, 0.0029691229910688917, -0.0035035652086237057, 0.0017814737480752094, -0.0018482790252695612, -0.00436461082248264, 0.01478623220215649, 0.015439439460425987, 0.017814737480752095, -0.007066512937604753, -0.02149645094893971, 0.027315931424701553, 0.03135393722106568, -0.0032066528396676283, 0.015320674419711303, -0.025059398445090128, -0.02042756651383008, -0.03420429819821805, 0.012648464263259745, -0.004423993342839981, 0.015439439460425987, 0.00038969738239145205, -0.0399050127019427, 0.008847986685679963, 0.0014474474785187647, -0.01448932006603104, 0.047743499801176655, 0.01241093418183038, 0.004899053040037454, -0.004275537274777256, -0.0010391930585156436, -0.007393116101078245, -0.001684977327117501, -0.05154397365346639, 0.007511881141792927, 0.0013064141672930506, -0.00872922164496528, 0.02042756651383008, -0.005700716366369675, 0.009085516767109326, 0.018052267562181458, -0.022684099493441506, 0.008907368740376048, -0.006947747896890071, 0.011163902651309985, 0.0001243320210309547, 0.0034293371745923434, 0.005611642353003036, 0.015558204501140668, 0.00366686702319108, -0.0029542774773948705, -0.01638955885482093, -0.005552259832645694, 0.020308800541792887, 0.018527327725040187, -0.020665096595259443, -0.0033254178803823102, 0.0033254178803823102, -0.013598583657654692, 0.001729514100970193, -0.021971511111798438, -0.01757720739932273, -0.005967937475147082, -0.0017740509912381988, -0.01686461901767966, -0.030641348839422607, -0.009619958984664142, -0.005077200135448222, 0.013598583657654692, -0.012767229303974427, 0.01051069539304049, 0.004928744067385496, 0.021377684976902515, 0.015558204501140668, 0.007422807594087543, -0.028266051750419012, 0.008372926522821234, -0.02600951690816256, 0.00391924215263321, 0.028741110050632717, 0.005166274148814861, 0.029809994485742345, 0.020190036432400714, 0.007274351526024818, -0.012054639059686335, -0.011817109909579482, -0.0002282513297929019, -0.005017818080752136, -0.005908554954789741, -0.001915084302463913, 0.01686461901767966, 0.01300475845408128, 0.007036821444595454, 0.013123523494795963, 0.012173404100401016, -0.015439439460425987, 0.00127672290711438, -0.007125894992300838, 0.006413305679335257, -0.006977438924238113, -0.02351545384712177, -0.00576009842106576, -0.009441810957930862, -0.011163902651309985, -0.0016552860669388305, -0.00733373404638216, 0.013657965712350777, 0.010629460433755171, -0.002805821176501518, -0.03586700690557858, 0.005195965176162903, -0.003607484502833739, 0.0016552860669388305, 0.028741110050632717, 0.01995250635097135, -0.009441810957930862, 0.008788603699661364, -0.013954877848476226, 0.009560575998645543, 0.016508324826858125, 0.006858674349184687, 0.01817103353421865, 0.01199525700499025, -0.010985755555899219, -0.04655584753138481, 0.0122921691411157, 0.01745844328993056, 0.010807607529165939, 0.010273165311611125, 0.009976253175485676, -0.005552259832645694, 0.004572449410902706, 0.0033848001679090234, -0.013479818616940009, 0.0008424886635587506, 0.002761284402648826, -0.00991687112078959, 0.010391930352325806, -0.00018557018694180573, 0.004928744067385496, -0.022565335384049336, 0.0055819513256549925, -0.016508324826858125, 0.005878863461780443, 0.025059398445090128, -0.0027464388889748047, -0.019121151997291086, -0.005938245982137783, -0.005225656669172202, 0.012470316236526465, 0.045843259149741744, -0.00783848430526642, -0.014608085106745721, 0.006947747896890071, -0.00023752983404682222, 0.0008610456720665911, 0.012826611358670513, 0.01615202877339157, -0.013242288535510644, 0.004839670519680113, 0.0009278509492609429, -0.013776730753065458, 0.025771986826733196, 0.001543944015891787, 0.014133025875209506, -0.005433495257592268, -0.013717348698369373, -0.016033264663999396, -0.017814737480752095, 0.009501193943949458, 0.004572449410902706, -0.027790991587560283, -0.0038598598651064966, 0.0042458457817679575, -0.0061163935432098065, -0.001172803612904347, -0.0037707863174011127, -0.00036000615131661, 0.0007979518314984017, 0.004839670519680113, 0.02482186836366076, 0.002508909040376068, 0.005611642353003036, 0.032541589490857524, 0.006175776063567148, -0.0037410950572224423, 0.010451313338344405, 0.011579579828150117, -0.023277923765692404, 0.02589075279877039, -0.019121151997291086, -0.002716747628796134, 0.003562947496150419, -0.0030581967716049032, -0.020308800541792887, 0.007541572634802225, -0.036104535124362916, -0.01757720739932273, 0.037767243831723446, -0.016508324826858125, -0.024228044091409863, 0.004156772234062574, 0.006472688199692597, 0.028028521668989646, -0.008491691563535915, 0.012589081277241149, -0.0005641333613181706, 4.0129551998480956e-05, 0.015914498691962202, -0.003132424805636266, 0.004631831931260047, 0.011935874950294164, 0.006858674349184687, 0.0014251790915924187, 0.011757726923560885, 0.02173398103036907, 0.009501193943949458, -0.0031769615794889575, -0.010332548297629722, 0.031116409002281336, -0.02054633062322225, -0.022565335384049336, 0.006175776063567148, 0.022921629574870872, -0.00733373404638216, 0.01793350345278929, -0.03681712350600599, 0.00650237922704064, 0.006057011022852466, 0.018289797643610824, 0.03919242432029963, 0.017102149099109024, 0.013895495793780141, -0.012351552127134296, 0.03919242432029963, -0.008372926522821234, 0.014251789984601675, 0.029809994485742345, -0.011223284706006071, -0.0030581967716049032, -0.025534458607948854, 0.0038004773447491555, -0.006977438924238113, -0.01140143273273935, -0.0021674598975672987, 0.007511881141792927, 0.041567721409303225, 0.010985755555899219, 0.006828982856175388, -0.00028577808818141913, -0.005374112737234927, -0.0020486948568526164, 0.07790978475245049, 0.007363425073730202, 0.01318290648081456, -0.0034293371745923434, -0.00973872309405631, -0.0005158851508393164, 0.010629460433755171, -0.0055819513256549925, -0.007957249345981101, -0.02992876045777954, 0.013361053576225327, 0.02042756651383008, -0.01508314526960445, 0.0022565334452726822, -0.02351545384712177, -0.0031621160658149364, -0.009679341039360226, -0.015201909378996622, 0.020071272323008545, -0.003562947496150419, -0.019596212160149815, 0.000458358377898885, 0.020190036432400714, 0.014608085106745721, -0.0026276738482601224, 0.025534458607948854, 0.0021229228908839787, -0.0301662905392089, -0.004691214451617388, 0.007482190114444885, 0.0008981596890822724, 0.010748225474469854, -0.005611642353003036, -0.0005307307227209947, 0.010332548297629722, -0.010154400270896443, -0.002761284402648826, 0.008610456604250598, -0.0027019018822914847, -0.005433495257592268, -0.005700716366369675, 0.00724466003301552, 0.010332548297629722, 0.014608085106745721, -0.0012915685372037152, -0.012054639059686335, -0.0122921691411157, 0.008788603699661364, -0.0016330176800124848, 0.015142527324300535, -0.0008424886635587506, -0.0026276738482601224, 0.021377684976902515, -0.023396689737729598, 0.0007905290164537341, 0.00366686702319108, -0.008788603699661364, 0.009263663862520094, -0.01615202877339157, -0.0020041580829999244, 0.01496438022888977, 0.019121151997291086, 0.0019002386723745777, -0.0016998229572068365, -0.020783860704651613, -0.008847986685679963, 0.009323045917216178, 0.01698338312707183, -0.01270784631795583, -0.018646091834432357, -0.005403803764582969, 0.014904997242871173, -0.01733967918053839, -0.024703104254268592, 0.007719719730212993, 0.009144898821805412, 0.0042458457817679575, 0.0016404404368494953, 0.02232780530261997, -0.022684099493441506, 0.004453684370188024, 0.013598583657654692, 0.0026573651084387927, 0.002137768637388628, 0.0040676986863571905, 0.030878878920851973, -0.0037114037970437715, -0.00325118961352032, 0.011757726923560885, -0.01021378325691504, -0.00546318628494031, -0.008551074549554512, -0.012529699222545064, -0.015795734582570033, -0.004305228302125299, -0.010985755555899219, -0.027909755696952452, 0.004691214451617388, 0.005789789914075059, 0.026722107152450655, 0.004869361547028155, 0.0032214983533416495, -0.0003562947728981047, -0.012054639059686335, -0.007214969005667478, 0.021258920867510342, 0.01419240792990559, 0.024346808200802032, -0.010570077447736574, 0.0013212596809670718, -0.017695973371359926, -0.0034738739484450353, 0.020071272323008545, -0.01733967918053839, 0.011876491964275567, -0.041567721409303225, 0.010332548297629722, 0.016745853045642467, 0.012589081277241149, 0.01817103353421865, -0.013301671521529241, -0.027197167315309384, 0.005195965176162903, 0.014073642889190907, -0.004928744067385496, 0.01638955885482093, -0.0020338493431785953, 0.03206652932799879, 0.00991687112078959, -0.01241093418183038, 0.01092637256988062, 0.014014260834494823, -0.013361053576225327, -0.006799291828827346, -0.02304039368426304, 0.002568291327902781, 0.006799291828827346, -0.00011969276890399456, -0.04180525335337762, -0.0009798105381583024, -0.0066508357607646205, 0.0017220913441331823, 0.011638961882846202, -0.002137768637388628, 0.0024346807735140777, 0.013123523494795963, 0.009085516767109326, -0.0002291791889494425, 0.0015290983858024516, -0.012648464263259745, -0.04726843963831793, 0.0034293371745923434, -0.009323045917216178, -0.017102149099109024, 0.011817109909579482, -0.008788603699661364, -0.008254162413429062, -0.015142527324300535, 0.010273165311611125, 0.0002783552731367515, 0.009144898821805412, 0.01318290648081456, 0.011460814787435436, -0.009323045917216178, 0.009323045917216178, -0.016033264663999396, -0.007036821444595454, -0.0010243474284263082, -0.03942995253908397, -0.01615202877339157, -0.007304042553372861, -0.00030619081500234086, 0.0006903211006622065, -0.013895495793780141, 0.007274351526024818, -0.014548703052049637, 0.010095018216200357, 0.00329572662020364, 0.020190036432400714, 0.0023307614793040446, -0.014311172970620272, -0.002197150924915341, 0.012826611358670513, 0.031828997383924404, -0.015914498691962202, 0.021377684976902515, -0.006947747896890071, 0.00973872309405631, -0.006828982856175388, 0.017814737480752095, -0.007036821444595454, 0.01496438022888977, -0.013064141440099878, 0.00510689162845752, -0.028147285778381815, 0.019121151997291086, 0.006086702050200508, -0.008847986685679963, -0.019239917969328283, -0.009976253175485676, -0.00391924215263321, -0.018527327725040187, 0.0047802879993227715, -0.013776730753065458, -0.01021378325691504, -0.018052267562181458, 0.02185274513976124, -0.025178162554482297, 0.026128282880199756, 0.031591469165140065, 0.0034441826882663645, -0.014014260834494823, -0.014073642889190907, -0.01757720739932273, -0.0043349197951345975, -0.00973872309405631, -0.0009649649662766242, 0.008194779427410466, -0.00391924215263321, 0.01478623220215649, -0.0058491724344323995, 0.00872922164496528, 0.0020635406033572656, -0.0005084623357946488, -0.001729514100970193, -0.012114022045704931, 0.005255347696520245, -0.007779102250570334, -0.009026133781090729, -0.008907368740376048, 0.009679341039360226, -0.0032363440998462987, 0.011757726923560885, 0.002835512436680188, 0.009204280876501497, -0.010451313338344405, 0.0011950719998306929, 0.0018557018985218858, 0.002731593142470155, 7.747555563116868e-05, 0.01947744618811262, 0.007482190114444885, -0.006086702050200508, 0.02957246440431298, -0.008313544468125149, 0.008194779427410466, -0.0018705475286112212, 0.013361053576225327, -0.027434697396738747, -0.0047802879993227715, 0.01686461901767966, 0.022684099493441506, -0.012232787086419613, -0.015914498691962202, -0.02090262667668881, -0.0012247632600093635, 0.012470316236526465, -0.028741110050632717, 0.026840871261842824, 0.01638955885482093, -0.004572449410902706, 0.01757720739932273, -0.008847986685679963, 0.01496438022888977, -0.00659145324040728, -0.019358682078720452, 0.004186463261410617, 0.0029988142512475625, 0.007096203964952795, -0.005136582655805562, 0.015201909378996622, -0.008966751726394644, -0.02541569263591166, 0.026603343043058482, 0.011698344868864799, -0.013301671521529241, 0.010985755555899219, -0.005374112737234927, 0.0016107491766708247, -0.011223284706006071, 0.027434697396738747, 0.02885987602266991, -0.009798106080074908, 0.009679341039360226, -0.003414491428087694, -0.01241093418183038, -0.010035636161504272, 0.023871749900588327, 0.008966751726394644, 0.007274351526024818, 0.004097389713705233, 0.014073642889190907, -0.01419240792990559, 0.00724466003301552, 0.014726850147460405, 0.0016998229572068365, 0.02992876045777954, -0.013598583657654692, 0.01140143273273935, 0.009085516767109326, -0.009323045917216178, -0.00028392239897216643, -0.033491706091284934, -0.005700716366369675, 0.013064141440099878, 0.0066508357607646205, 0.019596212160149815, -0.018408561753002994, -0.0011431123527256765, 0.008135397372714381, -0.00013546624359795617, 0.008847986685679963, 0.014370555025316359, 0.02648457707102129, 0.005938245982137783, 0.0245843382822314, -0.026603343043058482, -0.010332548297629722, 0.004305228302125299, 2025-12-30T11:04:34.358316791Z -0.000534442159347157, 0.020308800541792887, 0.0066508357607646205, 0.0031918073259936067, -0.019239917969328283, 0.008907368740376048, -0.028147285778381815, -0.007897867291285016, 0.005433495257592268, 0.016627088936250298, -0.016508324826858125, 0.019121151997291086, -0.01021378325691504, -0.014904997242871173, 0.0020635406033572656, -0.02933493618552864, 0.008076014386695784, -0.0010466158153526542, 0.022090275221190607, 0.014548703052049637, 0.007719719730212993, 0.003132424805636266, 0.005789789914075059, -0.018527327725040187, -0.01478623220215649, -0.006918056403880772, -0.006324232131629873, 0.005522568805297652, 0.004483375863197322, -0.026959637233880018, 0.00733373404638216, -0.009026133781090729, -0.01733967918053839, -0.010154400270896443, -3.798389770786296e-06, -0.01021378325691504, 0.01745844328993056, -0.006888365376532729, 0.0007756833863643988, 0.008610456604250598, 0.010095018216200357, 0.02173398103036907, -0.01567696861053284, 0.02054633062322225, 0.013598583657654692, -0.00046392547463047144, 0.0021229228908839787, -0.019002387887898917, -0.027790991587560283, -0.009798106080074908, 0.03539194674271985, 0.0603325810784178, -0.01793350345278929, 0.027434697396738747, -0.012885993413366598, -0.019002387887898917, 0.004720905478965431, 0.004691214451617388, 0.04038007286480143, 0.002464372033692748, -0.09691217636563945, 0.01478623220215649, 0.0020041580829999244, 0.02494063247305293, -0.02648457707102129, -0.0012470316469357094, -0.032541589490857524, -0.02304039368426304, -0.012054639059686335, -0.004602140438250748, -0.006888365376532729, -0.007897867291285016, -0.011698344868864799, 0.003785631831075134, 0.02351545384712177, -0.03135393722106568, -0.01270784631795583, -0.010095018216200357, 0.010451313338344405, 0.019714976269541985, 0.01567696861053284, -0.02992876045777954, 0.00659145324040728, 0.0014697158654451107, 0.025059398445090128, -0.0034293371745923434, -0.006710217815460706, -0.028741110050632717, -0.008966751726394644, 0.008076014386695784, -0.023159159656300235, -0.008788603699661364, 0.03467935836107678, 0.003414491428087694, -0.006057011022852466, 0.009560575998645543, -0.002137768637388628, -0.017102149099109024, -0.010748225474469854, -0.01638955885482093, 0.0022565334452726822, 0.004097389713705233, -0.01152019684213152, 0.04085513302766016, 0.013895495793780141, -0.00391924215263321, 0.013836112807761545, -0.012945376399385195, 0.0063836146519872135, 0.02767222561552309, 0.0018185878815062046, 0.015320674419711303, 0.02636581296162912, 0.003562947496150419, 0.008491691563535915, 0.020071272323008545, -0.007779102250570334, 0.0239905140099805, 0.006235158118263233, 0.02838481585981118, -0.018646091834432357, 0.005967937475147082, -0.013301671521529241, -0.0023159159656300234, -0.015439439460425987, 0.007897867291285016, 0.05439433463061877, -0.01300475845408128, 0.010629460433755171, 0.00391924215263321, 0.021971511111798438, 0.010629460433755171, -0.015439439460425987, -0.009026133781090729, 0.004899053040037454, -0.012885993413366598, -0.030641348839422607, 0.0029988142512475625, -0.004631831931260047, -0.005255347696520245, -0.01947744618811262, 0.025534458607948854, 0.01615202877339157, 0.005967937475147082, -0.013539200671636093, -0.02482186836366076, -0.01757720739932273, 0.015558204501140668, -0.04133019319051889, -0.002835512436680188, -0.004127081206714531, -0.011282667692024668, 0.004453684370188024, 0.0063836146519872135, 0.017695973371359926, 0.028622345941240544, 0.01152019684213152, -0.0004175329242570415, -0.00329572662020364, 0.01757720739932273, 0.018527327725040187, -0.0019299299325532483, 0.006710217815460706, -0.012529699222545064, 0.005522568805297652, 0.00391924215263321, 0.010332548297629722, 0.03206652932799879, 0.01615202877339157, 0.01793350345278929, -0.00576009842106576, -0.016033264663999396, -0.00546318628494031, 0.004542758383554663, -0.03277911770964186, -0.028028521668989646, -0.027197167315309384, -0.012232787086419613, -0.0010614614454419894, -0.013242288535510644, 0.0018557018985218858, -0.010451313338344405, 0.0050475091081001785, 0.023871749900588327, 0.018052267562181458, 0.01318290648081456, 0.005017818080752136, 0.02589075279877039, -0.0031769615794889575, -0.023159159656300235, -0.012945376399385195, 0.009501193943949458, 0.004958435560394795, -0.002835512436680188, -0.01021378325691504, 0.0003729960921966926, -0.007660337209855652, 0.04204278157216196, -0.004394301849830682, 0.007600954689498311, 0.003310572133877661, -0.024703104254268592, -0.005077200135448222, -0.0012915685372037152, -0.004097389713705233, -0.016745853045642467, -0.024703104254268592, -0.013717348698369373, -0.0239905140099805, 0.009679341039360226, -0.0011356895958886657, 0.007779102250570334, -0.011163902651309985, -0.006264849611272532, -0.0016107491766708247, 0.011579579828150117, -0.012173404100401016, -0.0012618772770250446, 0.0037707863174011127, 0.003399645914413673, -0.004839670519680113, -0.010451313338344405, -0.01638955885482093, -0.004691214451617388, 0.015201909378996622, 0.001788896621327534, -0.006739909308470004, -0.006561761747397981, -0.01051069539304049, 0.030641348839422607, 0.012470316236526465, 0.004127081206714531, 0.00659145324040728, -0.01152019684213152, -0.006472688199692597, -0.018052267562181458, 0.019358682078720452, 0.001172803612904347, -0.012173404100401016, -0.026722107152450655, 0.023396689737729598, -0.02494063247305293, 0.008076014386695784, 0.009263663862520094, -0.002538600067724111, -0.004720905478965431, -0.0007051667307515418, 0.0245843382822314, 0.00011366174259413779, -0.0010763070755313248, -0.011638961882846202, 0.005225656669172202, -0.019002387887898917, -0.01419240792990559, -0.022446569412012143, 0.018052267562181458, 0.04061760108358577, -0.0008462000419772558, -0.0016924000839545117, -0.004691214451617388, 0.005136582655805562, 0.01300475845408128, 0.0023604527394827154, -0.028622345941240544, -0.010451313338344405, 0.00035072764706268973, 0.03515441479864546, 0.007660337209855652, 0.0239905140099805, 0.002568291327902781, 0.019121151997291086, -0.015023762283585854, 0.03586700690557858, -0.01983374224157918, 0.026959637233880018, 0.022209039330582776, 0.00991687112078959, -0.000534442159347157, -0.000616093008423187, 0.025534458607948854, -0.03420429819821805, -0.014608085106745721, -0.004988126587742838, 0.0122921691411157, -0.0228028654654787, -0.008372926522821234, -0.03752971561293911, -0.0010985754624576705, -0.024465574172839226, -0.011282667692024668, -0.007957249345981101, 0.014548703052049637, 0.02636581296162912, -3.9433664907032644e-05, -0.007511881141792927, 0.009323045917216178, 0.014845615188175086, 0.011638961882846202, -0.0039786246729905505, -0.01241093418183038, 0.004809979492332071, -0.031828997383924404, -0.024703104254268592, 0.004869361547028155, -0.00973872309405631, 0.016033264663999396, 0.011460814787435436, -0.020308800541792887, 0.01567696861053284, -0.0008462000419772558, 0.005433495257592268, 0.0007831062014090665, 0.0008462000419772558, 0.010332548297629722, 0.011579579828150117, -0.01466746809276432, 0.036104535124362916, -0.01466746809276432, 0.01318290648081456, 0.0020486948568526164, 0.004928744067385496, 0.0017963193781645448, -0.005611642353003036, 0.01745844328993056, 0.009679341039360226, 0.01995250635097135, 0.011638961882846202, -0.02102139078608098, 0.007957249345981101, -0.015023762283585854, 0.0, 0.001915084302463913, -0.003830168604927826, -0.004423993342839981, -0.011579579828150117, -0.014073642889190907, -0.02351545384712177, -0.004423993342839981, -0.013954877848476226, -0.007957249345981101, -0.0009946561682476376, 0.007007130417247411, 0.015558204501140668, -0.019121151997291086, 0.007363425073730202, 0.0053147302168775855, -0.01318290648081456, 0.00659145324040728, -0.017814737480752095, -0.01615202877339157, -0.015795734582570033, 0.027078401343272187, -0.004958435560394795, -0.016627088936250298, -0.022565335384049336, 0.002731593142470155, -0.0005084623357946488, 0.010866990515184536, 0.01817103353421865, 0.0045130668905453645, -0.013301671521529241, 0.006175776063567148, 0.005344421244225629, -0.003637175763012409, 0.00014010549572491632, -0.010688842488451257, -0.01615202877339157, 0.020071272323008545, -0.005700716366369675, 0.004156772234062574, 0.01983374224157918, 0.010451313338344405, -0.007066512937604753, 0.005492877777949609, -7.886732981406529e-05, -0.005789789914075059, 0.015320674419711303, -0.02102139078608098, 0.009204280876501497, -0.013895495793780141, 0.005938245982137783, -0.010807607529165939, -0.008610456604250598, 0.006769600335818047, 0.023634219819158964, -0.013420435630921412, 0.012589081277241149, 0.007036821444595454, -0.011223284706006071, 0.013301671521529241, -0.028147285778381815, -0.0053147302168775855, 0.015439439460425987, -0.01745844328993056, 0.003830168604927826, 0.002716747628796134, 0.007422807594087543, 0.02304039368426304, -0.009441810957930862, -0.021971511111798438, 0.01567696861053284, 0.003132424805636266, -0.001521675512550127, 0.0037410950572224423, -0.005908554954789741, -0.007125894992300838, -0.008847986685679963, -0.013123523494795963, 0.008907368740376048, 0.003087888031783574, -0.016508324826858125, 0.02304039368426304, -0.000556710546273503, 0.008491691563535915, -0.019358682078720452, 0.006828982856175388, 0.012767229303974427, -0.005433495257592268, 0.021971511111798438, -0.005077200135448222, 0.0005864018064521736, -0.005730407393717718, 0.0011876492429936823, 0.0034293371745923434, 0.002820666923006167, -0.021971511111798438, 0.028266051750419012, 0.008788603699661364, 0.007155586485310136, -0.01793350345278929, -0.026603343043058482, 0.0019447755626425835, -0.0005678447979443329, 0.008194779427410466, -0.018883621915861723, 0.016270794745428762, 0.006739909308470004, 0.0016552860669388305, 0.010985755555899219, 0.004809979492332071, 0.0032363440998462987, 0.005938245982137783, 0.007957249345981101, 0.0013435281843087318, 0.01199525700499025, 0.017814737480752095, 0.012232787086419613, 0.009323045917216178, 0.0301662905392089, -0.003399645914413673, -0.00650237922704064, 0.016033264663999396, -0.027434697396738747, -0.009501193943949458, 0.008610456604250598, 0.023871749900588327, -0.020308800541792887, -0.004127081206714531, -0.011698344868864799, 0.005671024873360376, 0.009679341039360226, -0.0021080773772099576, 0.002731593142470155, 0.009026133781090729, -0.02541569263591166, -0.010629460433755171, -0.00015680681502350425, -0.014311172970620272, 0.013776730753065458, 0.009085516767109326, 0.010629460433755171, -0.003132424805636266, -0.013420435630921412, -0.026959637233880018, 0.02304039368426304, -0.010273165311611125, -0.0010391930585156436, 0.025653222717341027, 0.006799291828827346, 0.012767229303974427, 0.0017517826043118529, -0.007066512937604753, 0.019002387887898917, 0.013301671521529241, -0.02304039368426304, 0.007363425073730202, -0.002286224705451353, -0.016745853045642467, 0.01567696861053284, -0.014073642889190907, 0.0122921691411157, -0.013064141440099878, -0.004275537274777256, 0.014014260834494823, -0.0008721798655297641, -0.012589081277241149, 0.006532070720049939, -0.01947744618811262, 0.007214969005667478, -0.008491691563535915, 0.0013657965712350775, -0.01051069539304049, -0.003340263394056332, 0.012826611358670513, -0.007779102250570334, -0.023396689737729598, -0.006413305679335257, 0.014133025875209506, -0.008076014386695784, -0.016270794745428762, -0.03562947496150419, -0.0006643412771096982, -0.001707245714043847, -0.018408561753002994, 0.005195965176162903, 0.012648464263259745, 0.010748225474469854, -0.01817103353421865, 0.0016107491766708247, -0.024703104254268592, 0.016745853045642467, -0.00040639870169004, -0.009441810957930862, 0.02850357996920335, -0.009144898821805412, -0.027790991587560283, 0.006739909308470004, -0.005166274148814861, 0.025059398445090128, -0.016627088936250298, -0.015914498691962202, -0.015201909378996622, -0.012114022045704931, 0.0010466158153526542, 0.012589081277241149, -0.0023307614793040446, -0.0008573342936480858, 0.01745844328993056, -0.009382428903234777, 0.007393116101078245, -0.00436461082248264, -0.007304042553372861, -0.003948933645642508, -0.00436461082248264, 0.018289797643610824, 0.001402910588250759, 0.03966748448315836, 0.016270794745428762, 0.004839670519680113, -0.007719719730212993, 0.007541572634802225, 0.003310572133877661, 0.01817103353421865, -0.015320674419711303, -0.01983374224157918, 0.008847986685679963, 0.01615202877339157, -0.08076014572960286, -0.009144898821805412, -0.02054633062322225, 0.009976253175485676, 0.013301671521529241, 0.00991687112078959, 0.0019002386723745777, 0.01021378325691504, -0.00218230541124132, -0.01757720739932273, -0.04014254464601709, 0.01021378325691504, 0.028147285778381815, 0.0026276738482601224, 0.007511881141792927, 0.009026133781090729, 0.0016552860669388305, 0.0061163935432098065, 0.028147285778381815, 0.00288004921053288, 0.0006123816300046817, -0.00436461082248264, -0.013064141440099878, 0.005789789914075059, -0.00783848430526642, 0.03372923803535932, -0.0037114037970437715, 0.014073642889190907, -0.026603343043058482, 0.030641348839422607, -0.023871749900588327, -0.006264849611272532, -0.004988126587742838, -0.008551074549554512, -0.018052267562181458, 0.0032214983533416495, -0.019239917969328283, 0.016745853045642467, -0.017102149099109024, -0.012885993413366598, 0.006353923158977915, 0.0031769615794889575, -0.00620546709091519, -0.0029245862172161997, -0.015320674419711303, -0.002761284402648826, 0.03467935836107678, -0.0010243474284263082, -0.020783860704651613, -0.019002387887898917, 0.00032103641598784765, 0.021258920867510342, 0.0039786246729905505, 0.0061163935432098065, -0.0122921691411157, -0.00047505966809364443, 0.004156772234062574, -0.01051069539304049, 0.011876491964275567, -0.0031918073259936067, 0.011638961882846202, -0.0363420670684373, -0.005878863461780443, 0.006353923158977915, -0.005077200135448222, 0.029216170213491443, 0.005374112737234927, 0.027553461506130916, -0.003948933645642508, 0.020071272323008545, 0.009679341039360226, -0.0012024948730830177, 0.023396689737729598, 0.015320674419711303, -0.007185277512658179, 0.002301070219125374, 0.007036821444595454, 0.011638961882846202, 0.018289797643610824, 0.00014103334032954264, 0.0239905140099805, -0.004928744067385496, -0.037054655450080375, 0.002137768637388628, -0.010985755555899219, -0.010391930352325806, -0.026128282880199756, -0.01686461901767966, 0.004839670519680113, 0.013123523494795963, 0.010332548297629722, 0.016745853045642467, 0.013123523494795963, -0.0061163935432098065, -0.016627088936250298, 0.005522568805297652, -0.006264849611272532, 0.007779102250570334, 0.02102139078608098, -0.014133025875209506, -0.014726850147460405, -0.015201909378996622, 0.014251789984601675, 0.011638961882846202, 0.013361053576225327, -0.008076014386695784, 0.014429938011334955, -0.0053147302168775855, 0.01638955885482093, -0.00659145324040728, -0.004631831931260047, 0.008610456604250598, -0.004631831931260047, -0.000708878109170047, 0.017220913208501196, -0.0239905140099805, -0.0029245862172161997, -0.012114022045704931, -0.009382428903234777, -0.007541572634802225, 0.01466746809276432, 0.01051069539304049, 0.014133025875209506, 0.020665096595259443, 0.0004899052690791512, -0.0005233079076763271, -0.007660337209855652, -0.007363425073730202, -0.026722107152450655, -0.009085516767109326, -0.010866990515184536, -0.016033264663999396, 0.004839670519680113, -0.0006643412771096982, 0.00366686702319108, 0.00783848430526642, -0.023871749900588327, -0.0026573651084387927, -0.008788603699661364, -0.01733967918053839, 0.0013286825542193964, -0.0023752984859873646, -0.001402910588250759, -0.007155586485310136, -0.036104535124362916, -0.016270794745428762, 0.029216170213491443, 0.00162559480676016, -0.006918056403880772, 0.005819480941423101, -0.00973872309405631, -0.013776730753065458, 0.023634219819158964, 0.01567696861053284, 0.009857488134770992, 0.0363420670684373, -0.017102149099109024, -0.03729218366886471, -0.007660337209855652, 0.01995250635097135, 0.00325118961352032, 0.01615202877339157, 0.008788603699661364, -0.016033264663999396, 0.011460814787435436, 0.010866990515184536, 0.01757720739932273, -0.01318290648081456, 0.0023901439996613857, -0.001959621076316605, 0.001974466822821254, -0.009204280876501497, -0.02541569263591166, -0.01757720739932273, -0.0019447755626422025-12-30T11:04:34.358316791Z 5835, 0.0005938246214968411, -0.0055819513256549925, -0.006799291828827346, -0.009501193943949458, -0.0029691229910688917, 0.012232787086419613, 0.022090275221190607, 0.004216154754419915, 0.007185277512658179, -0.004542758383554663, -0.019002387887898917, 0.03467935836107678, -0.01793350345278929, -0.0010540386886049788, -0.005344421244225629, 0.01466746809276432, -0.002241687931598661, -0.015795734582570033, 0.010273165311611125, -0.0009575421512319565, 0.010807607529165939, 0.08693592412147629, 0.002345607225808694, 0.003340263394056332, -0.012114022045704931, -0.00012989913231445545, -0.0006420728319756953, 0.004602140438250748, 0.002538600067724111, 0.0026573651084387927, -0.004661522958608089, -0.014073642889190907, -0.01567696861053284, 0.01300475845408128, 0.023634219819158964, -0.053206686086116964, -0.009560575998645543, -0.0301662905392089, -0.0043349197951345975, 0.015439439460425987, -0.026840871261842824, 0.011638961882846202, 0.00783848430526642, -0.010332548297629722, -0.010688842488451257, -0.033254177872500595, -0.006235158118263233, -0.02185274513976124, 0.011935874950294164, 0.0014103334615030835, -0.006057011022852466, 0.013836112807761545, 0.010866990515184536, 0.0011579579828150117, -0.029691230376350172, -0.0007868175798275718, 0.010688842488451257, -0.00436461082248264, 0.006977438924238113, -0.00650237922704064, -2.8995342164404465e-05, 0.006413305679335257, 0.007541572634802225, -0.025059398445090128, -0.016627088936250298, 0.02114015489547315, -0.021377684976902515, 0.03301664965371625, -0.005700716366369675, 0.0016627089401911551, 0.013361053576225327, 0.0019002386723745777, 0.012351552127134296, -0.012648464263259745, -0.005997628502495125, 0.010866990515184536, 0.011460814787435436, 0.00872922164496528, -0.0029542774773948705, 0.010095018216200357, 0.004869361547028155, 0.012767229303974427, 0.00973872309405631, -0.0050475091081001785, -0.027078401343272187, 0.011282667692024668, -0.012648464263259745, -0.0017963193781645448, -0.016627088936250298, -0.03681712350600599, 0.02945370029492081, 0.020071272323008545, 0.009026133781090729, -0.006027319529843167, -0.009679341039360226, 0.0025979825880814516, 0.013361053576225327, -0.015439439460425987, -0.00288004921053288, -0.005522568805297652, 0.010273165311611125, -0.010807607529165939, -0.022209039330582776, -0.0020932316307053084, 0.010391930352325806, -0.012826611358670513, -0.004008316165999849, -0.01615202877339157, -0.009857488134770992, -0.004186463261410617, 0.008135397372714381, 0.020308800541792887, 0.02054633062322225, 0.004928744067385496, 0.0021080773772099576, -0.012054639059686335, -0.007393116101078245, 0.0006086701933785194, -0.014311172970620272, 0.008907368740376048, 0.008076014386695784, 0.006828982856175388, 0.010095018216200357, 0.01983374224157918, 0.0038598598651064966, -0.020308800541792887, 0.02114015489547315, -0.0017369369742225177, -0.008194779427410466, -0.015914498691962202, -0.021615215058331878, 0.033254177872500595, -0.014548703052049637, 0.026722107152450655, -0.008788603699661364, -0.024228044091409863, 0.007957249345981101, -0.00510689162845752, 0.00620546709091519, 0.005522568805297652, -2.8647398618680313e-05, -0.006086702050200508, 0.011282667692024668, -0.0004286671468240429, 0.022446569412012143, -0.004958435560394795, -0.0016775544538651765, -0.021615215058331878, 0.003726249310717793, -0.011223284706006071, 0.0029394317308902213, -0.023277923765692404, 0.018289797643610824, -0.006621144267755322, 0.010332548297629722, 0.019596212160149815, -0.007274351526024818, 0.009263663862520094, -0.007600954689498311, -0.02541569263591166, -0.0035481019824763977, 0.006710217815460706, 0.007779102250570334, -0.02173398103036907, -0.010748225474469854, 0.0002291791889494425, -0.006828982856175388, -0.010035636161504272, -0.0021229228908839787, -0.017695973371359926, 0.003132424805636266, -0.006353923158977915, 0.008907368740376048, 0.004839670519680113, -0.0034887194621190565, -0.01021378325691504, -0.013717348698369373, -0.004483375863197322, 0.00991687112078959, -0.01567696861053284, -0.025771986826733196, -0.020783860704651613, -0.01092637256988062, 0.005166274148814861, -0.00872922164496528, 0.028741110050632717, -0.0017443597310595282, -0.019714976269541985, -0.0301662905392089, -0.004988126587742838, -0.015201909378996622, 0.004869361547028155, -0.009323045917216178, 0.00783848430526642, -0.014133025875209506, 0.011163902651309985, -0.01241093418183038, 0.011460814787435436, 0.013717348698369373, 0.028147285778381815, -0.027909755696952452, -0.005938245982137783, 0.00362233001650776, -0.025059398445090128, 0.006264849611272532, 0.007393116101078245, 0.023159159656300235, 0.010095018216200357, 0.02885987602266991, -0.008788603699661364, -0.02410927811937267, -0.012054639059686335, -0.020665096595259443, 0.003577793242655068, 0.0005975359999153464, 0.014311172970620272, 0.006828982856175388, 0.0009723877813212917, -0.01496438022888977, -0.004038007193347892, -0.019596212160149815, -0.015439439460425987, 0.00614608457055785, -0.0122921691411157, 0.0035332564688023765, -0.004691214451617388, -0.014251789984601675, 0.0037410950572224423, -0.05819481220819855, 0.010688842488451257, -0.0031175790591316164, -0.0037707863174011127, 0.012767229303974427, -0.028266051750419012, 0.00733373404638216, 0.0010763070755313248, 0.019596212160149815, 0.017220913208501196, -0.004453684370188024, 0.01757720739932273, 0.010332548297629722, -0.009976253175485676, 0.001729514100970193, -0.045843259149741744, 0.0011950719998306929, -0.002197150924915341, -0.029216170213491443, 0.01947744618811262, -0.00391924215263321, -0.0012841456639513906, -0.0019447755626425835, -0.03301664965371625, -0.006532070720049939, -0.01817103353421865, -0.003369954654235002, 0.013598583657654692, 0.010570077447736574, -0.00991687112078959, -0.003889551125285167, -0.019714976269541985, -0.019714976269541985, -0.02541569263591166, 0.006947747896890071, 0.011935874950294164, -0.017102149099109024, 0.01300475845408128, 0.008966751726394644, -0.002805821176501518, -0.0023901439996613857, -0.0001939208465910997, 0.006888365376532729, 0.005195965176162903, 0.0018705475286112212, 0.005017818080752136, 0.011817109909579482, 0.0032363440998462987, 0.05534445123104618, -0.015914498691962202, -0.014904997242871173, -0.008847986685679963, -0.005878863461780443, -0.012826611358670513, -0.01496438022888977, 0.00021526141801664778, 0.005285038723868287, -0.013301671521529241, 0.007897867291285016, 0.018052267562181458, 0.01757720739932273, 0.006264849611272532, -0.011460814787435436, -0.0026870563686174635, 0.018764857806469554, -0.002761284402648826, 0.0025979825880814516, 0.00033588204607718294, -0.006947747896890071, -0.007897867291285016, -0.010273165311611125, 0.013836112807761545, -0.045843259149741744, 0.009263663862520094, 0.0007793947647829041, 0.012173404100401016, -0.0029542774773948705, -0.0005121737142131541, 0.0014622931086080999, 0.009441810957930862, -0.0003284592310325153, -0.011876491964275567, 0.005938245982137783, 0.0024346807735140777, 0.0014771387386974353, 0.02589075279877039, -0.01478623220215649, 0.028266051750419012, 0.007541572634802225, -0.0013212596809670718, -0.0012099176299200283, 0.005671024873360376, 0.010273165311611125, -0.0007163009242147148, -0.0030136597649215837, 0.0007459921843933852, -0.0007274351176778876, -0.002776129916322847, 0.010629460433755171, 0.046793379475459196, -0.012589081277241149, -0.031828997383924404, -0.002805821176501518, -0.01092637256988062, -0.013479818616940009, -0.009323045917216178, 0.002805821176501518, -0.016745853045642467, 0.0023604527394827154, 0.022684099493441506, 0.010748225474469854, -0.0017814737480752094, 0.008254162413429062, -0.009441810957930862, 0.0007274351176778876, -0.02173398103036907, -0.01686461901767966, -0.017220913208501196, 0.010332548297629722, -0.00659145324040728, -0.01140143273273935, 0.013657965712350777, -0.003637175763012409, -0.002449526520018727, -0.008076014386695784, -0.0066508357607646205, -0.0024346807735140777, 0.0008276430334694153, -0.012885993413366598, -0.006621144267755322, -0.014845615188175086, 0.010985755555899219, -0.004809979492332071, -0.006918056403880772, 0.004869361547028155, -0.027315931424701553, -0.015795734582570033, 0.003414491428087694, 0.013123523494795963, -0.02102139078608098, 0.002805821176501518, 0.008966751726394644, 0.005077200135448222, 0.004602140438250748, 0.004809979492332071, -0.009619958984664142, -0.032541589490857524, 0.007660337209855652, -0.005878863461780443, -0.008788603699661364, 0.012054639059686335, -0.005195965176162903, 0.013539200671636093, -0.016508324826858125, -0.007719719730212993, 0.0029245862172161997, -0.02185274513976124, 0.001232186016846374, -0.006413305679335257, -0.002731593142470155, 0.006027319529843167, -0.004869361547028155, 0.010035636161504272, -0.015201909378996622, -0.02589075279877039, 0.00436461082248264, -0.020071272323008545, -0.023159159656300235, 0.021615215058331878, 0.005492877777949609, 9.928004935902992e-05, -0.01199525700499025, -0.0009501193361872889, 0.007393116101078245, -0.01021378325691504, -0.012114022045704931, -0.01496438022888977, 0.0399050127019427, -0.0026276738482601224, -0.006086702050200508, -0.012173404100401016, -0.01733967918053839, -0.0002579425754196582, -0.00109115270562066, -0.00021526141801664778, -0.0011431123527256765, -0.01817103353421865, 0.009085516767109326, -0.003073042285278925, -4.569665964400312e-05, 0.005997628502495125, -0.01638955885482093, -0.01051069539304049, -0.009619958984664142, -0.0011356895958886657, 0.012173404100401016, -0.026840871261842824, 0.008016632331999698, 0.0037410950572224423, 0.0014622931086080999, -0.006947747896890071, 0.011460814787435436, 0.005878863461780443, 0.022921629574870872, 0.01567696861053284, -0.008610456604250598, -0.01733967918053839, -0.009204280876501497, -0.06793353250828732, 0.008788603699661364, 0.00024309694533032294, -0.000180003075658305, -0.009560575998645543, -0.001892815915537567, 0.02351545384712177, -0.004750596971974729, 0.0004899052690791512, -0.010273165311611125, -0.007185277512658179, -0.027553461506130916, -0.006977438924238113, -0.0008090860249615747, 0.003637175763012409]
2025-12-30 11:04:34.398 ERROR [ThreadPoolExecutor-1_0] [retrieval_service.py:310] - Error parsing message
Traceback (most recent call last):
File "/app/api/core/rag/datasource/retrieval_service.py", line 244, in embedding_search
vector.search_by_vector(File "/app/api/core/rag/datasource/vdb/vector_factory.py", line 273, in search_by_vector
return self._vector_processor.search_by_vector(query_vector, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File "/app/api/core/rag/datasource/vdb/weaviate/weaviate_vector.py", line 391, in search_by_vector
res = col.query.near_vector( ^^^^^^^^^^^^^^^^^^^^^^File "/app/api/.venv/lib/python3.12/site-packages/weaviate/collections/queries/near_vector/query/executor.py", line 376, in near_vector
request = self._query.near_vector( ^^^^^^^^^^^^^^^^^^^^^^^^File "/app/api/.venv/lib/python3.12/site-packages/weaviate/collections/grpc/query.py", line 266, in near_vector
return self.__create_request( ^^^^^^^^^^^^^^^^^^^^^^File "/app/api/.venv/lib/python3.12/site-packages/weaviate/collections/grpc/query.py", line 473, in __create_request
return search_get_pb2.SearchRequest( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^google.protobuf.message.DecodeError: Error parsing message
Exception in thread Thread-6 (_retriever):
Traceback (most recent call last):
File "/usr/local/lib/python3.12/threading.py", line 1075, in _bootstrap_inner
self.run()File "/usr/local/lib/python3.12/threading.py", line 1012, in run
self._target(*self._args, **self._kwargs)File "/app/api/core/rag/retrieval/dataset_retrieval.py", line 801, in _retriever
documents = RetrievalService.retrieve( ^^^^^^^^^^^^^^^^^^^^^^^^^^File "/app/api/core/rag/datasource/retrieval_service.py", line 115, in retrieve
raise ValueError(";\n".join(exceptions))ValueError: Error parsing message
2025-12-30 11:04:35.111 INFO [GraphWorker-0] [_client.py:1038] - HTTP Request: GET http://plugin_daemon:5002/plugin/ea73d443-7cfe-47ac-af34-3471c5fef849/management/models?page=1&page_size=256 "HTTP/1.1 200 OK"
the vector is right, please check the weaviate log, maybe there is a error log
weaviate client in dify is weaviate-client==4.17.0, the weaviate server version should >= 1.27.0
@fatelei weaviate-client==4.17.0 and the weaviate server version should == 1.27.0,Then LOG_LEVEL: debug has logs, but when the log level is error, there are no logs.
@fatelei weaviate-client==4.17.0 and the weaviate server version should == 1.27.0,Then LOG_LEVEL: debug has logs, but when the log level is error, there are no logs.
![]()
![]()
modify docker compose file
weaviate:
image: semitechnologies/weaviate:1.27.0
profiles:
- weaviate
restart: always
volumes:
# Mount the Weaviate data directory to the con tainer.
- ./volumes/weaviate:/var/lib/weaviate
environment:
# The Weaviate configurations
# You can refer to the [Weaviate](https://weaviate.io/developers/weaviate/config-refs/env-vars ) documentation for more information.
PERSISTENCE_DATA_PATH: ${WEAVIATE_PERSISTENCE_DATA_PATH:-/var/lib/weaviate}
QUERY_DEFAULTS_LIMIT: ${WEAVIATE_QUERY_DEFAULTS_LIMIT:-25}
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: ${WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED:-false}
DEFAULT_VECTORIZER_MODULE: ${WEAVIATE_DEFAULT_VECTORIZER_MODULE:-none}
CLUSTER_HOSTNAME: ${WEAVIATE_CLUSTER_HOSTNAME:-node1}
AUTHENTICATION_APIKEY_ENABLED: ${WEAVIATE_AUTHENTICATION_APIKEY_ENABLED:-true}
AUTHENTICATION_APIKEY_ALLOWED_KEYS: ${WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS:-WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih}
AUTHENTICATION_APIKEY_USERS: ${WEAVIATE_AUTHENTICATION_APIKEY_USERS:[email protected]}
AUTHORIZATION_ADMINLIST_ENABLED: ${WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED:-true}
AUTHORIZATION_ADMINLIST_USERS: ${WEAVIATE_AUTHORIZATION_ADMINLIST_USERS:[email protected]}
DISABLE_TELEMETRY: ${WEAVIATE_DISABLE_TELEMETRY:-false}
ENABLE_TOKENIZER_GSE: ${WEAVIATE_ENABLE_TOKENIZER_GSE:-false}
ENABLE_TOKENIZER_KAGOME_JA: ${WEAVIATE_ENABLE_TOKENIZER_KAGOME_JA:-false}
ENABLE_TOKENIZER_KAGOME_KR: ${WEAVIATE_ENABLE_TOKENIZER_KAGOME_KR:-false}
LOG_LEVEL=debug
docker compose up -d
@fatelei I set LOG_LEVEL=debug, and the printed log only contains the following content.




2025-12-30 11:04:34.251 INFO [ThreadPoolExecutor-1_0] [_client.py:1038] - HTTP Request: GET
