diff --git a/.github/workflows/assist.yml b/.github/workflows/assist.yml new file mode 100644 index 00000000..40b15e66 --- /dev/null +++ b/.github/workflows/assist.yml @@ -0,0 +1,56 @@ +name: Deploy Assist +on: + workflow_dispatch: + inputs: { } + push: + branches: + - Azure + paths: + - 'apps/acme-assist/**' +env: + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} + KEY_VAULT: ${{ secrets.KEY_VAULT }} + AZURE_OPENAI_ENDPOINT: ${{ secrets.AZURE_OPENAI_ENDPOINT }} + AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }} + AI_APP: assist-service + AZURE_OPENAI_MODEL: gpt-35-turbo-16k + AZURE_OPENAI_EMBEDDINGMODEL: text-embedding-ada-002 + +permissions: + id-token: write + contents: read + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: apps/acme-assist + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'adopt' + - name: Run the Maven local build + run: mvn package clean + - name: Set up Azure + uses: azure/login@v1 + with: + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} + - name: Set up Azure Spring Extension + run: az extension add --name spring + - name: Deploy Assist + run: | + az spring app deploy --name ${AI_APP} \ + --resource-group ${RESOURCE_GROUP} \ + --service ${SPRING_APPS_SERVICE} \ + --source-path ./ \ + --build-env BP_JVM_VERSION=17 \ + --env \ + SPRING_AI_AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT} \ + SPRING_AI_AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY} \ No newline at end of file diff --git a/.github/workflows/cart.yml b/.github/workflows/cart.yml index 7d5ac88b..2a3f0f0d 100644 --- a/.github/workflows/cart.yml +++ b/.github/workflows/cart.yml @@ -8,18 +8,22 @@ on: paths: - 'apps/acme-cart/**' env: - SPRING_APPS_SERVICE: ${{ secrets.TF_PROJECT_NAME }}-asa - RESOURCE_GROUP: ${{ secrets.TF_PROJECT_NAME }}-grp - KEY_VAULT: ${{ secrets.TF_PROJECT_NAME }}-keyvault + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} + KEY_VAULT: ${{ secrets.KEY_VAULT }} CUSTOM_BUILDER: no-bindings-builder CART_SERVICE_APP: cart-service +permissions: + id-token: write + contents: read + jobs: build: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7"] + python-version: ["3.11"] defaults: run: working-directory: apps/acme-cart @@ -41,18 +45,22 @@ jobs: - name: Set up Azure uses: azure/login@v1 with: - creds: ${{ secrets.AZURE_CREDENTIALS }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} - name: Set up Azure Spring Extension run: az extension add --name spring - name: Deploy Cart run: | keyvault_uri=$(az keyvault show \ --resource-group ${RESOURCE_GROUP} \ - --name ${KEY_VAULT} | jq -r '.properties.vaultUri') + --name ${KEY_VAULT} \ + --query properties.vaultUri -o tsv) gateway_url=$(az spring gateway show \ --resource-group ${RESOURCE_GROUP} \ - --service ${SPRING_APPS_SERVICE} | jq -r '.properties.url') + --service ${SPRING_APPS_SERVICE} \ + --query properties.url -o tsv) az spring app deploy \ --name ${CART_SERVICE_APP} \ diff --git a/.github/workflows/catalog.yml b/.github/workflows/catalog.yml index f79c0676..190b0358 100644 --- a/.github/workflows/catalog.yml +++ b/.github/workflows/catalog.yml @@ -8,11 +8,15 @@ on: paths: - 'apps/acme-catalog/**' env: - SPRING_APPS_SERVICE: ${{ secrets.TF_PROJECT_NAME }}-asa - RESOURCE_GROUP: ${{ secrets.TF_PROJECT_NAME }}-grp - KEY_VAULT: ${{ secrets.TF_PROJECT_NAME }}-keyvault + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} + KEY_VAULT: ${{ secrets.KEY_VAULT }} CATALOG_SERVICE_APP: catalog-service +permissions: + id-token: write + contents: read + jobs: build: runs-on: ubuntu-latest @@ -31,25 +35,22 @@ jobs: - name: Build with Gradle uses: gradle/gradle-build-action@v2 with: - arguments: build + arguments: build -x test build-root-directory: apps/acme-catalog - name: Set up Azure uses: azure/login@v1 with: - creds: ${{ secrets.AZURE_CREDENTIALS }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} - name: Set up Azure Spring Extension run: az extension add --name spring - name: Deploy Catalog run: | - keyvault_uri=$(az keyvault show \ - --resource-group ${RESOURCE_GROUP} \ - --name ${KEY_VAULT} | jq -r '.properties.vaultUri') - - az spring app deploy \ + az spring app deploy \ --name ${CATALOG_SERVICE_APP} \ --resource-group "$RESOURCE_GROUP" \ --service "$SPRING_APPS_SERVICE" \ - --env "SPRING_CLOUD_AZURE_KEYVAULT_SECRET_PROPERTY_SOURCES_0_ENDPOINT=${keyvault_uri}" "SPRING_CLOUD_AZURE_KEYVAULT_SECRET_PROPERTY_SOURCES_0_NAME='acme-fitness-store-vault'" "SPRING_PROFILES_ACTIVE=default,key-vault" \ - --config-file-pattern catalog/default,catalog/key-vault \ + --config-file-pattern catalog/default \ --build-env BP_JVM_VERSION=17 \ - --source-path ./ + --source-path ./ \ No newline at end of file diff --git a/.github/workflows/identity.yml b/.github/workflows/identity.yml index 4359547c..0416d477 100644 --- a/.github/workflows/identity.yml +++ b/.github/workflows/identity.yml @@ -8,11 +8,15 @@ on: paths: - 'apps/acme-identity/**' env: - SPRING_APPS_SERVICE: ${{ secrets.TF_PROJECT_NAME }}-asa - RESOURCE_GROUP: ${{ secrets.TF_PROJECT_NAME }}-grp - KEY_VAULT: ${{ secrets.TF_PROJECT_NAME }}-keyvault + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} + KEY_VAULT: ${{ secrets.KEY_VAULT }} IDENTITY_SERVICE_APP: identity-service +permissions: + id-token: write + contents: read + jobs: build: runs-on: ubuntu-latest @@ -36,20 +40,23 @@ jobs: - name: Set up Azure uses: azure/login@v1 with: - creds: ${{ secrets.AZURE_CREDENTIALS }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} - name: Set up Azure Spring Extension run: az extension add --name spring - name: Deploy Identity run: | keyvault_uri=$(az keyvault show \ --resource-group ${RESOURCE_GROUP} \ - --name ${KEY_VAULT} | jq -r '.properties.vaultUri') + --name ${KEY_VAULT} \ + --query properties.vaultUri -o tsv) az spring app deploy \ --name ${IDENTITY_SERVICE_APP} \ --resource-group "$RESOURCE_GROUP" \ --service "$SPRING_APPS_SERVICE" \ - --env "SPRING_CLOUD_AZURE_KEYVAULT_SECRET_PROPERTY_SOURCES_0_ENDPOINT=${keyvault_uri}" "SPRING_CLOUD_AZURE_KEYVAULT_SECRET_PROPERTY_SOURCES_0_NAME='acme-fitness-store-vault'" "SPRING_PROFILES_ACTIVE=default,key-vault" \ + --env "SPRING_CLOUD_AZURE_KEYVAULT_SECRET_PROPERTY_SOURCES_0_ENDPOINT=${keyvault_uri}" "SPRING_CLOUD_AZURE_KEYVAULT_SECRET_PROPERTY_SOURCES_0_NAME=${KEY_VAULT}" "SPRING_PROFILES_ACTIVE=default,key-vault" \ --config-file-pattern identity/default,identity/key-vault \ --build-env BP_JVM_VERSION=17 \ --source-path ./ diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml new file mode 100644 index 00000000..f7a367b2 --- /dev/null +++ b/.github/workflows/markdown-link-check.yml @@ -0,0 +1,14 @@ +name: Markdown Links Check + +on: [pull_request] + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + config-file: '.github/workflows/mlc_config.json' \ No newline at end of file diff --git a/.github/workflows/mlc_config.json b/.github/workflows/mlc_config.json new file mode 100644 index 00000000..2a8e642c --- /dev/null +++ b/.github/workflows/mlc_config.json @@ -0,0 +1,29 @@ +{ + "ignorePatterns": [ + { + "pattern": "^http://127.0.0.1" + }, + { + "pattern": "^https://127.0.0.1" + }, + { + "pattern": "^http://localhost" + }, + { + "pattern": "^https://localhost" + }, + { + "pattern": "^http://proxyserver" + }, + { + "pattern": "^http://example.com" + }, + { + "pattern": "^https://example.com" + }, + { + "pattern": "^https://github.com/Azure-Samples/acme-fitness-store/invitations" + } + ], + "aliveStatusCodes": [200] + } \ No newline at end of file diff --git a/.github/workflows/order.yml b/.github/workflows/order.yml index a2ce825d..e88a4bd7 100644 --- a/.github/workflows/order.yml +++ b/.github/workflows/order.yml @@ -8,12 +8,16 @@ on: paths: - 'apps/acme-order/**' env: - SPRING_APPS_SERVICE: ${{ secrets.TF_PROJECT_NAME }}-asa - RESOURCE_GROUP: ${{ secrets.TF_PROJECT_NAME }}-grp - KEY_VAULT: ${{ secrets.TF_PROJECT_NAME }}-keyvault + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} + KEY_VAULT: ${{ secrets.KEY_VAULT }} CUSTOM_BUILDER: no-bindings-builder ORDER_SERVICE_APP: order-service +permissions: + id-token: write + contents: read + jobs: build: runs-on: ubuntu-latest @@ -33,22 +37,27 @@ jobs: - name: Set up Azure uses: azure/login@v1 with: - creds: ${{ secrets.AZURE_CREDENTIALS }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} - name: Set up Azure Spring Extension run: az extension add --name spring - name: Deploy Order run: | keyvault_uri=$(az keyvault show \ - --resource-group ${RESOURCE_GROUP} \ - --name ${KEY_VAULT} | jq -r '.properties.vaultUri') + --resource-group ${RESOURCE_GROUP} \ + --name ${KEY_VAULT} \ + --query properties.vaultUri -o tsv) gateway_url=$(az spring gateway show \ --resource-group ${RESOURCE_GROUP} \ - --service ${SPRING_APPS_SERVICE} | jq -r '.properties.url') + --service ${SPRING_APPS_SERVICE} \ + --query properties.url -o tsv) az spring app deploy \ --name ${ORDER_SERVICE_APP} \ --resource-group "$RESOURCE_GROUP" \ --service "$SPRING_APPS_SERVICE" \ + --env "ConnectionStrings__KeyVaultUri=${keyvault_uri}" "AcmeServiceSettings__AuthUrl=https://${gateway_url}" "DatabaseProvider=Postgres" \ --builder ${CUSTOM_BUILDER} \ --source-path ./ diff --git a/.github/workflows/payment.yml b/.github/workflows/payment.yml index 6be34ce7..53023f0a 100644 --- a/.github/workflows/payment.yml +++ b/.github/workflows/payment.yml @@ -8,10 +8,14 @@ on: paths: - 'apps/acme-payment/**' env: - SPRING_APPS_SERVICE: ${{ secrets.TF_PROJECT_NAME }}-asa - RESOURCE_GROUP: ${{ secrets.TF_PROJECT_NAME }}-grp + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} PAYMENT_SERVICE_APP: payment-service +permissions: + id-token: write + contents: read + jobs: build: runs-on: ubuntu-latest @@ -35,7 +39,9 @@ jobs: - name: Set up Azure uses: azure/login@v1 with: - creds: ${{ secrets.AZURE_CREDENTIALS }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} - name: Set up Azure Spring Extension run: az extension add --name spring - name: Deploy Payment diff --git a/.github/workflows/shopping.yml b/.github/workflows/shopping.yml index 4545dcc1..6ed6a38d 100644 --- a/.github/workflows/shopping.yml +++ b/.github/workflows/shopping.yml @@ -8,10 +8,14 @@ on: paths: - 'apps/acme-shopping/**' env: - SPRING_APPS_SERVICE: ${{ secrets.TF_PROJECT_NAME }}-asa - RESOURCE_GROUP: ${{ secrets.TF_PROJECT_NAME }}-grp + SPRING_APPS_SERVICE: ${{ secrets.SPRING_APPS_SERVICE }} + RESOURCE_GROUP: ${{ secrets.RESOURCE_GROUP }} FRONTEND_APP: frontend +permissions: + id-token: write + contents: read + jobs: build: runs-on: ubuntu-latest @@ -30,7 +34,9 @@ jobs: - name: Set up Azure uses: azure/login@v1 with: - creds: ${{ secrets.AZURE_CREDENTIALS }} + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.SUBSCRIPTION }} - name: Set up Azure Spring Extension run: az extension add --name spring - name: Deploy Shopping diff --git a/.gitignore b/.gitignore index 3d1aac2a..7877f691 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,10 @@ __pycache__ .DS_Store .env*.secret .idea +.metadata custom-filters - +*.iml +*.jar azure-spring-apps-enterprise/scripts/setup-env-variables.sh azure-spring-apps-enterprise/scripts/setup-db-env-variables.sh @@ -57,3 +59,7 @@ hello-world/ # vsCode .vscode + +# Cypress +**/cypress/downloads +**/cypress/screenshots diff --git a/README.md b/README.md index ee3fd95e..7fd2b681 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,9 @@ ---- -page_type: sample -languages: -- java -products: -- Azure Spring Apps -- Azure Database for PostgreSQL -- Azure Cache for Redis -- Azure Active Directory -description: "Deploy Microservice Apps to Azure" -urlFragment: "acme-fitness-store" ---- # ACME Fitness Store ACME Fitness store is a fictional online retailer selling sporting goods. This repo contains the source code and deployment scripts for the ACME Fitness store application. ## High Level Architecture -![An image showing the services involved in the ACME Fitness Store. It depicts the applications and their dependencies](./azure-spring-apps-enterprise/media/acme-fitness-store-architecture.jpg) +![An image showing the services involved in the ACME Fitness Store. It depicts the applications and their dependencies](media/acme-fitness-store-architecture.png) This application is composed of several services: @@ -41,37 +29,119 @@ The sample can be deployed to Azure Spring Apps Enterprise or Tanzu Application | Directory | Purpose | | ---------------------------------------------------------------- | ------------- | | [apps/](./apps) | source code for the services | -| [azure-spring-apps-enterprise/](./azure-spring-apps-enterprise) | documentaion and scripts for deploying to Azure Spring Apps Enterprise | -| [tanzu-application-platform/](./tanzu-application-platform) | documentation and scripts for deploying to Tanzu Application Platform| - -## Deploy Apps to Azure Spring Apps Enterprise (ASA-E) - -Azure Spring Apps Enterprise enables you to easily run Spring Boot and -polyglot applications on Azure. The quickstart guide in -[azure-spring-apps-enterprise/README.md](./azure-spring-apps-enterprise/README.md) -shows you how to deploy the ACME Fitness store application to Azure Spring Apps - Enterprise. - -* [Deploy Applications to Azure Spring Apps](./azure-spring-apps-enterprise/README.md#deploy-spring-boot-apps-to-azure) - * [What will you experience](./azure-spring-apps-enterprise/#what-will-you-experience) - * [What you will need](./azure-spring-apps-enterprise/#what-you-will-need) - * [Install the Azure CLI extension](./azure-spring-apps-enterprise/#install-the-azure-cli-extension) - * [Clone the repo](./azure-spring-apps-enterprise/#clone-the-repo) - * [Unit 0 - Prepare Environment](./azure-spring-apps-enterprise/#unit-0---prepare-environment) - * [Unit 1 - Deploy and Build Applications](./azure-spring-apps-enterprise/#unit-1---deploy-and-build-applications) - * [Unit 2 - Configure Single Sign On](./azure-spring-apps-enterprise/#unit-2---configure-single-sign-on) - * [Unit 3 - Integrate with Azure Database for PostgreSQL and Azure Cache for Redis](./azure-spring-apps-enterprise/#unit-3---integrate-with-azure-database-for-postgresql-and-azure-cache-for-redis) - * [Unit 4 - Securely Load Application Secrets](./azure-spring-apps-enterprise/#unit-4---securely-load-application-secrets) - * [Unit 5 - Monitor End-to-End](./azure-spring-apps-enterprise/#unit-5---monitor-end-to-end) - * [Unit 6 - Set Request Rate Limits](./azure-spring-apps-enterprise/#unit-6---set-request-rate-limits) - * [Unit 7 - Automate from idea to production](./azure-spring-apps-enterprise/#unit-7---automate-from-idea-to-production) - * [Unit 8 - Infuse AI into Fitness Store](./azure-spring-apps-enterprise/#unit-8---infuse-ai-into-fitness-store) - -## Deploy Apps to Tanzu Application Platform (TAP) - -Tanzu Application Platform (TAP) enables you to easily build & run polyglot -applications on CNCF Compliant Kubernetes clusters. Follow the instructions -in [tanzu-application-platform/README.md](./tanzu-application-platform/README.md) -to deploy the application to TAP. - +================================================================ +## Deploy on Tanzu Platform for Cloud Foundry (TPCF aka TAS) + +Assumption that the proper Cloud Foundry CLI has been installed. + +#### Create Services +```bash +cf create-service p.redis on-demand-cache acme-redis +cf create-service postgres on-demand-postgres-db acme-postgres +cf create-service postgres on-demand-postgres-db acme-assist-postgres +cf create-service postgres on-demand-postgres-db acme-order-postgres + +# This sets up your TAS/TPCF config server. It assumes that your config files are located at in the branch config (label) under the directory config (searchPaths). You can checkout the branch to see the structure if you like. +cf create-service p.config-server standard acme-config -c '{ "git": { "uri": "", "label": "config", "searchPaths": "config" } }' + +# This assumes Tanzu Single Sign on for TAS/TPCF is installed and configured against UAA. You can also use other identity providers if you change the plan and binding below. +cf create-service p-identity uaa acme-sso +cf create-service p.service-registry standard acme-registry +cf create-service p.gateway standard acme-gateway -c '{"sso": { "plan": "uaa", "scopes": ["openid", "profile", "email"] }, "host": "acme-fitness" ,"cors": { "allowed-origins": [ "*" ] }}' + +# This assumes you have a Chat and Embedding model plan configured with GenAI for Tanzu Platform v0.6+ +cf create-service genai acme-genai-chat +cf create-service genai acme-genai-embed +``` + +#### Identity Service +```bash +cd acme-identity +./gradlew assemble +cf push --no-start +cf bind-service acme-identity acme-registry + +# Replace [YOUR APPS DOMAIN] with your TPCF's apps domain for the gateway +cf bind-service acme-identity acme-sso -c '{ "grant_types": ["authorization_code"], + "scopes": ["openid"], + "authorities": ["openid"], + "redirect_uris": ["https://acme-fitness.[YOUR APPS DOMAIN]/"], + "auto_approved_scopes": ["openid"], + "identity_providers": ["uaa"], + "show_on_home_page": false}' + +cf bind-service acme-identity acme-gateway -c identity-routes.json +cf start acme-identity + +``` +#### Cart Service +```bash +cd ../acme-cart +cf push --no-start +cf bind-service acme-cart acme-gateway -c cart-routes.json +cf start acme-cart +``` + +#### Payment Service +```bash +cd ../acme-payment +./gradlew assemble +cf push --no-start +cf bind-service acme-payment acme-gateway -c pay-routes.json +cf start acme-payment +``` + +#### Catalog Service +```bash +cd ../acme-catalog +./gradlew clean assemble +cf push --no-start +cf bind-service acme-catalog acme-gateway -c catalog-service_rate-limit.json +cf start acme-catalog +``` + +#### Acme Assist +```bash +cd ../acme-assist +./gradlew clean assemble + +# Use this with GenAI 0.6+ +cf push --no-start +cf add-network-policy acme-assist acme-catalog +cf bind-service acme-assist acme-gateway -c assist-routes.json +cf start acme-assist +``` + +#### Order Service +```bash +cd ../acme-order +dotnet publish -r linux-x64 +cf push --no-start +cf add-network-policy acme-order acme-payment +cf bind-service acme-order acme-gateway -c order-routes.json +cf start acme-order +``` + +#### Shopping Service +```bash +cd ../acme-shopping +cf push --no-start +cf bind-service acme-shopping acme-gateway -c frontend-routes.json +cf start acme-shopping +``` +================================================= + +Note: ensure that the environment variable for TAS has +`SPRING_MVC_STATIC_PATH_PATTERN: /static/images/**` set. Currently have an issue with the value taken from config server being overwritten. + +## Local Development setup +- [Local Development guide](local-development/README.md) + +## TAS Development Tricks + +### Connecting to Database + +https://docs.cloudfoundry.org/devguide/deploy-apps/ssh-services.html + +`cf ssh -L 65432:{host-of-database-on-TAS}:5432 {application-name}` diff --git a/apps/acme-assist/.gitignore b/apps/acme-assist/.gitignore index 31fbf9da..f5bf5483 100644 --- a/apps/acme-assist/.gitignore +++ b/apps/acme-assist/.gitignore @@ -1,6 +1,9 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar +build/ +.gradle +!gradle/wrapper/gradle-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ @@ -34,3 +37,4 @@ out/ ### VS Code ### .vscode/ +/src/test/resources/requests/http-client.private.env.json diff --git a/apps/acme-assist/README.md b/apps/acme-assist/README.md index 279d0db0..f38e3a07 100644 --- a/apps/acme-assist/README.md +++ b/apps/acme-assist/README.md @@ -1,95 +1,14 @@ -# Enhance with Azure OpenAI +## Local running -## Prerequisites -- JDK 17 -- Maven -- Azure CLI (>= 2.51.0) -- An Azure subscription with access granted to Azure OpenAI (see more [here](https://customervoice.microsoft.com/Pages/ResponsePage.aspx?id=v4j5cvGGr0GRqy180BHbR7en2Ais5pxKtso_Pz4b1_xUOFA5Qk1UWDRBMjg0WFhPMkIzTzhKQ1dWNyQlQCN0PWcu)) +Ensure the Local Development dependencies are running. (See main [README](../../README.md)) +This application also assumes there is an OPEN AI API key setup as an environment variable. +Need to set `OPENAI_API_KEY` for the application-local.yml -## Prepare the Environment Variables -1. Please navigate to the root folder of this cloned repository. -1. Run `cp azure-spring-apps-enterprise/scripts/setup-env-variables-template.sh azure-spring-apps-enterprise/scripts/setup-env-variables.sh` and update the values in `setup-env-variables.sh` with your own values. -1. Run `cp azure-spring-apps-enterprise/scripts/setup-ai-env-variables-template.sh azure-spring-apps-enterprise/scripts/setup-ai-env-variables.sh` and update the values in `setup-ai-env-variables.sh` with your own values. +This project uses Java version 21. Ensure your system has this available before running the app locally. - -## Prepare Azure OpenAI Service - -1. Run the following command to create an Azure OpenAI resource in the the resource group. - - ```bash - source ./azure-spring-apps-enterprise/scripts/setup-env-variables.sh - export OPENAI_RESOURCE_NAME= - az cognitiveservices account create \ - -n ${OPENAI_RESOURCE_NAME} \ - -g ${RESOURCE_GROUP} \ - -l eastus \ - --kind OpenAI \ - --sku s0 \ - --custom-domain ${OPENAI_RESOURCE_NAME} - ``` - -1. Create the model deployments for `text-embedding-ada-002` and `gpt-35-turbo-16k` in your Azure OpenAI service. - ```bash - az cognitiveservices account deployment create \ - -g ${RESOURCE_GROUP} \ - -n ${OPENAI_RESOURCE_NAME} \ - --deployment-name text-embedding-ada-002 \ - --model-name text-embedding-ada-002 \ - --model-version "2" \ - --model-format OpenAI - - az cognitiveservices account deployment create \ - -g ${RESOURCE_GROUP} \ - -n ${OPENAI_RESOURCE_NAME} \ - --deployment-name gpt-35-turbo-16k \ - --model-name gpt-35-turbo-16k \ - --model-version "0613" \ - --model-format OpenAI \ - --sku Standard \ - --capacity 120 - ``` - - -## (Optional) Preprocess the data into the vector store - -Before building the `assist-service` service, we need to preprocess the data into the vector store. The vector store is a file that contains the vector representation of each product description. There's already a pre-built file `vector_store.json` in the repo so you can skip this step. If you want to build the vector store yourself, please run the following commands: +run locally setting up docker for dependency ```bash -source ./azure-spring-apps-enterprise/scripts/setup-ai-env-variables.sh -cd apps/acme-assist -./preprocess.sh data/bikes.json,data/accessories.json src/main/resources/vector_store.json +docker-compose up +./gradlew bootRun --args="--spring.profiles.active=local" ``` - - -## Build and deploy to Azure Spring Apps - -1. Prepare the new sample data and images: - ```bash - ./apps/acme-assist/prepare_data.sh - ``` -1. Redeploy `catalog-service` with the new resources: - ```bash - source ./azure-spring-apps-enterprise/scripts/setup-env-variables.sh - az spring app deploy --name ${CATALOG_SERVICE_APP} \ - --config-file-pattern catalog/default \ - --source-path apps/acme-catalog \ - --build-env BP_JVM_VERSION=17 - ``` -1. Deploy the new ai service `assist-service` : - ```bash - source ./azure-spring-apps-enterprise/scripts/setup-ai-env-variables.sh - az spring app create --name ${AI_APP} --instance-count 1 --memory 1Gi - az spring gateway route-config create \ - --name ${AI_APP} \ - --app-name ${AI_APP} \ - --routes-file azure-spring-apps-enterprise/resources/json/routes/assist-service.json - - az spring app deploy --name ${AI_APP} \ - --source-path apps/acme-assist \ - --build-env BP_JVM_VERSION=17 \ - --env \ - SPRING_AI_AZURE_OPENAI_ENDPOINT=${SPRING_AI_AZURE_OPENAI_ENDPOINT} \ - SPRING_AI_AZURE_OPENAI_APIKEY=${SPRING_AI_AZURE_OPENAI_APIKEY} \ - SPRING_AI_AZURE_OPENAI_MODEL=${SPRING_AI_AZURE_OPENAI_MODEL} \ - SPRING_AI_AZURE_OPENAI_EMBEDDINGMODEL=${SPRING_AI_AZURE_OPENAI_EMBEDDINGMODEL} - ``` diff --git a/apps/acme-assist/assist-routes.json b/apps/acme-assist/assist-routes.json new file mode 100644 index 00000000..6b77d127 --- /dev/null +++ b/apps/acme-assist/assist-routes.json @@ -0,0 +1,28 @@ +{ + "routes": [ + { + "predicates": [ + "Path=/ai/*", + "Method=POST" + ], + "filters": [ + "StripPrefix=0" + ], + "tags": [ + "assist-service" + ] + }, + { + "predicates": [ + "Path=/ai/admin/*", + "Method=GET" + ], + "filters": [ + "StripPrefix=0" + ], + "tags": [ + "assist-service" + ] + } +] +} diff --git a/apps/acme-assist/build.gradle b/apps/acme-assist/build.gradle new file mode 100644 index 00000000..38ed5d5e --- /dev/null +++ b/apps/acme-assist/build.gradle @@ -0,0 +1,75 @@ +plugins { + id 'java' + id 'org.springframework.boot' version '3.3.2' + id 'io.spring.dependency-management' version '1.1.6' +} + +group = 'com.example.acme.assist' +version = '0.0.1-SNAPSHOT' + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(21) + } +} + +configurations { + compileOnly { + extendsFrom annotationProcessor + } +} + +repositories { + mavenCentral() + maven { url 'https://repo.spring.io/milestone' } + maven { url 'https://repo.spring.io/snapshot'} +} +ext { + set('springAiVersion', "1.0.0-SNAPSHOT") + set('springCloudServicesVersion', "4.1.3") + set('springCloudVersion', "2023.0.3") + set('javaCfenvVersion', "3.2.0") + set('testContainersVersion', "1.20.0") +} + +dependencies { + implementation 'org.springframework.boot:spring-boot-starter-actuator' + implementation 'org.springframework.boot:spring-boot-starter-web' + implementation 'org.springframework.ai:spring-ai-openai-spring-boot-starter' + implementation 'org.springframework.ai:spring-ai-pgvector-store-spring-boot-starter' + implementation 'com.knuddels:jtokkit:1.0.0' + runtimeOnly 'org.postgresql:postgresql' + implementation "io.pivotal.cfenv:java-cfenv-all:${javaCfenvVersion}" + implementation 'org.springframework.credhub:spring-credhub-starter:3.1.0' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-config-client' + implementation 'org.springframework.cloud:spring-cloud-bindings:2.0.3' + annotationProcessor 'org.projectlombok:lombok' + compileOnly 'org.projectlombok:lombok' + implementation 'org.springframework.boot:spring-boot-starter-jdbc' + testImplementation 'org.springframework.boot:spring-boot-starter-test' + testImplementation 'org.skyscreamer:jsonassert:1.5.0' + testImplementation 'org.springframework.boot:spring-boot-testcontainers' + testImplementation "org.testcontainers:junit-jupiter:${testContainersVersion}" + testImplementation "org.testcontainers:postgresql:${testContainersVersion}" +} + +dependencyManagement { + imports { + mavenBom "org.springframework.ai:spring-ai-bom:${springAiVersion}" + mavenBom "io.pivotal.spring.cloud:spring-cloud-services-dependencies:${springCloudServicesVersion}" + mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" + } +} + +bootJar { + mainClass = 'com.example.acme.assist.FitAssistApplication' +} + +bootRun { + mainClass = 'com.example.acme.assist.FitAssistApplication' +} + +tasks.named('test') { + useJUnitPlatform() +} diff --git a/apps/acme-assist/data/accessories.json b/apps/acme-assist/data/accessories.json index 7cbd5132..4f7b7a43 100644 --- a/apps/acme-assist/data/accessories.json +++ b/apps/acme-assist/data/accessories.json @@ -6,7 +6,8 @@ "price": 34.99, "tags": [ "trunkbag" - ] + ], + "id": "0615b286-f3d7-4867-a0e1-626628207f0e" }, { "name": "Velocity Xplorer TrunkPak", @@ -15,7 +16,8 @@ "price": 21.99, "tags": [ "trunkbag" - ] + ], + "id": "de31c206-e0be-44a4-bb30-599832d056fa" }, { "name": "Cyclone Xpress Cargo Trunk Bag", @@ -24,7 +26,8 @@ "price": 54.99, "tags": [ "trunkbag" - ] + ], + "id": "ae640b1c-9379-40d1-bc2e-d9e4f86a3623" }, { "name": "VelozRide CargoMax Trunk Storage Bag", @@ -33,7 +36,8 @@ "price": 18.99, "tags": [ "trunkbag" - ] + ], + "id": "ca74f75f-7623-4b72-a22d-a969709fb81a" }, { "name": "VeloRide VersaRack Cargo System", @@ -42,7 +46,8 @@ "price": 30.99, "tags": [ "trunkbag" - ] + ], + "id": "b6b24e3a-3604-41a3-9a63-375e8bd0543c" }, { "name": "Zephyr AirCharge Floor Pump", @@ -51,7 +56,8 @@ "price": 35.99, "tags": [ "pump" - ] + ], + "id": "c42420a5-e042-413f-be91-26a149fcb247" }, { "name": "SwiftAir TQX Tubeless Charge Pump", @@ -60,7 +66,8 @@ "price": 57.99, "tags": [ "pump" - ] + ], + "id": "6330b405-19f2-4489-bc9f-390135a612ab" }, { "name": "BikeMax InflaCharge Floor Pump", @@ -69,7 +76,8 @@ "price": 38.99, "tags": [ "pump" - ] + ], + "id": "7dc1b4f0-182d-4516-88d4-b128b0f4198c" }, { "name": "GlideGear AirSeal Tubeless Inflator", @@ -78,7 +86,8 @@ "price": 99.99, "tags": [ "pump" - ] + ], + "id": "d61bde95-90b7-4339-9925-16cff172ff54" }, { "name": "CycleCharge Pro Tubeless Tire Inflator", @@ -87,7 +96,8 @@ "price": 129.99, "tags": [ "pump" - ] + ], + "id": "412078c5-36f8-4b2d-810f-3ade3881f1c5" }, { "name": "Velobright Commuter Pro X1 BeamLight Set", @@ -96,7 +106,8 @@ "price": 189.99, "tags": [ "bikelight" - ] + ], + "id": "5045305d-0bec-496b-aca9-e1e1c3771956" }, { "name": "Urban Commuter BeamPro RT FlareX Bike Light Set", @@ -105,7 +116,8 @@ "price": 159.99, "tags": [ "bikelight" - ] + ], + "id": "2cd5cbd0-4d5b-4ec8-bfcf-fdc4f4a4c6dc" }, { "name": "Commute Pro Plus Light System", @@ -114,7 +126,8 @@ "price": 172.99, "tags": [ "bikelight" - ] + ], + "id": "65af2605-12f3-4c67-b0e7-88059b0d7e07" }, { "name": "CommutePro RT BeamPro Bike Light Set", @@ -123,7 +136,8 @@ "price": 94.99, "tags": [ "bikelight" - ] + ], + "id": "04deda76-0b51-4389-88d8-d695ad91ac0f" }, { "name": "Commuter Pro BeamMax RT Bike Light Set", @@ -132,7 +146,8 @@ "price": 105.99, "tags": [ "bikelight" - ] + ], + "id": "a93cb75e-2b2b-49aa-9ccc-a56056f3c77d" }, { "name": "VelocityAir MIPS Road Bike Helmet", @@ -141,7 +156,8 @@ "price": 84.99, "tags": [ "helmet" - ] + ], + "id": "425f164e-6596-499d-9019-3d9bcb6aacaa" }, { "name": "Velocity Pro-X Road Bike Helmet", @@ -150,7 +166,8 @@ "price": 140.99, "tags": [ "helmet" - ] + ], + "id": "5f694765-e3c6-4dfe-b8a4-b9c09393532f" }, { "name": "Swift AeroFlow Bike Helmet", @@ -159,7 +176,8 @@ "price": 136.99, "tags": [ "helmet" - ] + ], + "id": "9e125309-ee63-4ed7-9473-50b6f5ba593c" }, { "name": "Swift AeroGuard Road Bike Helmet", @@ -168,7 +186,8 @@ "price": 99.99, "tags": [ "helmet" - ] + ], + "id": "72e106e7-3b67-46ba-9601-1313dc246b77" }, { "name": "TurboSpeed AeroLite Bike Helmet", @@ -177,7 +196,8 @@ "price": 108.99, "tags": [ "helmet" - ] + ], + "id": "5b79a699-b8bb-459b-8505-276dcdac8232" }, { "name": "Frozgo ChillMax 32oz Insulated Water Bottle", @@ -186,7 +206,8 @@ "price": 27.99, "tags": [ "bottle" - ] + ], + "id": "7ea5ef6a-e92d-480c-b5e7-d86d2f7b6e40" }, { "name": "AquaChill 32oz Insulated Water Bottle", @@ -195,7 +216,8 @@ "price": 24.99, "tags": [ "bottle" - ] + ], + "id": "c3eee158-eaad-4619-8ad6-11935c31488c" }, { "name": "AeroFlow 32oz Hydration Bottle", @@ -204,7 +226,8 @@ "price": 30.99, "tags": [ "bottle" - ] + ], + "id": "f1001d18-ca70-48c9-a257-bc32c960ac4c" }, { "name": "Velocity Frost 32oz Insulated Water Bottle", @@ -213,7 +236,8 @@ "price": 18.99, "tags": [ "bottle" - ] + ], + "id": "ba8092e2-c779-4ac1-b5ac-111c23d64c2e" }, { "name": "Xcel Aqua Freeze 32oz Water Bottle", @@ -222,6 +246,7 @@ "price": 16.99, "tags": [ "bottle" - ] + ], + "id": "baabf51d-3b6d-47d5-9f34-79ca43df0d7c" } ] \ No newline at end of file diff --git a/apps/acme-assist/data/bikes.json b/apps/acme-assist/data/bikes.json index d99dbc99..0f084523 100644 --- a/apps/acme-assist/data/bikes.json +++ b/apps/acme-assist/data/bikes.json @@ -2,11 +2,12 @@ { "name": "E-Adrenaline 8.0 EX1", "shortDescription": "a versatile and comfortable e-MTB designed for adrenaline enthusiasts who want to explore all types of terrain. It features a powerful motor and advanced suspension to provide a smooth and responsive ride, with a variety of customizable settings to fit any rider's needs.", - "description": "## Overview\r\nIt's right for you if...\r\nYou want to push your limits on challenging trails and terrain, with the added benefit of an electric assist to help you conquer steep climbs and rough terrain. You also want a bike with a comfortable and customizable fit, loaded with high-quality components and technology.\r\n\r\nThe tech you get\r\nA lightweight, full ADV Mountain Carbon frame with a customizable geometry, including an adjustable head tube and chainstay length. A powerful and efficient motor with a 375Wh battery that can assist up to 28 mph when it's on, and provides a smooth and seamless transition when it's off. A SRAM EX1 8-speed drivetrain, a RockShox Lyrik Ultimate fork, and a RockShox Super Deluxe Ultimate rear shock.\r\n\r\nThe final word\r\nOur E-Adrenaline 8.0 EX1 is the perfect bike for adrenaline enthusiasts who want to explore all types of terrain. It's versatile, comfortable, and loaded with advanced technology to provide a smooth and responsive ride, no matter where your adventures take you.\r\n\r\n\r\n## Features\r\nVersatile and customizable\r\nThe E-Adrenaline 8.0 EX1 features a customizable geometry, including an adjustable head tube and chainstay length, so you can fine-tune your ride to fit your needs and preferences. It also features a variety of customizable settings, including suspension tuning, motor assistance levels, and more.\r\n\r\nPowerful and efficient\r\nThe bike is equipped with a powerful and efficient motor that provides a smooth and seamless transition between human power and electric assist. It can assist up to 28 mph when it's on, and provides zero drag when it's off.\r\n\r\nAdvanced suspension\r\nThe E-Adrenaline 8.0 EX1 features a RockShox Lyrik Ultimate fork and a RockShox Super Deluxe Ultimate rear shock, providing advanced suspension technology to absorb shocks and bumps on any terrain. The suspension is also customizable to fit your riding style and preferences.\r\n\r\n\r\n## Specs\r\nFrameset\r\nFrame ADV Mountain Carbon main frame & stays, adjustable head tube and chainstay length, tapered head tube, Knock Block, Control Freak internal routing, Boost148, 150mm travel\r\nFork RockShox Lyrik Ultimate, DebonAir spring, Charger 2.1 RC2 damper, remote lockout, tapered steerer, 42mm offset, Boost110, 15mm Maxle Stealth, 160mm travel\r\nShock RockShox Super Deluxe Ultimate, DebonAir spring, Thru Shaft 3-position damper, 230x57.5mm\r\n\r\nWheels\r\nWheel front Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 6-bolt, Boost110, 15mm thru axle\r\nWheel rear Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 54T Rapid Drive, 6-bolt, Shimano MicroSpline freehub, Boost148, 12mm thru axle\r\nSkewer rear Bontrager Switch thru axle, removable lever\r\nTire Bontrager XR5 Team Issue, Tubeless Ready, Inner Strength sidewall, aramid bead, 120tpi, 29x2.50''\r\nTire part Bontrager TLR sealant, 6oz\r\n\r\nDrivetrain\r\nShifter SRAM EX1, 8 speed\r\nRear derailleur SRAM EX1, 8 speed\r\nCrank Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque\r\nChainring SRAM EX1, 18T, steel\r\nCassette SRAM EX1, 11-48, 8 speed\r\nChain SRAM EX1, 8 speed\r\n\r\nComponents\r\nSaddle Bontrager Arvada, hollow chromoly rails, 138mm width\r\nSeatpost Bontrager Line Elite Dropper, internal routing, 31.6mm\r\nHandlebar Bontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width\r\nGrips Bontrager XR Trail Elite, alloy lock-on\r\nStem Bontrager Line Pro, 35mm, Knock Block, Blendr compatible, 0 degree, 50mm length\r\nHeadset Knock Block Integrated, 62-degree radius, cartridge bearing, 1-1\/8'' top, 1.5'' bottom\r\nBrake SRAM G2 RSC hydraulic disc, carbon levers\r\nBrake rotor SRAM Centerline, centerlock, round edge, 200mm\r\n\r\nAccessories\r\nE-bike system Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque\r\nBattery Bosch PowerTube 625, 625Wh\r\nCharger Bosch 4A standard charger\r\nController Bosch Kiox with Anti-theft solution, Bluetooth connectivity, 1.9'' display\r\nTool Bontrager Switch thru axle, removable lever\r\n\r\nWeight\r\nWeight M - 20.25 kg \/ 44.6 lbs (with TLR sealant, no tubes)\r\nWeight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\r\n\r\n## Sizing & fit\r\n\r\n| Size | Rider Height | Inseam |\r\n|:----:|:------------------------:|:--------------------:|\r\n| S | 155 - 170 cm 5'1\" - 5'7\" | 73 - 80 cm 29\" - 31.5\" |\r\n| M | 163 - 178 cm 5'4\" - 5'10\" | 77 - 83 cm 30.5\" - 32.5\" |\r\n| L | 176 - 191 cm 5'9\" - 6'3\" | 83 - 89 cm 32.5\" - 35\" |\r\n| XL | 188 - 198 cm 6'2\" - 6'6\" | 88 - 93 cm 34.5\" - 36.5\" |\r\n\r\n\r\n## Geometry\r\n\r\nAll measurements provided in cm unless otherwise noted.\r\nSizing table\r\n| Frame size letter | S | M | L | XL |\r\n|---------------------------|-------|-------|-------|-------|\r\n| Actual frame size | 15.8 | 17.8 | 19.8 | 21.8 |\r\n| Wheel size | 29\" | 29\" | 29\" | 29\" |\r\n| A \u2014 Seat tube | 40.0 | 42.5 | 47.5 | 51.0 |\r\n| B \u2014 Seat tube angle | 72.5\u00B0 | 72.8\u00B0 | 73.0\u00B0 | 73.0\u00B0 |\r\n| C \u2014 Head tube length | 9.5 | 10.5 | 11.0 | 11.5 |\r\n| D \u2014 Head angle | 67.8\u00B0 | 67.8\u00B0 | 67.8\u00B0 | 67.8\u00B0 |\r\n| E \u2014 Effective top tube | 59.0 | 62.0 | 65.0 | 68.0 |\r\n| F \u2014 Bottom bracket height | 32.5 | 32.5 | 32.5 | 32.5 |\r\n| G \u2014 Bottom bracket drop | 5.5 | 5.5 | 5.5 | 5.5 |\r\n| H \u2014 Chainstay length | 45.0 | 45.0 | 45.0 | 45.0 |\r\n| I \u2014 Offset | 4.5 | 4.5 | 4.5 | 4.5 |\r\n| J \u2014 Trail | 11.0 | 11.0 | 11.0 | 11.0 |\r\n| K \u2014 Wheelbase | 113.0 | 117.0 | 120.0 | 123.0 |\r\n| L \u2014 Standover | 77.0 | 77.0 | 77.0 | 77.0 |\r\n| M \u2014 Frame reach | 41.0 | 44.5 | 47.5 | 50.0 |\r\n| N \u2014 Frame stack | 61.0 | 62.0 | 62.5 | 63.0 |", + "description": "## Overview\r\nIt's right for you if...\r\nYou want to push your limits on challenging trails and terrain, with the added benefit of an electric assist to help you conquer steep climbs and rough terrain. You also want a bike with a comfortable and customizable fit, loaded with high-quality components and technology.\r\n\r\nThe tech you get\r\nA lightweight, full ADV Mountain Carbon frame with a customizable geometry, including an adjustable head tube and chainstay length. A powerful and efficient motor with a 375Wh battery that can assist up to 28 mph when it's on, and provides a smooth and seamless transition when it's off. A SRAM EX1 8-speed drivetrain, a RockShox Lyrik Ultimate fork, and a RockShox Super Deluxe Ultimate rear shock.\r\n\r\nThe final word\r\nOur E-Adrenaline 8.0 EX1 is the perfect bike for adrenaline enthusiasts who want to explore all types of terrain. It's versatile, comfortable, and loaded with advanced technology to provide a smooth and responsive ride, no matter where your adventures take you.\r\n\r\n\r\n## Features\r\nVersatile and customizable\r\nThe E-Adrenaline 8.0 EX1 features a customizable geometry, including an adjustable head tube and chainstay length, so you can fine-tune your ride to fit your needs and preferences. It also features a variety of customizable settings, including suspension tuning, motor assistance levels, and more.\r\n\r\nPowerful and efficient\r\nThe bike is equipped with a powerful and efficient motor that provides a smooth and seamless transition between human power and electric assist. It can assist up to 28 mph when it's on, and provides zero drag when it's off.\r\n\r\nAdvanced suspension\r\nThe E-Adrenaline 8.0 EX1 features a RockShox Lyrik Ultimate fork and a RockShox Super Deluxe Ultimate rear shock, providing advanced suspension technology to absorb shocks and bumps on any terrain. The suspension is also customizable to fit your riding style and preferences.\r\n\r\n\r\n## Specs\r\nFrameset\r\nFrame ADV Mountain Carbon main frame & stays, adjustable head tube and chainstay length, tapered head tube, Knock Block, Control Freak internal routing, Boost148, 150mm travel\r\nFork RockShox Lyrik Ultimate, DebonAir spring, Charger 2.1 RC2 damper, remote lockout, tapered steerer, 42mm offset, Boost110, 15mm Maxle Stealth, 160mm travel\r\nShock RockShox Super Deluxe Ultimate, DebonAir spring, Thru Shaft 3-position damper, 230x57.5mm\r\n\r\nWheels\r\nWheel front Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 6-bolt, Boost110, 15mm thru axle\r\nWheel rear Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 54T Rapid Drive, 6-bolt, Shimano MicroSpline freehub, Boost148, 12mm thru axle\r\nSkewer rear Bontrager Switch thru axle, removable lever\r\nTire Bontrager XR5 Team Issue, Tubeless Ready, Inner Strength sidewall, aramid bead, 120tpi, 29x2.50''\r\nTire part Bontrager TLR sealant, 6oz\r\n\r\nDrivetrain\r\nShifter SRAM EX1, 8 speed\r\nRear derailleur SRAM EX1, 8 speed\r\nCrank Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque\r\nChainring SRAM EX1, 18T, steel\r\nCassette SRAM EX1, 11-48, 8 speed\r\nChain SRAM EX1, 8 speed\r\n\r\nComponents\r\nSaddle Bontrager Arvada, hollow chromoly rails, 138mm width\r\nSeatpost Bontrager Line Elite Dropper, internal routing, 31.6mm\r\nHandlebar Bontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width\r\nGrips Bontrager XR Trail Elite, alloy lock-on\r\nStem Bontrager Line Pro, 35mm, Knock Block, Blendr compatible, 0 degree, 50mm length\r\nHeadset Knock Block Integrated, 62-degree radius, cartridge bearing, 1-1/8'' top, 1.5'' bottom\r\nBrake SRAM G2 RSC hydraulic disc, carbon levers\r\nBrake rotor SRAM Centerline, centerlock, round edge, 200mm\r\n\r\nAccessories\r\nE-bike system Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque\r\nBattery Bosch PowerTube 625, 625Wh\r\nCharger Bosch 4A standard charger\r\nController Bosch Kiox with Anti-theft solution, Bluetooth connectivity, 1.9'' display\r\nTool Bontrager Switch thru axle, removable lever\r\n\r\nWeight\r\nWeight M - 20.25 kg / 44.6 lbs (with TLR sealant, no tubes)\r\nWeight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\r\n\r\n## Sizing & fit\r\n\r\n| Size | Rider Height | Inseam |\r\n|:----:|:------------------------:|:--------------------:|\r\n| S | 155 - 170 cm 5'1\" - 5'7\" | 73 - 80 cm 29\" - 31.5\" |\r\n| M | 163 - 178 cm 5'4\" - 5'10\" | 77 - 83 cm 30.5\" - 32.5\" |\r\n| L | 176 - 191 cm 5'9\" - 6'3\" | 83 - 89 cm 32.5\" - 35\" |\r\n| XL | 188 - 198 cm 6'2\" - 6'6\" | 88 - 93 cm 34.5\" - 36.5\" |\r\n\r\n\r\n## Geometry\r\n\r\nAll measurements provided in cm unless otherwise noted.\r\nSizing table\r\n| Frame size letter | S | M | L | XL |\r\n|---------------------------|-------|-------|-------|-------|\r\n| Actual frame size | 15.8 | 17.8 | 19.8 | 21.8 |\r\n| Wheel size | 29\" | 29\" | 29\" | 29\" |\r\n| A — Seat tube | 40.0 | 42.5 | 47.5 | 51.0 |\r\n| B — Seat tube angle | 72.5° | 72.8° | 73.0° | 73.0° |\r\n| C — Head tube length | 9.5 | 10.5 | 11.0 | 11.5 |\r\n| D — Head angle | 67.8° | 67.8° | 67.8° | 67.8° |\r\n| E — Effective top tube | 59.0 | 62.0 | 65.0 | 68.0 |\r\n| F — Bottom bracket height | 32.5 | 32.5 | 32.5 | 32.5 |\r\n| G — Bottom bracket drop | 5.5 | 5.5 | 5.5 | 5.5 |\r\n| H — Chainstay length | 45.0 | 45.0 | 45.0 | 45.0 |\r\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\r\n| J — Trail | 11.0 | 11.0 | 11.0 | 11.0 |\r\n| K — Wheelbase | 113.0 | 117.0 | 120.0 | 123.0 |\r\n| L — Standover | 77.0 | 77.0 | 77.0 | 77.0 |\r\n| M — Frame reach | 41.0 | 44.5 | 47.5 | 50.0 |\r\n| N — Frame stack | 61.0 | 62.0 | 62.5 | 63.0 |", "price": 1499.99, "tags": [ "bicycle" - ] + ], + "id": "cdc8abf3-51cc-4d73-8bee-8ce876a550e5" }, { "name": "Enduro X Pro", @@ -15,7 +16,8 @@ "price": 599.99, "tags": [ "bicycle" - ] + ], + "id": "117d82ca-d3d2-4742-9fc7-9879a7bd81fb" }, { "name": "Blaze X1", @@ -25,7 +27,8 @@ "tags": [ "bicycle", "mountain bike" - ] + ], + "id": "42ca484d-1e2a-4a3c-bc65-556df7d8f3cd" }, { "name": "Celerity X5", @@ -35,7 +38,8 @@ "tags": [ "bicycle", "city bike" - ] + ], + "id": "cd546ace-f14f-4222-9381-50afd13ce33b" }, { "name": "Velocity V8", @@ -45,7 +49,8 @@ "tags": [ "bicycle", "electric bike" - ] + ], + "id": "94863ddd-f5ce-49e2-aae7-a1cfb76696e2" }, { "name": "VeloCore X9 eMTB", @@ -55,7 +60,8 @@ "tags": [ "bicycle", "touring bike" - ] + ], + "id": "4d62f726-476c-498d-923b-067ed382ea3d" }, { "name": "Zephyr 8.8 GX Eagle AXS Gen 3", @@ -66,7 +72,8 @@ "bicycle", "electric bike", "city bike" - ] + ], + "id": "7ff6f3fc-2d2a-41f4-b168-7609b8b114f4" }, { "name": "Velo 99 XR1 AXS", @@ -76,7 +83,8 @@ "tags": [ "bicycle", "mountain bike" - ] + ], + "id": "7283caf9-a24f-44ea-baba-a9ee64f86b54" }, { "name": "AURORA 11S E-MTB", @@ -86,7 +94,8 @@ "tags": [ "bicycle", "road bike" - ] + ], + "id": "a20f2c21-096e-473c-8a27-abcc793e744b" }, { "name": "VeloTech V9.5 AXS Gen 3", @@ -97,7 +106,8 @@ "bicycle", "electric bike", "city bike" - ] + ], + "id": "6978df65-ece9-44b8-a735-383ac380bad9" }, { "name": "Axiom D8 E-Mountain Bike", @@ -108,7 +118,8 @@ "bicycle", "electric bike", "mountain bike" - ] + ], + "id": "f2a584c8-3fd1-4ec4-b47b-42259a412e48" }, { "name": "Velocity X1", @@ -118,7 +129,8 @@ "tags": [ "bicycle", "touring bike" - ] + ], + "id": "b991ca5b-2b7e-4642-a37a-e5c87e67d771" }, { "name": "Velocity V9", @@ -129,7 +141,8 @@ "bicycle", "electric bike", "mountain bike" - ] + ], + "id": "2fc78496-60fe-4322-8912-ebe6aa45971b" }, { "name": "Aero Pro X", @@ -139,7 +152,8 @@ "tags": [ "bicycle", "road bike" - ] + ], + "id": "033463b6-b07e-4e17-b022-06899c4d2d3e" }, { "name": "Voltex+ Ultra Lowstep", @@ -150,7 +164,8 @@ "bicycle", "road bike", "professional" - ] + ], + "id": "13305239-699f-4f2c-811f-62cd820588e7" }, { "name": "SwiftRide Hybrid", @@ -161,7 +176,8 @@ "bicycle", "mountain bike", "professional" - ] + ], + "id": "dc9b83db-03ad-4eaa-9710-e167600353e7" }, { "name": "RoadRunner E-Speed Lowstep", @@ -172,7 +188,8 @@ "bicycle", "road bike", "professional" - ] + ], + "id": "78aa6adf-93e0-453a-8f08-0c87e212c859" }, { "name": "Hyperdrive Turbo X1", @@ -183,7 +200,8 @@ "bicycle", "city bike", "professional" - ] + ], + "id": "b73aa67b-550d-4fef-9532-2aa9493431a0" }, { "name": "Horizon+ Evo Lowstep", @@ -194,7 +212,8 @@ "bicycle", "road bike", "professional" - ] + ], + "id": "ecef2e14-72bd-4afa-adfc-92892dcbb6e7" }, { "name": "FastRider X1", @@ -205,7 +224,8 @@ "bicycle", "mountain bike", "professional" - ] + ], + "id": "2f26a20f-91ef-4407-a89c-be8bdc7cf7ee" }, { "name": "SonicRide 8S", @@ -216,7 +236,8 @@ "bicycle", "road bike", "professional" - ] + ], + "id": "7b593451-c042-4b1b-9457-d8b640f44327" }, { "name": "SwiftVolt Pro", @@ -227,7 +248,8 @@ "bicycle", "city bike", "professional" - ] + ], + "id": "ed1cce28-4170-4b8f-a6dc-3ab287e86e0f" }, { "name": "AgileEon 9X", @@ -238,7 +260,8 @@ "bicycle", "road bike", "professional" - ] + ], + "id": "486c57c0-ab59-4632-acbc-3e881f8a1472" }, { "name": "Stealth R1X Pro", @@ -249,7 +272,8 @@ "bicycle", "mountain bike", "professional" - ] + ], + "id": "d82e62b3-63e4-4496-ae2a-2af01a08cb39" }, { "name": "Avant SLR 6 Disc Pro", @@ -260,6 +284,7 @@ "bicycle", "city bike", "professional" - ] + ], + "id": "9085a07c-56c5-4a3d-91f7-fc2bc68bc11e" } ] \ No newline at end of file diff --git a/apps/acme-assist/data/migrations/V1_1__insert_products.sql b/apps/acme-assist/data/migrations/V1_1__insert_products.sql deleted file mode 100644 index 21734bc6..00000000 --- a/apps/acme-assist/data/migrations/V1_1__insert_products.sql +++ /dev/null @@ -1,3370 +0,0 @@ -INSERT INTO CATALOG (id, description, image_url1, image_url2, image_url3, name, price, short_description, tags) -VALUES -('3ed774ec-3c09-47c6-9ed7-e67b29cde6cb', '## Overview -It''s right for you if... -You want to push your limits on challenging trails and terrain, with the added benefit of an electric assist to help you conquer steep climbs and rough terrain. You also want a bike with a comfortable and customizable fit, loaded with high-quality components and technology. - -The tech you get -A lightweight, full ADV Mountain Carbon frame with a customizable geometry, including an adjustable head tube and chainstay length. A powerful and efficient motor with a 375Wh battery that can assist up to 28 mph when it''s on, and provides a smooth and seamless transition when it''s off. A SRAM EX1 8-speed drivetrain, a RockShox Lyrik Ultimate fork, and a RockShox Super Deluxe Ultimate rear shock. - -The final word -Our E-Adrenaline 8.0 EX1 is the perfect bike for adrenaline enthusiasts who want to explore all types of terrain. It''s versatile, comfortable, and loaded with advanced technology to provide a smooth and responsive ride, no matter where your adventures take you. - - -## Features -Versatile and customizable -The E-Adrenaline 8.0 EX1 features a customizable geometry, including an adjustable head tube and chainstay length, so you can fine-tune your ride to fit your needs and preferences. It also features a variety of customizable settings, including suspension tuning, motor assistance levels, and more. - -Powerful and efficient -The bike is equipped with a powerful and efficient motor that provides a smooth and seamless transition between human power and electric assist. It can assist up to 28 mph when it''s on, and provides zero drag when it''s off. - -Advanced suspension -The E-Adrenaline 8.0 EX1 features a RockShox Lyrik Ultimate fork and a RockShox Super Deluxe Ultimate rear shock, providing advanced suspension technology to absorb shocks and bumps on any terrain. The suspension is also customizable to fit your riding style and preferences. - - -## Specs -Frameset -Frame ADV Mountain Carbon main frame & stays, adjustable head tube and chainstay length, tapered head tube, Knock Block, Control Freak internal routing, Boost148, 150mm travel -Fork RockShox Lyrik Ultimate, DebonAir spring, Charger 2.1 RC2 damper, remote lockout, tapered steerer, 42mm offset, Boost110, 15mm Maxle Stealth, 160mm travel -Shock RockShox Super Deluxe Ultimate, DebonAir spring, Thru Shaft 3-position damper, 230x57.5mm - -Wheels -Wheel front Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 6-bolt, Boost110, 15mm thru axle -Wheel rear Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 54T Rapid Drive, 6-bolt, Shimano MicroSpline freehub, Boost148, 12mm thru axle -Skewer rear Bontrager Switch thru axle, removable lever -Tire Bontrager XR5 Team Issue, Tubeless Ready, Inner Strength sidewall, aramid bead, 120tpi, 29x2.50'''' -Tire part Bontrager TLR sealant, 6oz - -Drivetrain -Shifter SRAM EX1, 8 speed -Rear derailleur SRAM EX1, 8 speed -Crank Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque -Chainring SRAM EX1, 18T, steel -Cassette SRAM EX1, 11-48, 8 speed -Chain SRAM EX1, 8 speed - -Components -Saddle Bontrager Arvada, hollow chromoly rails, 138mm width -Seatpost Bontrager Line Elite Dropper, internal routing, 31.6mm -Handlebar Bontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width -Grips Bontrager XR Trail Elite, alloy lock-on -Stem Bontrager Line Pro, 35mm, Knock Block, Blendr compatible, 0 degree, 50mm length -Headset Knock Block Integrated, 62-degree radius, cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -Brake SRAM G2 RSC hydraulic disc, carbon levers -Brake rotor SRAM Centerline, centerlock, round edge, 200mm - -Accessories -E-bike system Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque -Battery Bosch PowerTube 625, 625Wh -Charger Bosch 4A standard charger -Controller Bosch Kiox with Anti-theft solution, Bluetooth connectivity, 1.9'''' display -Tool Bontrager Switch thru axle, removable lever - -Weight -Weight M - 20.25 kg / 44.6 lbs (with TLR sealant, no tubes) -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing & fit - -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| S | 155 - 170 cm 5''1" - 5''7" | 73 - 80 cm 29" - 31.5" | -| M | 163 - 178 cm 5''4" - 5''10" | 77 - 83 cm 30.5" - 32.5" | -| L | 176 - 191 cm 5''9" - 6''3" | 83 - 89 cm 32.5" - 35" | -| XL | 188 - 198 cm 6''2" - 6''6" | 88 - 93 cm 34.5" - 36.5" | - - -## Geometry - -All measurements provided in cm unless otherwise noted. -Sizing table -| Frame size letter | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| Actual frame size | 15.8 | 17.8 | 19.8 | 21.8 | -| Wheel size | 29" | 29" | 29" | 29" | -| A — Seat tube | 40.0 | 42.5 | 47.5 | 51.0 | -| B — Seat tube angle | 72.5° | 72.8° | 73.0° | 73.0° | -| C — Head tube length | 9.5 | 10.5 | 11.0 | 11.5 | -| D — Head angle | 67.8° | 67.8° | 67.8° | 67.8° | -| E — Effective top tube | 59.0 | 62.0 | 65.0 | 68.0 | -| F — Bottom bracket height | 32.5 | 32.5 | 32.5 | 32.5 | -| G — Bottom bracket drop | 5.5 | 5.5 | 5.5 | 5.5 | -| H — Chainstay length | 45.0 | 45.0 | 45.0 | 45.0 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 11.0 | 11.0 | 11.0 | 11.0 | -| K — Wheelbase | 113.0 | 117.0 | 120.0 | 123.0 | -| L — Standover | 77.0 | 77.0 | 77.0 | 77.0 | -| M — Frame reach | 41.0 | 44.5 | 47.5 | 50.0 | -| N — Frame stack | 61.0 | 62.0 | 62.5 | 63.0 |', '/static/images/new_data/bikes.json_1.jpg', '/static/images/new_data/bikes.json_1.jpg', '/static/images/new_data/bikes.json_1.jpg', 'E-Adrenaline 8.0 EX1', 1499.99, 'a versatile and comfortable e-MTB designed for adrenaline enthusiasts who want to explore all types of terrain. It features a powerful motor and advanced suspension to provide a smooth and responsive ride, with a variety of customizable settings to fit any rider''s needs.', 'bicycle'), -('00d71e6b-b934-4616-b978-65a2c85da4a4', '## Overview -It''s right for you if... -You''re an experienced mountain biker who wants a high-performance bike that can handle any terrain. You want a bike with the best components available, including a full carbon frame, suspension system, and hydraulic disc brakes. - -The tech you get -Our top-of-the-line full carbon frame with aggressive geometry and a slack head angle for maximum control. It''s equipped with a Fox Factory suspension system with 170mm of travel in the front and 160mm in the rear, a Shimano XTR 12-speed drivetrain, and hydraulic disc brakes for maximum stopping power. The bike also features a dropper seatpost for easy adjustments on the fly. - -The final word -The Enduro X Pro is the ultimate mountain bike for riders who demand the best. With its full carbon frame, top-of-the-line components, and aggressive geometry, this bike is ready to take on any trail. Whether you''re a seasoned pro or just starting out, the Enduro X Pro will help you take your riding to the next level. - -## Features -Full carbon frame -Aggressive geometry with a slack head angle -Fox Factory suspension system with 170mm of travel in the front and 160mm in the rear -Shimano XTR 12-speed drivetrain -Hydraulic disc brakes for maximum stopping power -Dropper seatpost for easy adjustments on the fly - -## Specifications -Frameset -Frame Full carbon frame -Fork Fox Factory suspension system with 170mm of travel -Rear suspension Fox Factory suspension system with 160mm of travel - -Wheels -Wheel size 27.5" or 29" -Tires Tubeless-ready Maxxis tires - -Drivetrain -Shifters Shimano XTR 12-speed -Front derailleur N/A -Rear derailleur Shimano XTR -Crankset Shimano XTR -Cassette Shimano XTR 12-speed -Chain Shimano XTR - -Components -Brakes Hydraulic disc brakes -Handlebar Alloy handlebar -Stem Alloy stem -Seatpost Dropper seatpost - -Accessories -Pedals Not included - -Weight -Weight Approximately 27-29 lbs - -## Sizing -| Size | Rider Height | -|:----:|:-------------------------:| -| S | 5''4" - 5''8" (162-172cm) | -| M | 5''8" - 5''11" (172-180cm) | -| L | 5''11" - 6''3" (180-191cm) | -| XL | 6''3" - 6''6" (191-198cm) | - -## Geometry -| Size | S | M | L | XL | -|:----:|:---------------:|:---------------:|:-----------------:|:---------------:| -| A - Seat tube length | 390mm | 425mm | 460mm | 495mm | -| B - Effective top tube length | 585mm | 610mm | 635mm | 660mm | -| C - Head tube angle | 65.5° | 65.5° | 65.5° | 65.5° | -| D - Seat tube angle | 76° | 76° | 76° | 76° | -| E - Chainstay length | 435mm | 435mm | 435mm | 435mm | -| F - Head tube length | 100mm | 110mm | 120mm | 130mm | -| G - BB drop | 20mm | 20mm | 20mm | 20mm | -| H - Wheelbase | 1155mm | 1180mm | 1205mm | 1230mm | -| I - Standover height | 780mm | 800mm | 820mm | 840mm | -| J - Reach | 425mm | 450mm | 475mm | 500mm | -| K - Stack | 610mm | 620mm | 630mm | 640mm |', '/static/images/new_data/bikes.json_2.jpg', '/static/images/new_data/bikes.json_2.jpg', '/static/images/new_data/bikes.json_2.jpg', 'Enduro X Pro', 599.99, 'The Enduro X Pro is the ultimate mountain bike for riders who demand the best. With its full carbon frame and top-of-the-line components, this bike is ready to tackle any trail, from technical downhill descents to grueling uphill climbs.', 'bicycle'), -('18c33e50-a48c-47fe-b315-9676aee6eb9a', '## Overview -It''s right for you if... -You''re a competitive road cyclist or an enthusiast who enjoys fast-paced group rides. You want a bike that is lightweight, agile, and delivers exceptional speed. - -The tech you get -Blaze X1 features a lightweight carbon frame with a tapered head tube and aerodynamic tube shapes for maximum speed and efficiency. The bike is equipped with a 12-speed Shimano Ultegra drivetrain for smooth and precise shifting, Shimano hydraulic disc brakes for powerful and reliable stopping power, and Bontrager Aeolus Elite 35 carbon wheels for increased speed and agility. - -The final word -Blaze X1 is a high-performance road bike that is designed to deliver exceptional speed and agility. With its cutting-edge technology and top-of-the-line components, it''s a bike that is built to perform and dominate on any road. - -## Features -Speed and efficiency -Blaze X1''s lightweight carbon frame and aerodynamic tube shapes offer maximum speed and efficiency, allowing you to ride faster and farther with ease. - -Precision stopping power -Shimano hydraulic disc brakes provide precise and reliable stopping power, even in wet or muddy conditions. - -Agility and control -Bontrager Aeolus Elite 35 carbon wheels make Blaze X1 incredibly agile and responsive, allowing you to navigate tight turns and corners with ease. - -Smooth and precise shifting -The 12-speed Shimano Ultegra drivetrain offers smooth and precise shifting, so you can easily find the right gear for any terrain. - -## Specifications -Frameset -Frame ADV Carbon, tapered head tube, BB90, direct mount rim brakes, internal cable routing, DuoTrap S compatible, 130x9mm QR -Fork ADV Carbon, tapered steerer, direct mount rim brakes, internal brake routing, 100x9mm QR - -Wheels -Wheel front Bontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, 100x9mm QR -Wheel rear Bontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, Shimano 11-speed freehub, 130x9mm QR -Tire front Bontrager R3 Hard-Case Lite, aramid bead, 120 tpi, 700x25c -Tire rear Bontrager R3 Hard-Case Lite, aramid bead, 120 tpi, 700x25c -Max tire size 25c Bontrager tires (with at least 4mm of clearance to frame) - -Drivetrain -Shifter Shimano Ultegra R8020, 12 speed -Front derailleur Shimano Ultegra R8000, braze-on -Rear derailleur Shimano Ultegra R8000, short cage, 30T max cog -Crank Size: 50, 52, 54 -Shimano Ultegra R8000, 50/34 (compact), 170mm length -Size: 56, 58, 60, 62 -Shimano Ultegra R8000, 50/34 (compact), 172.5mm length -Bottom bracket BB90, Shimano press-fit -Cassette Shimano Ultegra R8000, 11-30, 12 speed -Chain Shimano Ultegra HG701, 12 speed - -Components -Saddle Bontrager Montrose Elite, titanium rails, 138mm width -Seatpost Bontrager carbon seatmast cap, 20mm offset -Handlebar Bontrager Elite Aero VR-CF, alloy, 31.8mm, internal cable routing, 40cm width -Grips Bontrager Supertack Perf tape -Stem Bontrager Elite, 31.8mm, Blendr-compatible, 7 degree, 80mm length -Brake Shimano Ultegra hydraulic disc brake - -Weight -Weight 56 - 8.91 kg / 19.63 lbs (with tubes) -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg). - -## Sizing -| Size | Rider height | -|------|-------------| -| 50 | 162-166cm | -| 52 | 165-170cm | -| 54 | 168-174cm | -| 56 | 174-180cm | -| 58 | 179-184cm | -| 60 | 184-189cm | -| 62 | 189-196cm | - -## Geometry -| Frame size | 50cm | 52cm | 54cm | 56cm | 58cm | 60cm | 62cm | -|------------|-------|-------|-------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | 700c | -| A - Seat tube | 443mm | 460mm | 478mm | 500mm | 520mm | 540mm | 560mm | -| B - Seat tube angle | 74.1° | 73.9° | 73.7° | 73.4° | 73.2° | 73.0° | 72.8° | -| C - Head tube length | 100mm | 110mm | 130mm | 150mm | 170mm | 190mm | 210mm | -| D - Head angle | 71.4° | 72.0° | 72.5° | 73.0° | 73.3° | 73.6° | 73.8° | -| E - Effective top tube | 522mm | 535mm | 547mm | 562mm | 577mm | 593mm | 610mm | -| F - Bottom bracket height | 268mm | 268mm | 268mm | 268mm | 268mm | 268mm | 268mm | -| G - Bottom bracket drop | 69mm | 69mm | 69mm | 69mm | 69mm | 69mm | 69mm | -| H - Chainstay length | 410mm | 410mm | 410mm | 410mm | 410mm | 410mm | 410mm | -| I - Offset | 50mm | 50mm | 50mm | 50mm | 50mm | 50mm | 50mm | -| J - Trail | 65mm | 62mm | 59mm | 56mm | 55mm | 53mm | 52mm | -| K - Wheelbase | 983mm | 983mm | 990mm | 1005mm | 1019mm | 1036mm | 1055mm | -| L - Standover | 741mm | 765mm | 787mm | 806mm | 825mm | 847mm | 869mm |', '/static/images/new_data/bikes.json_3.jpg', '/static/images/new_data/bikes.json_3.jpg', '/static/images/new_data/bikes.json_3.jpg', 'Blaze X1', 799.99, 'Blaze X1 is a high-performance road bike that offers superior speed and agility, making it perfect for competitive racing or fast-paced group rides. The bike features a lightweight carbon frame, aerodynamic tube shapes, a 12-speed Shimano Ultegra drivetrain, and hydraulic disc brakes for precise stopping power. With its sleek design and cutting-edge technology, Blaze X1 is a bike that is built to perform and dominate on any road.', 'bicycle,mountain bike'), -('be697785-0c0a-4489-8068-41bc4548f96b', '## Overview - -It''s right for you if... -You are looking for a high-performance road bike that offers a perfect balance of speed, comfort, and control. You enjoy long-distance rides and need a bike that is designed to handle various road conditions with ease. You also appreciate the latest technology and reliable components that make your riding experience more enjoyable. - -The tech you get -Celerity X5 is equipped with a full carbon fiber frame that ensures maximum strength and durability while keeping the weight down. It features a Shimano 105 groupset with 11-speed gearing for precise and efficient shifting. Hydraulic disc brakes offer superior stopping power, and 28mm wide tires provide comfort and stability on various road surfaces. Internal cable routing enhances the bike''s sleek appearance. - -The final word -If you are looking for a high-performance road bike that offers comfort, speed, and control, Celerity X5 is the perfect choice. With its lightweight carbon fiber frame, reliable components, and advanced technology, this bike is designed to help you enjoy long-distance rides with ease. - -## Features - -Lightweight and responsive -Celerity X5 comes with a full carbon fiber frame that is not only lightweight but also responsive, providing excellent handling and control. - -Hydraulic disc brakes -This bike is equipped with hydraulic disc brakes that provide superior stopping power in all weather conditions, ensuring your safety and confidence on the road. - -Comfortable rides -The 28mm wide tires and carbon seat post provide ample cushioning, ensuring a smooth and comfortable ride over long distances. - -Sleek appearance -The bike''s internal cable routing enhances its sleek appearance while also protecting the cables from the elements, ensuring smooth shifting for longer periods. - -## Specifications - -Frameset -Frame Celerity X5 Full Carbon Fiber Frame, Internal Cable Routing, Tapered Headtube, Press Fit Bottom Bracket, 12x142mm Thru-Axle -Fork Celerity X5 Full Carbon Fiber Fork, Internal Brake Routing, 12x100mm Thru-Axle - -Wheels -Wheelset AlexRims CXD7 Wheelset -Tire Schwalbe Durano Plus 700x28mm -Inner Tubes Schwalbe SV15 700x18-28mm -Skewers Celerity X5 Thru-Axle Skewers - -Drivetrain -Shifter Shimano 105 R7025 Hydraulic Disc Shifters -Front Derailleur Shimano 105 R7000 -Rear Derailleur Shimano 105 R7000 -Crankset Shimano 105 R7000 50-34T -Bottom Bracket Shimano BB72-41B -Cassette Shimano 105 R7000 11-30T -Chain Shimano HG601 11-Speed Chain - -Components -Saddle Selle Royal Asphalt Saddle -Seatpost Celerity X5 Carbon Seatpost -Handlebar Celerity X5 Compact Handlebar -Stem Celerity X5 Aluminum Stem -Headset FSA Orbit IS-2 - -Brakes -Brakes Shimano 105 R7025 Hydraulic Disc Brakes -Rotors Shimano SM-RT70 160mm Rotors - -Accessories -Pedals Celerity X5 Road Pedals - -Weight -Weight 8.2 kg / 18.1 lbs -Weight Limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 120 kg (265 lbs). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| 49 | 155 - 162 cm 5''1" - 5''4" | 71 - 76 cm 28" - 30" | -| 52 | 162 - 170 cm 5''4" - 5''7" | 74 - 79 cm 29" - 31" | -| 54 | 170 - 178 cm 5''7" - 5''10" | 77 - 83 cm 30" - 32" | -| 56 | 178 - 185 cm 5''10" - 6''1" | 82 - 88 cm 32" - 34" | -| 58 | 185 - 193 cm 6''1" - 6''4" | 86 - 92 cm 34" - 36" | -| 61 | 193 - 200 cm 6''4" - 6''7" | 90 - 95 cm 35" - 37" | - -## Geometry -| Frame size number | 49 cm | 52 cm | 54 cm | 56 cm | 58 cm | 61 cm | -|---------------------------------------|-------|-------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | -| A — Seat tube | 47.5 | 50.0 | 52.0 | 54.0 | 56.0 | 58.5 | -| B — Seat tube angle | 75.0° | 74.5° | 74.0° | 73.5° | 73.0° | 72.5° | -| C — Head tube length | 12.0 | 14.5 | 16.5 | 18.5 | 20.5 | 23.5 | -| D — Head angle | 70.0° | 71.0° | 71.5° | 72.0° | 72.5° | 72.5° | -| E — Effective top tube | 52.5 | 53.5 | 54.5 | 56.0 | 57.5 | 59.5 | -| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 | -| H — Chainstay length | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 | -| K — Wheelbase | 98.4 | 98.9 | 99.8 | 100.8 | 101.7 | 103.6 | -| L — Standover | 72.0 | 74.0 | 76.0 | 78.0 | 80.0 | 82.0 | -| M — Frame reach | 36.2 | 36.8 | 37.3 | 38.1 | 38.6 | 39.4 | -| N — Frame stack | 52.0 | 54.3 | 56.2 | 58.1 | 59.8 | 62.4 | -| Saddle rail height min | 67.0 | 69.5 | 71.5 | 74.0 | 76.0 | 78.0 | -| Saddle rail height max | 75.0 | 77.5 | 79.5 | 82.0 | 84.0 | 86.0 |', '/static/images/new_data/bikes.json_4.jpg', '/static/images/new_data/bikes.json_4.jpg', '/static/images/new_data/bikes.json_4.jpg', 'Celerity X5', 399.99, 'Celerity X5 is a versatile and reliable road bike that is designed for experienced and amateur riders alike. It''s designed to provide smooth and comfortable rides over long distances. With an ultra-lightweight and responsive carbon fiber frame, Shimano 105 groupset, hydraulic disc brakes, and 28mm wide tires, this bike ensures efficient power transfer, precise handling, and superior stopping power.', 'bicycle,city bike'), -('c48bd23d-3dad-4079-9183-0a9866c29ef7', '## Overview - -It''s right for you if... -You are an experienced rider who is looking for a high-performance road bike that is lightweight, agile, and responsive. You want a bike that can handle long-distance rides, steep climbs, and fast descents with ease. You also appreciate the latest technology and reliable components that make your riding experience more enjoyable. - -The tech you get -Velocity V8 features a lightweight aluminum frame with a carbon fiber fork that ensures a comfortable ride without sacrificing stiffness and power transfer. It comes with a Shimano Tiagra groupset with 10-speed gearing for precise and efficient shifting. Hydraulic disc brakes offer superior stopping power in all weather conditions, while 28mm wide tires provide comfort and stability on various road surfaces. Internal cable routing enhances the bike''s sleek appearance. - -The final word -If you are looking for a high-performance road bike that is lightweight, fast, and responsive, Velocity V8 is the perfect choice. With its lightweight aluminum frame, reliable components, and advanced technology, this bike is designed to help you enjoy fast and comfortable rides on the road. - -## Features - -Lightweight and responsive -Velocity V8 comes with a lightweight aluminum frame that is not only lightweight but also responsive, providing excellent handling and control. - -Hydraulic disc brakes -This bike is equipped with hydraulic disc brakes that provide superior stopping power in all weather conditions, ensuring your safety and confidence on the road. - -Comfortable rides -The 28mm wide tires and carbon fork provide ample cushioning, ensuring a smooth and comfortable ride over long distances. - -Sleek appearance -The bike''s internal cable routing enhances its sleek appearance while also protecting the cables from the elements, ensuring smooth shifting for longer periods. - -## Specifications - -Frameset -Frame Velocity V8 Aluminum Frame, Internal Cable Routing, Tapered Headtube, Press Fit Bottom Bracket, 12x142mm Thru-Axle -Fork Velocity V8 Carbon Fiber Fork, Internal Brake Routing, 12x100mm Thru-Axle - -Wheels -Wheelset AlexRims CXD7 Wheelset -Tire Schwalbe Durano Plus 700x28mm -Inner Tubes Schwalbe SV15 700x18-28mm -Skewers Velocity V8 Thru-Axle Skewers - -Drivetrain -Shifter Shimano Tiagra Hydraulic Disc Shifters -Front Derailleur Shimano Tiagra -Rear Derailleur Shimano Tiagra -Crankset Shimano Tiagra 50-34T -Bottom Bracket Shimano BB-RS500-PB -Cassette Shimano Tiagra 11-32T -Chain Shimano HG54 10-Speed Chain - -Components -Saddle Velocity V8 Saddle -Seatpost Velocity V8 Aluminum Seatpost -Handlebar Velocity V8 Compact Handlebar -Stem Velocity V8 Aluminum Stem -Headset FSA Orbit IS-2 - -Brakes -Brakes Shimano Tiagra Hydraulic Disc Brakes -Rotors Shimano SM-RT64 160mm Rotors - -Accessories -Pedals Velocity V8 Road Pedals - -Weight -Weight 9.4 kg / 20.7 lbs -Weight Limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 120 kg (265 lbs). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| 49 | 155 - 162 cm 5''1" - 5''4" | 71 - 76 cm 28" - 30" | -| 52 | 162 - 170 cm 5''4" - 5''7" | 74 - 79 cm 29" - 31" | -| 54 | 170 - 178 cm 5''7" - 5''10" | 77 - 83 cm 30" - 32" | -| 56 | 178 - 185 cm 5''10" - 6''1" | 82 - 88 cm 32" - 34" | -| 58 | 185 - 193 cm 6''1" - 6''4" | 86 - 92 cm 34" - 36" | -| 61 | 193 - 200 cm 6''4" - 6''7" | 90 - 95 cm 35" - 37" | - -## Geometry -| Frame size number | 49 cm | 52 cm | 54 cm | 56 cm | 58 cm | 61 cm | -|---------------------------------------|-------|-------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | -| A — Seat tube | 47.5 | 50.0 | 52.0 | 54.0 | 56.0 | 58.5 | -| B — Seat tube angle | 75.0° | 74.5° | 74.0° | 73.5° | 73.0° | 72.5° | -| C — Head tube length | 12.0 | 14.5 | 16.5 | 18.5 | 20.5 | 23.5 | -| D — Head angle | 70.0° | 71.0° | 71.5° | 72.0° | 72.5° | 72.5° | -| E — Effective top tube | 52.5 | 53.5 | 54.5 | 56.0 | 57.5 | 59.5 | -| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 | -| H — Chainstay length | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 | -| K — Wheelbase | 98.4 | 98.9 | 99.8 | 100.8 | 101.7 | 103.6 | -| L — Standover | 72.0 | 74.0 | 76.0 | 78.0 | 80.0 | 82.0 | -| M — Frame reach | 36.2 | 36.8 | 37.3 | 38.1 | 38.6 | 39.4 | -| N — Frame stack | 52.0 | 54.3 | 56.2 | 58.1 | 59.8 | 62.4 | -| Saddle rail height min | 67.0 | 69.5 | 71.5 | 74.0 | 76.0 | 78.0 | -| Saddle rail height max | 75.0 | 77.5 | 79.5 | 82.0 | 84.0 | 86.0 |', '/static/images/new_data/bikes.json_5.jpg', '/static/images/new_data/bikes.json_5.jpg', '/static/images/new_data/bikes.json_5.jpg', 'Velocity V8', 1899.99, 'Velocity V8 is a high-performance road bike that is designed to deliver speed, agility, and control on the road. With its lightweight aluminum frame, carbon fiber fork, Shimano Tiagra groupset, and hydraulic disc brakes, this bike is perfect for experienced riders who are looking for a fast and responsive bike that can handle various road conditions.', 'bicycle,electric bike'), -('27a42027-342c-4608-bb7e-9ab4a1e4517d', '## Overview -It''s right for you if... -You love exploring new trails and testing your limits on challenging terrain. You want an electric mountain bike that offers power when you need it, without sacrificing performance or agility. You''re looking for a high-quality bike with top-notch components and a sleek design. - -The tech you get -A lightweight, full carbon frame with custom geometry, a 140mm RockShox Pike Ultimate fork with Charger 2.1 damper, and a Fox Float DPS Performance shock. A Shimano STEPS E8000 motor and 504Wh battery that provide up to 62 miles of range and 20 mph assistance. A Shimano XT 12-speed drivetrain, Shimano SLX brakes, and DT Swiss wheels. - -The final word -The VeloCore X9 eMTB delivers power and agility in equal measure. It''s a versatile and capable electric mountain bike that can handle any trail with ease. With premium components, a custom carbon frame, and a sleek design, this bike is built for adventure. - -## Features -Agile and responsive - -The VeloCore X9 eMTB is designed to be nimble and responsive on the trail. Its custom carbon frame offers a perfect balance of stiffness and compliance, while the suspension system provides smooth and stable performance on technical terrain. - -Powerful and efficient - -The Shimano STEPS E8000 motor and 504Wh battery provide up to 62 miles of range and 20 mph assistance. The motor delivers smooth and powerful performance, while the battery offers reliable and consistent power for long rides. - -Customizable ride experience - -The VeloCore X9 eMTB comes with an intuitive and customizable Shimano STEPS display that allows you to adjust the level of assistance, monitor your speed and battery life, and customize your ride experience to suit your needs. - -Premium components - -The VeloCore X9 eMTB is equipped with high-end components, including a Shimano XT 12-speed drivetrain, Shimano SLX brakes, and DT Swiss wheels. These components offer reliable and precise performance, allowing you to push your limits with confidence. - -## Specs -Frameset -Frame VeloCore carbon fiber frame, Boost, tapered head tube, internal cable routing, 140mm travel -Fork RockShox Pike Ultimate, Charger 2.1 damper, DebonAir spring, 15x110mm Boost Maxle Ultimate, 46mm offset, 140mm travel -Shock Fox Float DPS Performance, EVOL, 3-position adjust, Kashima Coat, 210x50mm - -Wheels -Wheel front DT Swiss XM1700 Spline, 30mm internal width, 15x110mm Boost axle -Wheel rear DT Swiss XM1700 Spline, 30mm internal width, Shimano Microspline driver, 12x148mm Boost axle -Tire front Maxxis Minion DHF, 29x2.5", EXO+ casing, tubeless ready -Tire rear Maxxis Minion DHR II, 29x2.4", EXO+ casing, tubeless ready - -Drivetrain -Shifter Shimano XT M8100, 12-speed -Rear derailleur Shimano XT M8100, Shadow Plus, long cage, 51T max cog -Crankset Shimano STEPS E8000, 165mm length, 34T chainring -Cassette Shimano XT M8100, 10-51T, 12-speed -Chain Shimano CN-M8100, 12-speed -Pedals Not included - -Components -Saddle Bontrager Arvada, hollow chromoly rails -Seatpost Drop Line, internal routing, 31.6mm (15.5: 100mm, 17.5 & 18.5: 125mm, 19.5 & 21.5: 150mm) -Handlebar Bontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width -Stem Bontrager Line Pro, 35mm, Knock Block, 0 degree, 50mm length -Grips Bontrager XR Trail Elite, alloy lock-on -Headset Integrated, sealed cartridge bearing, 1-1/8" top, 1.5" bottom -Brakeset Shimano SLX M7120, 4-piston hydraulic disc - -Accessories -Battery Shimano STEPS BT-E8010, 504Wh -Charger Shimano STEPS EC-E8004, 4A -Controller Shimano STEPS E8000 display -Bike weight M - 22.5 kg / 49.6 lbs (with tubes) - -## Sizing & fit - -| Size | Rider Height | -|:----:|:------------------------:| -| S | 162 - 170 cm 5''4" - 5''7" | -| M | 170 - 178 cm 5''7" - 5''10"| -| L | 178 - 186 cm 5''10" - 6''1"| -| XL | 186 - 196 cm 6''1" - 6''5" | - -## Geometry - -All measurements provided in cm unless otherwise noted. - -| Frame size | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| A — Seat tube | 40.6 | 43.2 | 47.0 | 51.0 | -| B — Seat tube angle | 75.0° | 75.0° | 75.0° | 75.0° | -| C — Head tube length | 9.6 | 10.6 | 11.6 | 12.6 | -| D — Head angle | 66.5° | 66.5° | 66.5° | 66.5° | -| E — Effective top tube | 60.4 | 62.6 | 64.8 | 66.9 | -| F — Bottom bracket height | 33.2 | 33.2 | 33.2 | 33.2 | -| G — Bottom bracket drop | 3.0 | 3.0 | 3.0 | 3.0 | -| H — Chainstay length | 45.5 | 45.5 | 45.5 | 45.5 | -| I — Offset | 4.6 | 4.6 | 4.6 | 4.6 | -| J — Trail | 11.9 | 11.9 | 11.9 | 11.9 | -| K — Wheelbase | 117.0 | 119.3 | 121.6 | 123.9 | -| L — Standover | 75.9 | 75.9 | 78.6 | 78.6 | -| M — Frame reach | 43.6 | 45.6 | 47.6 | 49.6 | -| N — Frame stack | 60.5 | 61.5 | 62.4 | 63.4 |', '/static/images/new_data/bikes.json_6.jpg', '/static/images/new_data/bikes.json_6.jpg', '/static/images/new_data/bikes.json_6.jpg', 'VeloCore X9 eMTB', 1299.99, 'The VeloCore X9 eMTB is a light, agile and versatile electric mountain bike designed for adventure and performance. Its purpose-built frame and premium components offer an exhilarating ride experience on both technical terrain and smooth singletrack.', 'bicycle,touring bike'), -('dcfb7b19-7cf6-4257-a92a-22607083cf2e', '## Overview -It''s right for you if... -You''re an avid mountain biker looking for a high-performance e-MTB that can tackle challenging trails. You want a bike with a powerful motor, efficient suspension, and advanced technology to enhance your riding experience. You also need a bike that''s reliable and durable for long-lasting use. - -The tech you get -A lightweight, full carbon frame with 150mm of rear travel and a 160mm RockShox Pike Ultimate fork with Charger 2.1 RCT3 damper, remote lockout, and DebonAir spring. A Bosch Performance Line CX motor and removable Powertube 625Wh battery that can assist up to 20mph when it''s on and gives zero drag when it''s off, plus an easy-to-use handlebar-mounted Bosch Purion controller. A SRAM GX Eagle AXS wireless electronic drivetrain, a RockShox Reverb Stealth dropper, and DT Swiss HX1501 Spline One wheels. - -The final word -Zephyr 8.8 GX Eagle AXS is a high-performance e-MTB that''s designed to handle technical terrain with ease. With a powerful Bosch motor and long-lasting battery, you can conquer challenging climbs and enjoy long rides. The bike also features high-end components and advanced technology for an ultimate mountain biking experience. - -## Features -Powerful motor - -The Bosch Performance Line CX motor provides a boost to your pedaling and can assist up to 20mph. It has four power modes and a walk-assist function for easy navigation on steep climbs. The motor is also reliable and durable for long-lasting use. - -Efficient suspension - -Zephyr 8.8 has a 150mm of rear travel and a 160mm RockShox Pike Ultimate fork with Charger 2.1 RCT3 damper, remote lockout, and DebonAir spring. The suspension is efficient and responsive, allowing you to handle technical terrain with ease. - -Removable battery - -The Powertube 625Wh battery is removable for easy charging and storage. It provides long-lasting riding time and can be replaced with a spare battery for even longer rides. The battery is also durable and weather-resistant for all-season riding. - -Advanced technology - -Zephyr 8.8 is equipped with advanced technology, including a Bosch Purion controller for easy motor control, a SRAM GX Eagle AXS wireless electronic drivetrain for precise shifting, and a RockShox Reverb Stealth dropper for adjustable saddle height. The bike also has DT Swiss HX1501 Spline One wheels for reliable performance on any terrain. - -Carbon frame - -The full carbon frame is lightweight and durable, providing a smooth and efficient ride. It''s also designed with a tapered head tube, internal cable routing, and Boost148 spacing for enhanced stiffness and responsiveness. - -## Specs -Frameset -Frame Carbon main frame & stays, tapered head tube, internal routing, Boost148, 150mm travel -Fork RockShox Pike Ultimate, Charger 2.1 RCT3 damper, DebonAir spring, remote lockout, tapered steerer, Boost110, 15mm Maxle Stealth, 160mm travel -Shock RockShox Deluxe RT3, DebonAir spring, 205mm x 57.5mm -Max compatible fork travel 170mm - -Wheels -Wheel front DT Swiss HX1501 Spline One, Centerlock, 30mm inner width, 110x15mm Boost -Wheel rear DT Swiss HX1501 Spline One, Centerlock, 30mm inner width, SRAM XD driver, 148x12mm Boost -Tire Bontrager XR4 Team Issue, Tubeless Ready, Inner Strength sidewall, aramid bead, 120tpi, 29x2.40'''' -Max tire size 29x2.60" - -Drivetrain -Shifter SRAM GX Eagle AXS, wireless, 12 speed -Rear derailleur SRAM GX Eagle AXS -Crank Bosch Gen 4, 32T -Chainring SRAM X-Sync 2, 32T, direct-mount -Cassette SRAM PG-1275 Eagle, 10-52, 12 speed -Chain SRAM GX Eagle, 12 speed - -Components -Saddle Bontrager Arvada, hollow titanium rails, 138mm width -Seatpost RockShox Reverb Stealth, 31.6mm, internal routing, 150mm (S), 170mm (M/L), 200mm (XL) -Handlebar Bontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width -Grips Bontrager XR Trail Elite, alloy lock-on -Stem Bontrager Line Pro, Knock Block, 35mm, 0 degree, 50mm length -Headset Integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -Brake SRAM Code RSC hydraulic disc, 200mm (front), 180mm (rear) -Brake rotor SRAM CenterLine, centerlock, round edge, 200mm (front), 180mm (rear) - -Accessories -E-bike system Bosch Performance Line CX -Battery Bosch Powertube 625Wh -Charger Bosch 4A compact charger -Controller Bosch Purion -Tool Bontrager multi-tool, integrated storage bag - -Weight -Weight M - 24.08 kg / 53.07 lbs (with TLR sealant, no tubes) -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - - -## Sizing & fit - -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| S | 153 - 162 cm 5''0" - 5''4" | 67 - 74 cm 26" - 29" | -| M | 161 - 172 cm 5''3" - 5''8" | 74 - 79 cm 29" - 31" | -| L | 171 - 180 cm 5''7" - 5''11" | 79 - 84 cm 31" - 33" | -| XL | 179 - 188 cm 5''10" - 6''2" | 84 - 89 cm 33" - 35" | - - -## Geometry - -All measurements provided in cm unless otherwise noted. -Sizing table -| Frame size letter | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| Actual frame size | 15.5 | 17.5 | 19.5 | 21.5 | -| Wheel size | 29" | 29" | 29" | 29" | -| A — Seat tube | 39.4 | 41.9 | 44.5 | 47.6 | -| B — Seat tube angle | 76.1° | 76.1° | 76.1° | 76.1° | -| C — Head tube length | 9.6 | 10.5 | 11.5 | 12.5 | -| D — Head angle | 65.5° | 65.5° | 65.5° | 65.5° | -| E — Effective top tube | 58.6 | 61.3 | 64.0 | 66.7 | -| F — Bottom bracket height | 34.0 | 34.0 | 34.0 | 34.0 | -| G — Bottom bracket drop | 1.0 | 1.0 | 1.0 | 1.0 | -| H — Chainstay length | 45.0 | 45.0 | 45.0 | 45.0 | -| I — Offset | 4.6 | 4.6 | 4.6 | 4.6 | -| J — Trail | 10.5 | 10.5 | 10.5 | 10.5 | -| K — Wheelbase | 119.5 | 122.3 | 125.0 | 127.8 | -| L — Standover | 72.7 | 74.7 | 77.6 | 81.0 | -|', '/static/images/new_data/bikes.json_7.jpg', '/static/images/new_data/bikes.json_7.jpg', '/static/images/new_data/bikes.json_7.jpg', 'Zephyr 8.8 GX Eagle AXS Gen 3', 1499.99, 'Zephyr 8.8 GX Eagle AXS is a light and nimble full-suspension mountain bike. It''s designed to handle technical terrain with ease and has a smooth and efficient ride feel. The sleek and powerful Bosch Performance Line CX motor and removable Powertube battery provide a boost to your pedaling and give you long-lasting riding time. The bike also features high-end components and advanced technology for an ultimate mountain biking experience.', 'bicycle,electric bike,city bike'), -('bf6f0b3d-e4ba-477b-ab40-30366c1d7bea', '## Overview -It''s right for you if... -You are a passionate cyclist looking for a bike that can keep up with your speed, agility, and endurance. You are an adventurer who loves to explore new terrains and challenge yourself on the toughest courses. You want a bike that is lightweight, durable, and packed with the latest technology. - -The tech you get -A lightweight, full carbon frame with advanced aerodynamics and integrated cable routing for a clean look. A high-performance SRAM XX1 Eagle AXS wireless electronic drivetrain, featuring a 12-speed cassette and a 32T chainring. A RockShox SID Ultimate fork with a remote lockout, 120mm travel, and Charger Race Day damper. A high-end SRAM G2 Ultimate hydraulic disc brake with carbon levers. A FOX Transfer SL dropper post for quick and easy height adjustments. DT Swiss XRC 1501 carbon wheels for superior speed and handling. - -The final word -Velo 99 XR1 AXS is a premium racing bike that can help you achieve your goals and reach new heights. It is designed for speed, agility, and performance, and it is packed with the latest technology and premium components. If you are a serious cyclist who wants the best, this is the bike for you. - -## Features -Aerodynamic design - -The Velo 99 XR1 AXS features a state-of-the-art frame design that reduces drag and improves speed. It has an aerodynamic seatpost, integrated cable routing, and a sleek, streamlined look that sets it apart from other bikes. - -Wireless electronic drivetrain - -The SRAM XX1 Eagle AXS drivetrain features a wireless electronic system that provides precise, instant shifting and unmatched efficiency. It eliminates the need for cables and makes the bike lighter and faster. - -High-performance suspension - -The RockShox SID Ultimate fork and Charger Race Day damper provide 120mm of smooth, responsive suspension that can handle any terrain. The fork also has a remote lockout for quick adjustments on the fly. - -Superior braking power - -The SRAM G2 Ultimate hydraulic disc brake system delivers unmatched stopping power and control. It has carbon levers for a lightweight, ergonomic design and precision control. - -Carbon wheels - -The DT Swiss XRC 1501 carbon wheels are ultra-lightweight, yet incredibly strong and durable. They provide superior speed and handling, making the bike more agile and responsive. - -## Specs -Frameset -Frame Full carbon frame, integrated cable routing, aerodynamic design, Boost148 -Fork RockShox SID Ultimate, Charger Race Day damper, remote lockout, tapered steerer, Boost110, 15mm Maxle Stealth, 120mm travel - -Wheels -Wheel front DT Swiss XRC 1501 carbon wheel, Boost110, 15mm thru axle -Wheel rear DT Swiss XRC 1501 carbon wheel, SRAM XD driver, Boost148, 12mm thru axle -Tire Schwalbe Racing Ray, Performance Line, Addix, 29x2.25" -Tire part Schwalbe Doc Blue Professional, 500ml -Max tire size 29x2.3" - -Drivetrain -Shifter SRAM Eagle AXS, wireless, 12-speed -Rear derailleur SRAM XX1 Eagle AXS -Crank SRAM XX1 Eagle, 32T, carbon -Chainring SRAM X-SYNC, 32T, alloy -Cassette SRAM Eagle XG-1299, 10-52, 12-speed -Chain SRAM XX1 Eagle, 12-speed -Max chainring size 1x: 32T - -Components -Saddle Bontrager Montrose Elite, carbon rails, 138mm width -Seatpost FOX Transfer SL, 125mm travel, internal routing, 31.6mm -Handlebar Bontrager Kovee Pro, ADV Carbon, 35mm, 5mm rise, 720mm width -Grips Bontrager XR Endurance Elite -Stem Bontrager Kovee Pro, 35mm, Blendr compatible, 7 degree, 60mm length -Headset Integrated, cartridge bearing, 1-1/8" top, 1.5" bottom -Brake SRAM G2 Ultimate hydraulic disc, carbon levers, 180mm rotors - -Accessories -Bike computer Bontrager Trip 300 -Tool Bontrager Flatline Pro pedal wrench, T25 Torx - - -## Sizing & fit - -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| S | 158 - 168 cm 5''2" - 5''6" | 74 - 78 cm 29" - 31" | -| M | 165 - 175 cm 5''5" - 5''9" | 78 - 82 cm 31" - 32" | -| L | 173 - 183 cm 5''8" - 6''0" | 82 - 86 cm 32" - 34" | -| XL | 180 - 193 cm 5''11" - 6''4" | 86 - 90 cm 34" - 35" | - - -## Geometry - -All measurements provided in cm unless otherwise noted. -Sizing table -| Frame size letter | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| Actual frame size | 15.5 | 17.5 | 19.5 | 21.5 | -| Wheel size | 29" | 29" | 29" | 29" | -| A — Seat tube | 39.9 | 43.0 | 47.0 | 51.0 | -| B — Seat tube angle | 74.5° | 74.5° | 74.5° | 74.5° | -| C — Head tube length | 9.0 | 10.0 | 11.0 | 12.0 | -| D — Head angle | 68.0° | 68.0° | 68.0° | 68.0° | -| E — Effective top tube | 57.8 | 59.7 | 61.6 | 63.6 | -| F — Bottom bracket height | 33.0 | 33.0 | 33.0 | 33.0 | -| G — Bottom bracket drop | 5.0 | 5.0 | 5.0 | 5.0 | -| H — Chainstay length | 43.0 | 43.0 | 43.0 | 43.0 | -| I — Offset | 4.2 | 4.2 | 4.2 | 4.2 | -| J — Trail | 9.7 | 9.7 | 9.7 | 9.7 | -| K — Wheelbase | 112.5 | 114.5 | 116.5 | 118.6 | -| L — Standover | 75.9 | 77.8 | 81.5 | 84.2 | -| M — Frame reach | 41.6 | 43.4 | 45.2 | 47.1 | -| N — Frame stack | 58.2 | 58.9 | 59.3 | 59.9 |', '/static/images/new_data/bikes.json_8.jpg', '/static/images/new_data/bikes.json_8.jpg', '/static/images/new_data/bikes.json_8.jpg', 'Velo 99 XR1 AXS', 1099.99, 'Velo 99 XR1 AXS is a next-generation bike designed for fast-paced adventure seekers and speed enthusiasts. Built for high-performance racing, the bike boasts state-of-the-art technology and premium components. It is the ultimate bike for riders who want to push their limits and get their adrenaline pumping.', 'bicycle,mountain bike'), -('fed246f8-fae5-4c9d-a673-dc44505e2adc', '## Overview -It''s right for you if... -You want a top-of-the-line e-MTB that is both powerful and stylish. You also want a bike that can handle any terrain, from steep climbs to rocky descents. With its advanced features and premium components, the AURORA 11S is designed for serious off-road riders who demand the best. - -The tech you get -A sturdy aluminum frame with advanced suspension system that provides 120mm of travel. A 750W brushless motor that delivers up to 28mph, and a 48V/14Ah lithium-ion battery that provides up to 60 miles of range on a single charge. An advanced 11-speed Shimano drivetrain with hydraulic disc brakes for precise shifting and reliable stopping power. - -The final word -The AURORA 11S is a top-of-the-line e-MTB that delivers exceptional performance and style. Whether you''re tackling steep climbs or hitting rocky descents, this bike is built to handle any terrain with ease. With its advanced features and premium components, the AURORA 11S is the perfect choice for serious off-road riders who demand the best. - -## Features -Powerful and efficient - -The AURORA 11S is equipped with a high-performance 750W brushless motor that delivers up to 28mph. The motor is powered by a long-lasting 48V/14Ah lithium-ion battery that provides up to 60 miles of range on a single charge. - -Advanced suspension system - -The bike''s advanced suspension system provides 120mm of travel, ensuring a smooth and comfortable ride on any terrain. The front suspension is a Suntour XCR32 Air fork, while the rear suspension is a KS-281 hydraulic shock absorber. - -Premium components - -The AURORA 11S features an advanced 11-speed Shimano drivetrain with hydraulic disc brakes. The bike is also equipped with a Tektro HD-E725 hydraulic disc brake system that provides reliable stopping power. - -Sleek and stylish design - -With its sleek and stylish design, the AURORA 11S is sure to turn heads on the trail. The bike''s sturdy aluminum frame is available in a range of colors, including black, blue, and red. - -## Specs -Frameset -Frame Material: Aluminum -Frame Size: S, M, L -Fork: Suntour XCR32 Air, 120mm Travel -Shock Absorber: KS-281 Hydraulic Shock Absorber - -Wheels -Wheel Size: 27.5 inches -Tires: Kenda K1151 Nevegal, 27.5x2.35 -Rims: Alloy Double Wall -Spokes: 32H, Stainless Steel - -Drivetrain -Shifters: Shimano SL-M7000 -Rear Derailleur: Shimano RD-M8000 -Crankset: Prowheel 42T, Alloy Crank Arm -Cassette: Shimano CS-M7000, 11-42T -Chain: KMC X11EPT - -Brakes -Brake System: Tektro HD-E725 Hydraulic Disc Brake -Brake Rotors: 180mm Front, 160mm Rear - -E-bike system -Motor: 750W Brushless -Battery: 48V/14Ah Lithium-Ion -Charger: 48V/3A Smart Charger -Controller: Intelligent Sinusoidal Wave - -Weight -Weight: 59.5 lbs - -## Sizing & fit -| Size | Rider Height | Standover Height | -|------|-------------|-----------------| -| S | 5''2"-5''6" | 28.5" | -| M | 5''7"-6''0" | 29.5" | -| L | 6''0"-6''4" | 30.5" | - -## Geometry -All measurements provided in cm. -Sizing table -| Frame size letter | S | M | L | -|-------------------|-----|-----|-----| -| Wheel Size | 27.5"| 27.5"| 27.5"| -| Seat tube length | 44.5| 48.5| 52.5| -| Head tube angle | 68° | 68° | 68° | -| Seat tube angle | 74.5°| 74.5°| 74.5°| -| Effective top tube | 57.5| 59.5| 61.5| -| Head tube length | 12.0| 12.0| 13.0| -| Chainstay length | 45.5| 45.5| 45.5| -| Bottom bracket height | 30.0| 30.0| 30.0| -| Wheelbase | 115.0|116.5|118.5|', '/static/images/new_data/bikes.json_9.jpg', '/static/images/new_data/bikes.json_9.jpg', '/static/images/new_data/bikes.json_9.jpg', 'AURORA 11S E-MTB', 1999.99, 'The AURORA 11S is a powerful and stylish electric mountain bike designed to take you on thrilling off-road adventures. With its sturdy frame and premium components, this bike is built to handle any terrain. It features a high-performance motor, long-lasting battery, and advanced suspension system that guarantee a smooth and comfortable ride.', 'bicycle,road bike'), -('b27c7379-9393-4ebf-9ffa-1771b29f0a2d', '## Overview -It''s right for you if... -You want a bike that is fast, efficient, and delivers an adrenaline-filled experience. You are looking for a bike that is built with cutting-edge technology, and you want a ride that is both comfortable and exciting. - -The tech you get -A lightweight and durable full carbon frame with a fork that has 100mm of travel. The bike comes with a powerful motor that can deliver up to 20 mph of assistance. The drivetrain is a wireless electronic system that is precise and reliable. The bike is also equipped with hydraulic disc brakes, tubeless-ready wheels, and comfortable grips. - -The final word -The VeloTech V9.5 AXS is a high-end bike that delivers an incredible experience for serious riders. It combines the latest technology with a comfortable ride, making it perfect for long rides, tough climbs, and fast descents. - -## Features -Fast and efficient -The VeloTech V9.5 AXS comes with a powerful motor that can provide up to 20 mph of assistance. The motor is lightweight and efficient, providing a boost when you need it without adding bulk. The bike''s battery is removable, allowing you to ride without assistance when you don''t need it. - -Smart software for the trail -The VeloTech V9.5 AXS is equipped with intelligent software that delivers a smooth and responsive ride. The software allows the motor to respond immediately as you start to pedal, delivering more power over a wider cadence range. You can also customize your user settings to suit your preferences. - -Comfortable ride -The VeloTech V9.5 AXS is designed to provide a comfortable ride, even on long rides. The bike''s fork has 100mm of travel, providing ample cushioning for rough terrain. The bike''s grips are also designed to provide a comfortable and secure grip, even on the most challenging rides. - -## Specs -Frameset -Frame Carbon fiber frame with internal cable routing and Boost148 -Fork 100mm of travel with remote lockout -Shock N/A - -Wheels -Wheel front Carbon fiber tubeless-ready wheel -Wheel rear Carbon fiber tubeless-ready wheel -Skewer rear 12mm thru-axle -Tire Tubeless-ready tire -Tire part Tubeless sealant - -Drivetrain -Shifter Wireless electronic shifter -Rear derailleur Wireless electronic derailleur -Crank Carbon fiber crankset with chainring -Crank arm Carbon fiber crank arm -Chainring Alloy chainring -Cassette 12-speed cassette -Chain 12-speed chain - -Components -Saddle Carbon fiber saddle -Seatpost Carbon fiber seatpost -Handlebar Carbon fiber handlebar -Grips Comfortable and secure grips -Stem Carbon fiber stem -Headset Carbon fiber headset -Brake Hydraulic disc brakes -Brake rotor Disc brake rotor - -Accessories -E-bike system Powerful motor with removable battery -Battery Lithium-ion battery -Charger Fast charging adapter -Controller Handlebar-mounted controller -Tool Basic toolkit - -Weight -Weight M - 17.5 kg / 38.5 lbs (with tubeless sealant) - -Weight limit -This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing & fit -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| S | 160 - 170 cm 5''3" - 5''7" | 74 - 79 cm 29" - 31" | -| M | 170 - 180 cm 5''7" - 5''11" | 79 - 84 cm 31" - 33" | -| L | 180 - 190 cm 5''11" - 6''3" | 84 - 89 cm 33" - 35" | -| XL | 190 - 200 cm 6''3" - 6''7" | 89 - 94 cm 35" - 37" | - -## Geometry -All measurements provided in cm unless otherwise noted. -Sizing table -| Frame size letter | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| Actual frame size | 50.0 | 53.3 | 55.6 | 58.8 | -| Wheel size | 29" | 29" | 29" | 29" | -| A — Seat tube | 39.4 | 43.2 | 48.3 | 53.3 | -| B — Seat tube angle | 72.3° | 72.6° | 72.8° | 72.8° | -| C — Head tube length | 9.0 | 10.0 | 10.5 | 11.0 | -| D — Head angle | 67.5° | 67.5° | 67.5° | 67.5° | -| E — Effective top tube | 58.0 | 61.7 | 64.8 | 67.0 | -| F — Bottom bracket height | 32.3 | 32.3 | 32.3 | 32.3 | -| G — Bottom bracket drop | 5.0 | 5.0 | 5.0 | 5.0 | -| H — Chainstay length | 44.7 | 44.7 | 44.7 | 44.7 | -| I — Offset | 4.2 | 4.2 | 4.2 | 4.2 | -| J — Trail | 10.9 | 10.9 | 10.9 | 10.9 | -| K — Wheelbase | 112.6 | 116.5 | 119.7 | 121.9 | -| L — Standover | 76.8 | 76.8 | 76.8 | 76.8 | -| M — Frame reach | 40.5 | 44.0 | 47.0 | 49.0 | -| N — Frame stack | 60.9 | 61.8 | 62.2 | 62.7 |', '/static/images/new_data/bikes.json_10.jpg', '/static/images/new_data/bikes.json_10.jpg', '/static/images/new_data/bikes.json_10.jpg', 'VeloTech V9.5 AXS Gen 3', 1699.99, 'VeloTech V9.5 AXS is a sleek and fast carbon bike that combines high-end tech with a comfortable ride. It''s designed to provide the ultimate experience for the most serious riders. The bike comes with a lightweight and powerful motor that can be activated when needed, and you get a spec filled with premium parts.', 'bicycle,electric bike,city bike'), -('d78d1df3-0b84-4d05-b958-f65f8869a446', '## Overview -It''s right for you if... -You''re looking for an electric mountain bike that can handle a wide variety of terrain, from flowing singletrack to technical descents. You also want a bike that offers a powerful motor that provides assistance without adding bulk to the bike. The D8 is designed to take you anywhere, quickly and comfortably. - -The tech you get -A lightweight aluminum frame with 140mm of travel, a Suntour fork with hydraulic lockout, and a reliable and powerful Bafang M400 mid-motor that provides a boost up to 20 mph. The bike features a Shimano Deore drivetrain, hydraulic disc brakes, and a dropper seat post. With the latest tech on-board, the D8 is designed to take you to new heights. - -The final word -The Axiom D8 is an outstanding electric mountain bike that is designed for adventure. It''s built with the latest tech and provides the flexibility to ride like a traditional mountain bike or have an extra push when you need it. Whether you''re a beginner or an experienced rider, the D8 is the perfect companion for your next adventure. - -## Features -Built for Adventure - -The D8 features a lightweight aluminum frame that is built to withstand rugged terrain. It comes equipped with 140mm of travel and a Suntour fork that can handle even the toughest of trails. With this bike, you''re ready to take on anything the mountain can throw at you. - -Powerful Motor - -The Bafang M400 mid-motor provides reliable and powerful assistance without adding bulk to the bike. You can quickly and easily switch between the different assistance levels to find the perfect balance between range and power. - -Shimano Deore Drivetrain - -The Shimano Deore drivetrain is reliable and offers smooth shifting on any terrain. You can easily adjust the gears to match your riding style and maximize your performance on the mountain. - -Dropper Seat Post - -The dropper seat post allows you to easily adjust your seat height on the fly, so you can maintain the perfect position for any terrain. With the flick of a switch, you can quickly and easily lower or raise your seat to match the terrain. - -Hydraulic Disc Brakes - -The D8 features powerful hydraulic disc brakes that offer reliable stopping power in any weather condition. You can ride with confidence knowing that you have the brakes to stop on a dime. - -## Specs -Frameset -Frame Aluminum frame with 140mm of travel -Fork Suntour fork with hydraulic lockout, 140mm of travel -Shock N/A -Max compatible fork travel 140mm - -Wheels -Wheel front Alloy wheel -Wheel rear Alloy wheel -Skewer rear Thru axle -Tire 29" x 2.35" -Tire part N/A -Max tire size 29" x 2.6" - -Drivetrain -Shifter Shimano Deore -Rear derailleur Shimano Deore -Crank Bafang M400 -Crank arm N/A -Chainring N/A -Cassette Shimano Deore -Chain Shimano Deore -Max chainring size N/A - -Components -Saddle Axiom D8 saddle -Seatpost Dropper seat post -Handlebar Axiom D8 handlebar -Grips Axiom D8 grips -Stem Axiom D8 stem -Headset Axiom D8 headset -Brake Hydraulic disc brakes -Brake rotor 180mm - -Accessories -E-bike system Bafang M400 mid-motor -Battery Lithium-ion battery, 500Wh -Charger Lithium-ion charger -Controller Bafang M400 controller -Tool N/A - -Weight -Weight M - 22 kg / 48.5 lbs -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 136 kg (300 lbs). - - -## Sizing & fit - -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| S | 152 - 165 cm 5''0" - 5''5" | 70 - 76 cm 27" - 30" | -| M | 165 - 178 cm 5''5" - 5''10" | 76 - 81 cm 30" - 32" | -| L | 178 - 185 cm 5''10" - 6''1" | 81 - 86 cm 32" - 34" | -| XL | 185 - 193 cm 6''1" - 6''4" | 86 - 91 cm 34" - 36" | - - -## Geometry - -All measurements provided in cm unless otherwise noted. -Sizing table -| Frame size letter | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| Actual frame size | 41.9 | 46.5 | 50.8 | 55.9 | -| Wheel size | 29" | 29" | 29" | 29" | -| A — Seat tube | 42.0 | 46.5 | 51.0 | 56.0 | -| B — Seat tube angle | 74.0° | 74.0° | 74.0° | 74.0° | -| C — Head tube length | 11.0 | 12.0 | 13.0 | 15.0 | -| D — Head angle | 68.0° | 68.0° | 68.0° | 68.0° | -| E — Effective top tube | 57.0 | 60.0 | 62.0 | 65.0 | -| F — Bottom bracket height | 33.0 | 33.0 | 33.0 | 33.0 | -| G — Bottom bracket drop | 3.0 | 3.0 | 3.0 | 3.0 | -| H — Chainstay length | 46.0 | 46.0 | 46.0 | 46.0 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 10.9 | 10.9 | 10.9 | 10.9 | -| K — Wheelbase | 113.0 | 116.0 | 117.5 | 120.5 | -| L — Standover | 73.5 | 75.5 | 76.5 | 79.5 | -| M — Frame reach | 41.0 | 43.5 | 45.0 | 47.5 | -| N — Frame stack | 60.5 | 61.5 | 62.5 | 64.5 |', '/static/images/new_data/bikes.json_11.jpg', '/static/images/new_data/bikes.json_11.jpg', '/static/images/new_data/bikes.json_11.jpg', 'Axiom D8 E-Mountain Bike', 1399.99, 'The Axiom D8 is an electrifying mountain bike that is built for adventure. It boasts a light aluminum frame, a powerful motor and the latest tech to tackle the toughest of terrains. The D8 provides assistance without adding bulk to the bike, giving you the flexibility to ride like a traditional mountain bike or have an extra push when you need it.', 'bicycle,electric bike,mountain bike'), -('5c3a5966-1158-42c6-bfd3-737a2d08b157', '## Overview -It''s right for you if... -You''re an experienced cyclist looking for a bike that can keep up with your need for speed. You want a bike that''s lightweight, aerodynamic, and built to perform, whether you''re training for a race or just pushing yourself to go faster. - -The tech you get -A lightweight aluminum frame with a carbon fork, Shimano Ultegra groupset with a wide range of gearing, hydraulic disc brakes, aerodynamic carbon wheels, and a vibration-absorbing handlebar with ergonomic grips. - -The final word -Velocity X1 is the ultimate road bike for speed enthusiasts. Its lightweight frame, aerodynamic design, and top-quality components make it the perfect choice for those who want to take their cycling experience to the next level. - - -## Features - -Aerodynamic design -Velocity X1 is built with an aerodynamic design to help you go faster with less effort. It features a sleek profile, hidden cables, and a carbon fork that cuts through the wind, reducing drag and increasing speed. - -Hydraulic disc brakes -Velocity X1 comes equipped with hydraulic disc brakes, providing excellent stopping power in all weather conditions. They''re also low maintenance, with minimal adjustments needed over time. - -Carbon wheels -The Velocity X1''s aerodynamic carbon wheels provide excellent speed and responsiveness, helping you achieve your fastest times yet. They''re also lightweight, reducing overall bike weight and making acceleration and handling even easier. - -Shimano Ultegra groupset -The Shimano Ultegra groupset provides smooth shifting and reliable performance, ensuring you get the most out of every ride. With a wide range of gearing options, it''s ideal for tackling any terrain, from steep climbs to fast descents. - - -## Specifications -Frameset -Frame with Fork Aluminium frame, internal cable routing, 135x9mm QR -Fork Carbon, hidden cable routing, 100x9mm QR - -Wheels -Wheel front Carbon, 30mm deep rim, 23mm width, 100x9mm QR -Wheel rear Carbon, 30mm deep rim, 23mm width, 135x9mm QR -Skewer front 100x9mm QR -Skewer rear 135x9mm QR -Tire Continental Grand Prix 5000, 700x25mm, folding bead -Max tire size 700x28mm without fenders - -Drivetrain -Shifter Shimano Ultegra R8020, 11 speed -Rear derailleur Shimano Ultegra R8000, 11 speed -*Crank Size: S, M -Shimano Ultegra R8000, 50/34T, 170mm length -Size: L, XL -Shimano Ultegra R8000, 50/34T, 175mm length -Bottom bracket Shimano BB-RS500-PB, PressFit -Cassette Shimano Ultegra R8000, 11-30T, 11 speed -Chain Shimano Ultegra HG701, 11 speed -Pedal Not included -Max chainring size 50/34T - -Components -Saddle Bontrager Montrose Comp, steel rails, 138mm width -Seatpost Bontrager Comp, 6061 alloy, 27.2mm, 8mm offset, 330mm length -*Handlebar Size: S, M, L -Bontrager Elite Aero VR-CF, alloy, 31.8mm, 93mm reach, 123mm drop, 400mm width -Size: XL -Bontrager Elite Aero VR-CF, alloy, 31.8mm, 93mm reach, 123mm drop, 420mm width -Grips Bontrager Supertack Perf tape -*Stem Size: S, M, L -Bontrager Elite Blendr, 31.8mm clamp, 7 degree, 90mm length -Size: XL -Bontrager Elite Blendr, 31.8mm clamp, 7 degree, 100mm length -Brake Shimano Ultegra R8070 hydraulic disc, flat mount -Brake rotor Shimano RT800, centerlock, 160mm -Rotor size Max brake rotor sizes: 160mm front & rear - -Weight -Weight M - 8.15 kg / 17.97 lbs -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg). - - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| S | 162 - 170 cm 5''4" - 5''7" | 74 - 78 cm 29" - 31" | -| M | 170 - 178 cm 5''7" - 5''10" | 77 - 82 cm 30" - 32" | -| L | 178 - 186 cm 5''10" - 6''1" | 82 - 86 cm 32" - 34" | -| XL | 186 - 196 cm 6''1" - 6''5" | 87 - 92 cm 34" - 36" | - - -## Geometry -| Frame size letter | S | M | L | XL | -|---------------------------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 50.0 | 52.0 | 54.0 | 56.0 | -| B — Seat tube angle | 74.0° | 73.5° | 73.0° | 72.5° | -| C — Head tube length | 13.0 | 15.0 | 17.0 | 19.0 | -| D — Head angle | 71.0° | 72.0° | 72.0° | 72.5° | -| E — Effective top tube | 53.7 | 55.0 | 56.5 | 58.0 | -| F — Bottom bracket height | 27.5 | 27.5 | 27.5 | 27.5 | -| G — Bottom bracket drop | 7.3 | 7.3 | 7.3 | 7.3 | -| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 6.0 | 6.0 | 6.0 | 5.8 | -| K — Wheelbase | 98.2 | 99.1 | 100.1 | 101.0 | -| L — Standover | 75.2 | 78.2 | 81.1 | 84.1 | -| M — Frame reach | 37.5 | 38.3 | 39.1 | 39.9 | -| N — Frame stack | 53.3 | 55.4 | 57.4 | 59.5 |', '/static/images/new_data/bikes.json_12.jpg', '/static/images/new_data/bikes.json_12.jpg', '/static/images/new_data/bikes.json_12.jpg', 'Velocity X1', 1799.99, 'Velocity X1 is a high-performance road bike designed for speed enthusiasts. It features a lightweight yet durable frame, aerodynamic design, and top-quality components, making it the perfect choice for those who want to take their cycling experience to the next level.', 'bicycle,touring bike'), -('fc6cbf82-d776-426c-954f-dac9be174535', '## Overview -It''s right for you if... -You want a fast, versatile bike that can handle anything from commuting to weekend adventures. You value comfort as much as speed and performance. You want a reliable and durable bike that will last for years to come. - -The tech you get -A lightweight aluminum frame with a carbon fork and seat post, a 2x Shimano Deore drivetrain with a wide range of gearing, hydraulic disc brakes, and 700c wheels with high-quality tires. The Velocity V9 is designed for riders who demand both performance and comfort in one package. - -The final word -The Velocity V9 is the perfect bike for riders who want speed and performance without sacrificing comfort. The lightweight aluminum frame and carbon components provide optimal stiffness and absorption, while the 2x Shimano Deore drivetrain and hydraulic disc brakes ensure precise shifting and stopping power. Whether you''re commuting, hitting the trails, or training for your next race, the Velocity V9 has everything you need to achieve your goals. - -## Features - -2x drivetrain -A 2x drivetrain means more versatility and a wider range of gearing options. Whether you''re climbing hills or sprinting on the flats, the Velocity V9 has the perfect gear for any situation. - -Carbon components -The Velocity V9 features a carbon fork and seat post to provide optimal stiffness and absorption. This means you can ride faster and more comfortably over any terrain. - -Hydraulic disc brakes -Hydraulic disc brakes provide unparalleled stopping power and modulation in any weather condition. You''ll feel confident and in control no matter where you ride. - -## Specifications -Frameset -Frame with Fork Aluminum frame with carbon fork and seat post, internal cable routing, fender mounts, 135x5mm ThruSkew -Fork Carbon fork, hidden fender mounts, flat mount disc, 5x100mm thru-skew - -Wheels -Wheel front Double wall aluminum rims, 700c, quick release hub -Wheel rear Double wall aluminum rims, 700c, quick release hub -Tire Kenda Kwick Tendril, puncture resistant, reflective sidewall, 700x32c -Max tire size 700x35c without fenders, 700x32c with fenders - -Drivetrain -Shifter Shimano Deore, 10 speed -Front derailleur Shimano Deore -Rear derailleur Shimano Deore -Crank Shimano Deore, 46-30T, 170mm (S/M), 175mm (L/XL) -Bottom bracket Shimano BB52, 68mm, threaded -Cassette Shimano Deore, 11-36T, 10 speed -Chain Shimano HG54, 10 speed -Pedal Wellgo alloy platform - -Components -Saddle Velo VL-2158, steel rails -Seatpost Carbon seat post, 27.2mm -Handlebar Aluminum, 31.8mm clamp, 15mm rise, 680mm width -Grips Velo ergonomic grips -Stem Aluminum, 31.8mm clamp, 7 degree, 90mm length -Brake Shimano hydraulic disc, MT200 lever, MT200 caliper -Brake rotor Shimano RT56, centerlock, 160mm -Rotor size Max brake rotor sizes: 160mm front & rear - -Weight -Weight M - 11.5 kg / 25.35 lbs -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| S | 155 - 165 cm 5''1" - 5''5" | 72 - 78 cm 28" - 31" | -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | -| XL | 186 - 197 cm 6''1" - 6''6" | 87 - 93 cm 34" - 37" | - -## Geometry -| Frame size | S | M | L | XL | -|--------------------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 44.0 | 48.0 | 52.0 | 56.0 | -| B — Seat tube angle | 74.5° | 74.0° | 73.5° | 73.0° | -| C — Head tube length | 14.5 | 16.0 | 18.0 | 20.0 | -| D — Head angle | 71.0° | 71.0° | 71.5° | 71.5° | -| E — Effective top tube | 56.5 | 57.5 | 58.5 | 59.5 | -| F — Bottom bracket height | 27.0 | 27.0 | 27.0 | 27.0 | -| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 | -| H — Chainstay length | 43.0 | 43.0 | 43.0 | 43.0 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 7.0 | 7.0 | 6.6 | 6.6 | -| K — Wheelbase | 105.4 | 106.3 | 107.2 | 108.2 | -| L — Standover | 73.2 | 77.1 | 81.2 | 85.1 | -| M — Frame reach | 39.0 | 39.8 | 40.4 | 41.3 | -| N — Frame stack | 57.0 | 58.5 | 60.0 | 61.5 |', '/static/images/new_data/bikes.json_13.jpg', '/static/images/new_data/bikes.json_13.jpg', '/static/images/new_data/bikes.json_13.jpg', 'Velocity V9', 2199.99, 'Velocity V9 is a high-performance hybrid bike that combines speed and comfort for riders who demand the best of both worlds. The lightweight aluminum frame, along with the carbon fork and seat post, provide optimal stiffness and absorption to tackle any terrain. A 2x Shimano Deore drivetrain, hydraulic disc brakes, and 700c wheels with high-quality tires make it a versatile ride for commuters, fitness riders, and weekend adventurers alike.', 'bicycle,electric bike,mountain bike'), -('055fc6c5-7e53-499c-b203-d4d80dc9e90f', '## Overview -It''s right for you if... -You are a competitive cyclist looking for a bike that is designed for racing. You want a bike that delivers exceptional speed, agility, and precision handling. You demand superior performance and reliability from your equipment. - -The tech you get -A lightweight carbon frame with an aerodynamic design, a carbon fork with hidden fender mounts, a 2x Shimano Ultegra drivetrain with a wide range of gearing, hydraulic disc brakes, and 700c wheels with high-quality tires. Aero Pro X is designed for serious cyclists who demand nothing but the best. - -The final word -Aero Pro X is the ultimate racing bike for serious cyclists. The lightweight carbon frame and aerodynamic design deliver maximum speed and efficiency, while the 2x Shimano Ultegra drivetrain and hydraulic disc brakes ensure precise shifting and stopping power. Whether you''re competing in a triathlon or a criterium race, Aero Pro X delivers the performance you need to win. - -## Features - -Aerodynamic design -The Aero Pro X features an aerodynamic design that reduces drag and maximizes efficiency. The bike is optimized for speed and agility, so you can ride faster and farther with less effort. - -Hydraulic disc brakes -Hydraulic disc brakes provide unrivaled stopping power and modulation in any weather condition. You''ll feel confident and in control no matter where you ride. - -Carbon components -The Aero Pro X features a carbon fork with hidden fender mounts to provide optimal stiffness and absorption. This means you can ride faster and more comfortably over any terrain. - -## Specifications -Frameset -Frame with Fork Carbon frame with an aerodynamic design, internal cable routing, 3s chain keeper, 142x12mm thru-axle -Fork Carbon fork with hidden fender mounts, flat mount disc, 100x12mm thru-axle - -Wheels -Wheel front Double wall carbon rims, 700c, thru-axle hub -Wheel rear Double wall carbon rims, 700c, thru-axle hub -Tire Continental Grand Prix 5000, folding bead, 700x25c -Max tire size 700x28c without fenders, 700x25c with fenders - -Drivetrain -Shifter Shimano Ultegra, 11 speed -Front derailleur Shimano Ultegra -Rear derailleur Shimano Ultegra -Crank Shimano Ultegra, 52-36T, 170mm (S), 172.5mm (M), 175mm (L/XL) -Bottom bracket Shimano BB72, 68mm, PressFit -Cassette Shimano Ultegra, 11-30T, 11 speed -Chain Shimano HG701, 11 speed -Pedal Not included - -Components -Saddle Bontrager Montrose Elite, carbon rails, 138mm width -Seatpost Carbon seat post, 27.2mm, 20mm offset -Handlebar Bontrager XXX Aero, carbon, 31.8mm clamp, 75mm reach, 125mm drop -Grips Bontrager Supertack Perf tape -Stem Bontrager Pro, 31.8mm clamp, 7 degree, 90mm length -Brake Shimano hydraulic disc, Ultegra lever, Ultegra caliper -Brake rotor Shimano RT800, centerlock, 160mm -Rotor size Max brake rotor sizes: 160mm front & rear - -Weight -Weight M - 8.36 kg / 18.42 lbs -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg). - -## Sizing -| Size | Rider Height | -|:----:|:-------------------------:| -| S | 155 - 165 cm 5''1" - 5''5" | -| M | 165 - 175 cm 5''5" - 5''9" | -| L | 175 - 186 cm 5''9" - 6''1" | -| XL | 186 - 197 cm 6''1" - 6''6" | - -## Geometry -| Frame size | S | M | L | XL | -|--------------------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 50.6 | 52.4 | 54.3 | 56.2 | -| B — Seat tube angle | 75.5° | 74.5° | 73.5° | 72.5° | -| C — Head tube length | 12.0 | 14.0 | 16.0 | 18.0 | -| D — Head angle | 72.5° | 73.0° | 73.5° | 74.0° | -| E — Effective top tube | 53.8 | 55.4 | 57.0 | 58.6 | -| F — Bottom bracket height | 26.5 | 26.5 | 26.5 | 26.5 | -| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 | -| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 6.0 | 6.0 | 6.0 | 6.0 | -| K — Wheelbase | 97.1 | 98.7 | 100.2 | 101.8 | -| L — Standover | 73.8 | 76.2 | 78.5 | 80.8 | -| M — Frame reach | 38.8 | 39.5 | 40.2 | 40.9 | -| N — Frame stack | 52.8 | 54.7 | 56.6 | 58.5 |', '/static/images/new_data/bikes.json_14.jpg', '/static/images/new_data/bikes.json_14.jpg', '/static/images/new_data/bikes.json_14.jpg', 'Aero Pro X', 1599.99, 'Aero Pro X is a high-end racing bike designed for serious cyclists who demand speed, agility, and superior performance. The lightweight carbon frame and fork, combined with the aerodynamic design, provide optimal stiffness and efficiency to maximize your speed. The bike features a 2x Shimano Ultegra drivetrain, hydraulic disc brakes, and 700c wheels with high-quality tires. Whether you''re competing in a triathlon or climbing steep hills, Aero Pro X delivers exceptional performance and precision handling.', 'bicycle,road bike'), -('994f2daa-fd81-40c7-8118-aed7157d2007', '## Overview - -It''s right for you if... -You want an e-bike that provides a boost for faster rides and effortless usage. Durability is crucial, and you need a bike with one of the most powerful and efficient motors. - -The tech you get -A lightweight Delta Carbon Fiber frame with an ultra-lowstep design, a Voltex Drive Pro (350W, 75Nm) motor capable of maintaining speeds up to 30 mph, an extended range 600Wh battery integrated into the frame, and a Voltex Control Panel. Additionally, it features a 12-speed Shimano drivetrain, hydraulic disc brakes for optimal all-weather stopping power, a suspension seatpost, wide puncture-resistant tires for added stability, ergonomic grips, a kickstand, lights, and a cargo rack. - -The final word -This bike offers enhanced enjoyment and ease of use on long commutes, leisure rides, and adventures. With its extended-range battery, powerful Voltex motor, user-friendly controller, and a seatpost that smooths out road vibrations, it guarantees an exceptional riding experience. - -## Features - -Ultra-fast assistance - -Experience speeds up to 30 mph with the cutting-edge Voltex Drive Pro motor, allowing you to breeze through errands, commutes, and joyrides. - -## Specs - -Frameset -- Frame: Delta Carbon Fiber, Removable Integrated Battery (RIB), sleek welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR -- Fork: Voltex Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR -- Max compatible fork travel: 50mm - -Wheels -- Hub front: Formula DC-20, alloy, 6-bolt, 5x100mm QR -- Skewer front: 132x5mm QR, ThruSkew -- Hub rear: Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR -- Skewer rear: 153x5mm bolt-on -- Rim: Voltex Connection, double-wall, 32-hole, 20 mm width, Schrader valve -- Tire: Voltex E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c -- Max tire size: 700x50mm with or without fenders - -Drivetrain -- Shifter: Shimano Deore XT M8100, 12-speed -- Rear derailleur: Shimano Deore XT M8100, long cage -- Crank: Voltex alloy, 170mm length -- Chainring: FSA, 44T, aluminum with guard -- Cassette: Shimano Deore XT M8100, 10-51, 12-speed -- Chain: KMC E12 Turbo -- Pedal: Voltex Urban pedals - -Components -- Saddle: Voltex Boulevard -- Seatpost: Alloy, suspension, 31.6mm, 300mm length -- Handlebar: Voltex alloy, 31.8mm, comfort sweep, 620mm width (XS, S, M), 660mm width (L) -- Grips: Voltex Satellite Elite, alloy lock-on -- Stem: Voltex alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length (XS, S), 105mm length (M, L) -- Headset: VP sealed cartridge, 1-1/8'''', threaded -- Brake: Shimano MT520 hydraulic disc -- Brake rotor: Shimano RT56, 6-bolt, 180mm (XS, S, M, L), 160mm (XS, S, M, L) - -Accessories -- Battery: Voltex PowerTube 600Wh -- Charger: Voltex compact 2A, 100-240V -- Computer: Voltex Control Panel -- Motor: Voltex Drive Pro, 75Nm, 30mph -- Light: Voltex Solo for e-bike, taillight (XS, S, M, L), Voltex MR8, 180 lumen, 60 lux, LED, headlight (XS, S, M, L) -- Kickstand: Adjustable length rear mount alloy kickstand -- Cargo rack: Voltex-compatible alloy rear rack, maximum load 25 kg / 55 lbs -- Fender: Voltex wide (XS, S, M, L), Voltex plastic (XS, S, M, L) - -Weight -- Weight: M - 20.50 kg / 45.19 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 330 pounds (150 kg). - -## Sizing - -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| XS | 147 - 155 cm 4''10" - 5''1" | 69 - 73 cm 27" - 29" | -| S | 155 - 165 cm 5''1" - 5''5" | 72 - 78 cm 28" - 31" | -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | - -## Geometry - -All measurements provided in cm unless otherwise noted. - -Sizing table - -| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm | -|---------------------------|-------|-------|-------|-------| -| Frame size letter | XS | S | M | L | -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 38.0 | 43.0 | 48.0 | 53.0 | -| B — Seat tube angle | 70.5° | 70.5° | 70.5° | 70.5° | -| C — Head tube length | 15.0 | 15.0 | 17.0 | 19.0 | -| D — Head angle | 69.2° | 69.2° | 69.2° | 69.2° | -| E — Effective top tube | 57.2 | 57.7 | 58.8 | 60.0 | -| F — Bottom bracket height | 30.3 | 30.3 | 30.3 | 30.3 | -| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | 6.0 | -| H — Chainstay length | 48.5 | 48.5 | 48.5 | 48.5 | -| I — Offset | 5.0 | 5.0 | 5.0 | 5.0 | -| J — Trail | 9.0 | 9.0 | 9.0 | 9.0 | -| K — Wheelbase | 111.8 | 112.3 | 113.6 | 114.8 | -| L — Standover | 42.3 | 42.3 | 42.3 | 42.3 | -| M — Frame reach | 36.0 | 38.0 | 38.0 | 38.0 | -| N — Frame stack | 62.0 | 62.0 | 63.9 | 65.8 | -| Stem length | 8.0 | 8.5 | 8.5 | 10.5 | - -Please note that the specifications and features listed above are subject to change and may vary based on different models and versions of the Voltex+ Ultra Lowstep bike.', '/static/images/new_data/bikes.json_15.jpg', '/static/images/new_data/bikes.json_15.jpg', '/static/images/new_data/bikes.json_15.jpg', 'Voltex+ Ultra Lowstep', 2999.99, 'Voltex+ Ultra Lowstep is a high-performance electric hybrid bike designed for riders who seek speed, comfort, and reliability during their everyday rides. Equipped with a powerful and efficient Voltex Drive Pro motor and a fully-integrated 600Wh battery, this e-bike allows you to cover longer distances on a single charge. The Voltex+ Ultra Lowstep comes with premium components that prioritize comfort and safety, such as a suspension seatpost, wide and stable tires, and integrated lights.', 'bicycle,road bike,professional'), -('10730124-ecc9-4cbb-99e2-3ad5320698c8', '## Overview - -It''s right for you if... -You are looking for a bike that combines the benefits of an electric bike with the versatility of a hybrid. You value durability, speed, and ease of use. - -The tech you get -The SwiftRide Hybrid features a lightweight and durable aluminum frame, making it easy to handle and maneuver. It is equipped with a powerful electric motor that offers a speedy assist, helping you reach speeds of up to 25 mph. The bike comes with a removable and fully-integrated 500Wh battery, providing a long-range capacity for extended rides. It also includes a 10-speed Shimano drivetrain, hydraulic disc brakes for precise stopping power, wide puncture-resistant tires for stability, and integrated lights for enhanced visibility. - -The final word -The SwiftRide Hybrid is designed for riders who want a bike that can handle daily commutes, recreational rides, and adventures. With its efficient motor, intuitive controls, and comfortable features, it offers an enjoyable and hassle-free riding experience. - -## Features - -Efficient electric assist -Experience the thrill of effortless riding with the powerful electric motor that provides a speedy assist, making your everyday rides faster and more enjoyable. - -## Specs - -Frameset -- Frame: Lightweight Aluminum, Removable Integrated Battery (RIB), rack & fender mounts, internal routing, 135x5mm QR -- Fork: SwiftRide Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR -- Max compatible fork travel: 50mm - -Wheels -- Hub front: Formula DC-20, alloy, 6-bolt, 5x100mm QR -- Skewer front: 132x5mm QR, ThruSkew -- Hub rear: Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR -- Skewer rear: 153x5mm bolt-on -- Rim: SwiftRide Connection, double-wall, 32-hole, 20 mm width, Schrader valve -- Tire: SwiftRide E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c -- Max tire size: 700x50mm with or without fenders - -Drivetrain -- Shifter: Shimano Deore M4100, 10 speed -- Rear derailleur: Shimano Deore M5120, long cage -- Crank: ProWheel alloy, 170mm length -- Chainring: FSA, 42T, steel w/guard -- Cassette: Shimano Deore M4100, 11-42, 10 speed -- Chain: KMC E10 -- Pedal: SwiftRide City pedals - -Components -- Saddle: SwiftRide Boulevard -- Seatpost: Alloy, suspension, 31.6mm, 300mm length -- Handlebar: - - Size: XS, S, M - SwiftRide alloy, 31.8mm, comfort sweep, 620mm width - - Size: L - SwiftRide alloy, 31.8mm, comfort sweep, 660mm width -- Grips: SwiftRide Satellite Elite, alloy lock-on -- Stem: - - Size: XS, S - SwiftRide alloy quill, 31.8mm clamp, adjustable rise, 85mm length - - Size: M, L - SwiftRide alloy quill, 31.8mm clamp, adjustable rise, 105mm length -- Headset: VP sealed cartridge, 1-1/8'''', threaded -- Brake: Shimano MT200 hydraulic disc -- Brake rotor: - - Size: XS, S, M, L - Shimano RT26, 6-bolt, 180mm - - Size: XS, S, M, L - Shimano RT26, 6-bolt, 160mm - -Accessories -- Battery: SwiftRide PowerTube 500Wh -- Charger: SwiftRide compact 2A, 100-240V -- Computer: SwiftRide Purion -- Motor: SwiftRide Performance Line Sport, 65Nm, 25mph -- Light: - - Size: XS, S, M, L - SwiftRide SOLO for e-bike, taillight - - Size: XS, S, M, L - SwiftRide MR8, 180 lumen, 60 lux, LED, headlight -- Kickstand: Adjustable length rear mount alloy kickstand -- Cargo rack: SwiftRide-compatible alloy rear rack, maximum load 25 kg / 55 lbs -- Fender: - - Size: XS, S, M, L - SwiftRide wide - - Size: XS, S, M, L - SwiftRide plastic - -Weight -- Weight: M - 22.30 kg / 49.17 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing - -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| XS | 147 - 155 cm (4''10" - 5''1") | 69 - 73 cm (27" - 29") | -| S | 155 - 165 cm (5''1" - 5''5") | 72 - 78 cm (28" - 31") | -| M | 165 - 175 cm (5''5" - 5''9") | 77 - 83 cm (30" - 33") | -| L | 175 - 186 cm (5''9" - 6''1") | 82 - 88 cm (32" - 35") | - -## Geometry - -All measurements provided in cm unless otherwise noted. - -Sizing table -| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm | -|---------------------------|-------|-------|-------|-------| -| Frame size letter | XS | S | M | L | -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 | -| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° | -| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 | -| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° | -| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 | -| F — Bottom bracket height | 29.4 | 29.4 | 29.4 | 29.4 | -| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 | -| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 | -| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 | -| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 | -| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 | -| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |', '/static/images/new_data/bikes.json_16.jpg', '/static/images/new_data/bikes.json_16.jpg', '/static/images/new_data/bikes.json_16.jpg', 'SwiftRide Hybrid', 3999.99, 'SwiftRide Hybrid is a versatile and efficient bike designed for riders who want a smooth and enjoyable ride on various terrains. It incorporates advanced technology and high-quality components to provide a comfortable and reliable cycling experience.', 'bicycle,mountain bike,professional'), -('e8d2a8df-49e4-42a6-b8f8-6df354428033', '## Overview - -It''s right for you if... -You''re looking for an e-bike that provides an extra boost to reach your destination quickly and effortlessly. You prioritize durability and want a bike with one of the fastest motors available. - -The tech you get -A lightweight and sturdy ThunderBolt aluminum frame with a lowstep geometry. The bike is equipped with a ThunderBolt Performance Sport (250W, 65Nm) drive unit capable of reaching speeds up to 28 mph. It features a long-range 500Wh battery fully integrated into the frame and a ThunderBolt controller. Additionally, the bike has a 10-speed Shimano drivetrain, hydraulic disc brakes for reliable stopping power in all weather conditions, a suspension seatpost, wide puncture-resistant tires for stability, ergonomic grips, a kickstand, lights, and a rack and fenders. - -The final word -The RoadRunner E-Speed Lowstep is designed to provide enjoyment and ease of use on longer commutes, recreational rides, and adventurous journeys. Its long-range battery, fast ThunderBolt motor, intuitive controller, and road-smoothing suspension seatpost make it the perfect choice for riders seeking both comfort and speed. - -## Features - -Super speedy assist - -The ThunderBolt Performance Sport drive unit allows you to accelerate up to 28mph, making errands, commutes, and joyrides a breeze. - -## Specs - -Frameset -- Frame: ThunderBolt Smooth Aluminum, Removable Integrated Battery (RIB), sleek welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR -- Fork: RoadRunner Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR -- Max compatible fork travel: 50mm - -Wheels -- Hub front: ThunderBolt DC-20, alloy, 6-bolt, 5x100mm QR -- Skewer front: 132x5mm QR, ThruSkew -- Hub rear: ThunderBolt DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR -- Skewer rear: 153x5mm bolt-on -- Rim: ThunderBolt Connection, double-wall, 32-hole, 20 mm width, Schrader valve -- Tire: ThunderBolt E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c -- Max tire size: 700x50mm with or without fenders - -Drivetrain -- Shifter: Shimano Deore M4100, 10 speed -- Rear derailleur: Shimano Deore M5120, long cage -- Crank: ProWheel alloy, 170mm length -- Chainring: FSA, 42T, steel w/guard -- Cassette: Shimano Deore M4100, 11-42, 10 speed -- Chain: KMC E10 -- Pedal: RoadRunner City pedals - -Components -- Saddle: RoadRunner Boulevard -- Seatpost: Alloy, suspension, 31.6mm, 300mm length -- Handlebar: - - Size: XS, S, M - RoadRunner alloy, 31.8mm, comfort sweep, 620mm width - - Size: L - RoadRunner alloy, 31.8mm, comfort sweep, 660mm width -- Grips: RoadRunner Satellite Elite, alloy lock-on -- Stem: - - Size: XS, S - RoadRunner alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length - - Size: M, L - RoadRunner alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 105mm length -- Headset: VP sealed cartridge, 1-1/8'''', threaded -- Brake: Shimano MT200 hydraulic disc -- Brake rotor: - - Size: XS, S, M, L - Shimano RT26, 6-bolt, 180mm - - Size: XS, S, M, L - Shimano RT26, 6-bolt, 160mm - -Accessories -- Battery: ThunderBolt PowerTube 500Wh -- Charger: ThunderBolt compact 2A, 100-240V -- Computer: ThunderBolt Purion -- Motor: ThunderBolt Performance Line Sport, 65Nm, 28mph -- Light: - - Size: XS, S, M, L - ThunderBolt SOLO for e-bike, taillight - - Size: XS, S, M, L - ThunderBolt MR8, 180 lumen, 60 lux, LED, headlight -- Kickstand: Adjustable length rear mount alloy kickstand -- Cargo rack: MIK-compatible alloy rear rack, maximum load 25 kg / 55 lbs -- Fender: - - Size: XS, S, M, L - RoadRunner wide - - Size: XS, S, M, L - RoadRunner plastic - -Weight -- Weight: M - 22.30 kg / 49.17 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing - -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| XS | 147 - 155 cm 4''10" - 5''1" | 69 - 73 cm 27" - 29" | -| S | 155 - 165 cm 5''1" - 5''5" | 72 - 78 cm 28" - 31" | -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | - -## Geometry - -All measurements provided in cm unless otherwise noted. - -Sizing table -| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm | -|---------------------------|-------|-------|-------|-------| -| Frame size letter | XS | S | M | L | -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 | -| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° | -| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 | -| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° | -| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 | -| F — Bottom bracket height | 29.4 | 29.4 | 29.4 | 29.4 | -| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 | -| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 | -| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 | -| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 | -| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 | -| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |', '/static/images/new_data/bikes.json_17.jpg', '/static/images/new_data/bikes.json_17.jpg', '/static/images/new_data/bikes.json_17.jpg', 'RoadRunner E-Speed Lowstep', 4999.99, 'RoadRunner E-Speed Lowstep is a high-performance electric hybrid designed for riders seeking speed and excitement on their daily rides. It is equipped with a powerful and reliable ThunderBolt drive unit that offers exceptional acceleration. The bike features a fully-integrated 500Wh battery, allowing riders to cover longer distances on a single charge. With its comfortable and safe components, including a suspension seatpost, wide and stable tires, and integrated lights, the RoadRunner E-Speed Lowstep ensures a smooth and enjoyable ride.', 'bicycle,road bike,professional'), -('3977b32a-bc84-4f55-b3a3-7d9ba2bf8272', '## Overview - -It''s right for you if... -You crave the thrill of an e-bike that can accelerate rapidly, reaching high speeds effortlessly. You value durability and are looking for a bike that is equipped with one of the fastest motors available. - -The tech you get -A lightweight Hyper Alloy frame with a lowstep geometry, a Hyperdrive Sport (300W, 70Nm) drive unit capable of maintaining speeds up to 30 mph, a long-range 500Wh battery seamlessly integrated into the frame, and an intuitive Hyper Control controller. Additionally, it features a 10-speed Shimano drivetrain, hydraulic disc brakes for reliable stopping power in all weather conditions, a suspension seatpost, wide puncture-resistant tires for enhanced stability, ergonomic grips, a kickstand, lights, and a rack and fenders. - -The final word -This bike is designed for riders seeking enjoyment and convenience on longer commutes, recreational rides, and thrilling adventures. With its long-range battery, high-speed motor, user-friendly controller, and smooth-riding suspension seatpost, the Hyperdrive Turbo X1 guarantees an exceptional e-biking experience. - -## Features - -Hyperboost Acceleration -Experience adrenaline-inducing rides with the powerful Hyperdrive Sport drive unit that enables quick acceleration and effortless cruising through errands, commutes, and joyrides. - -## Specs - -Frameset -Frame Hyper Alloy, Removable Integrated Battery (RIB), seamless welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR -Fork Hyper Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR -Max compatible fork travel 50mm - -Wheels -Hub front Formula DC-20, alloy, 6-bolt, 5x100mm QR -Skewer front 132x5mm QR, ThruSkew -Hub rear Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR -Skewer rear 153x5mm bolt-on -Rim Hyper Connection, double-wall, 32-hole, 20 mm width, Schrader valve -Tire Hyper E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c -Max tire size 700x50mm with or without fenders - -Drivetrain -Shifter Shimano Deore M4100, 10 speed -Rear derailleur Shimano Deore M5120, long cage -Crank ProWheel alloy, 170mm length -Chainring FSA, 42T, steel w/guard -Cassette Shimano Deore M4100, 11-42, 10 speed -Chain KMC E10 -Pedal Hyper City pedals - -Components -Saddle Hyper Boulevard -Seatpost Alloy, suspension, 31.6mm, 300mm length -*Handlebar Size: XS, S, M -Hyper alloy, 31.8mm, comfort sweep, 620mm width -Size: L -Hyper alloy, 31.8mm, comfort sweep, 660mm width -Grips Hyper Satellite Elite, alloy lock-on -*Stem Size: XS, S -Hyper alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length -Size: M, L -Hyper alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 105mm length -Headset VP sealed cartridge, 1-1/8'''', threaded -Brake Shimano MT200 hydraulic disc -*Brake rotor Size: XS, S, M, L -Shimano RT26, 6-bolt,180mm -Size: XS, S, M, L -Shimano RT26, 6-bolt,160mm - -Accessories -Battery Hyper PowerTube 500Wh -Charger Hyper compact 2A, 100-240V -Computer Hyper Control -Motor Hyperdrive Sport, 70Nm, 30mph -*Light Size: XS, S, M, L -Spanninga SOLO for e-bike, taillight -Size: XS, S, M, L -Herrmans MR8, 180 lumen, 60 lux, LED, headlight -Kickstand Adjustable length rear mount alloy kickstand -Cargo rack MIK-compatible alloy rear rack, maximum load 25 kg / 55 lbs -*Fender Size: XS, S, M, L -SKS wide -Size: XS, S, M, L -SKS plastic - -Weight -Weight M - 22.30 kg / 49.17 lbs -Weight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing - -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| XS | 147 - 155 cm 4''10" - 5''1" | 69 - 73 cm 27" - 29" | -| S | 155 - 165 cm 5''1" - 5''5" | 72 - 78 cm 28" - 31" | -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | - -## Geometry - -All measurements provided in cm unless otherwise noted. - -| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm | -|---------------------------|-------|-------|-------|-------| -| Frame size letter | XS | S | M | L | -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 | -| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° | -| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 | -| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° | -| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 | -| F — Bottom bracket height | 29.4 | 29.4 | 29.4 | 29.4 | -| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 | -| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 | -| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 | -| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 | -| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 | -| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |', '/static/images/new_data/bikes.json_18.jpg', '/static/images/new_data/bikes.json_18.jpg', '/static/images/new_data/bikes.json_18.jpg', 'Hyperdrive Turbo X1', 1999.99, 'Hyperdrive Turbo X1 is a high-performance electric bike designed for riders seeking an exhilarating experience on their daily rides. It features a powerful and efficient Hyperdrive Sport drive unit and a sleek, integrated 500Wh battery for extended range. This e-bike is equipped with top-of-the-line components prioritizing comfort and safety, including a suspension seatpost, wide and stable tires, and integrated lights.', 'bicycle,city bike,professional'), -('3ea99862-2873-45b2-b751-25fa0e22bab5', '## Overview - -It''s right for you if... -You desire the convenience and speed of an e-bike to enhance your riding, and you want an intuitive and durable bicycle. You prioritize having one of the fastest motors developed by Bosch. - -The tech you get -A lightweight Alpha Smooth Aluminum frame with a lowstep geometry, a Bosch Performance Line Sport (250W, 65Nm) drive unit capable of sustaining speeds up to 28 mph, a fully encased 500Wh battery integrated into the frame, and a Bosch Purion controller. Additionally, it features a 10-speed Shimano drivetrain, hydraulic disc brakes for reliable stopping power in all weather conditions, a suspension seatpost, wide puncture-resistant tires for improved stability, ergonomic grips, a kickstand, lights, and a rack and fenders. - -The final word -The Horizon+ Evo Lowstep offers an enjoyable and user-friendly riding experience for longer commutes, recreational rides, and adventures. It boasts an extended range battery, a high-performance Bosch motor, an intuitive controller, and a suspension seatpost for a smooth ride on various road surfaces. - -## Features - -Super speedy assist -Experience effortless cruising through errands, commutes, and joyrides with the new Bosch Performance Sport drive unit, allowing acceleration of up to 28 mph. - -## Specs - -Frameset -- Frame: Alpha Platinum Aluminum, Removable Integrated Battery (RIB), smooth welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR -- Fork: Horizon Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR -- Max compatible fork travel: 50mm - -Wheels -- Front Hub: Formula DC-20, alloy, 6-bolt, 5x100mm QR -- Front Skewer: 132x5mm QR, ThruSkew -- Rear Hub: Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR -- Rear Skewer: 153x5mm bolt-on -- Rim: Bontrager Connection, double-wall, 32-hole, 20mm width, Schrader valve -- Tire: Bontrager E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c -- Max tire size: 700x50mm with or without fenders - -Drivetrain -- Shifter: Shimano Deore M4100, 10-speed -- Rear Derailleur: Shimano Deore M5120, long cage -- Crank: ProWheel alloy, 170mm length -- Chainring: FSA, 42T, steel w/guard -- Cassette: Shimano Deore M4100, 11-42, 10-speed -- Chain: KMC E10 -- Pedal: Bontrager City pedals - -Components -- Saddle: Bontrager Boulevard -- Seatpost: Alloy, suspension, 31.6mm, 300mm length -- Handlebar: - - Size: XS, S, M - Bontrager alloy, 31.8mm, comfort sweep, 620mm width - - Size: L - Bontrager alloy, 31.8mm, comfort sweep, 660mm width -- Grips: Bontrager Satellite Elite, alloy lock-on -- Stem: - - Size: XS, S - Bontrager alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length - - Size: M, L - Bontrager alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 105mm length -- Headset: VP sealed cartridge, 1-1/8", threaded -- Brake: Shimano MT200 hydraulic disc -- Brake rotor: - - Size: XS, S, M, L - Shimano RT26, 6-bolt, 180mm - - Size: XS, S, M, L - Shimano RT26, 6-bolt, 160mm - -Accessories -- Battery: Bosch PowerTube 500Wh -- Charger: Bosch compact 2A, 100-240V -- Computer: Bosch Purion -- Motor: Bosch Performance Line Sport, 65Nm, 28mph -- Light: - - Size: XS, S, M, L - Spanninga SOLO for e-bike, taillight - - Size: XS, S, M, L - Herrmans MR8, 180 lumen, 60 lux, LED, headlight -- Kickstand: Adjustable length rear mount alloy kickstand -- Cargo rack: MIK-compatible alloy rear rack, maximum load 25 kg / 55 lbs -- Fender: - - Size: XS, S, M, L - SKS wide - - Size: XS, S, M, L - SKS plastic - -Weight -- Weight: M - 22.30 kg / 49.17 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing - -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| XS | 147 - 155 cm 4''10" - 5''1" | 69 - 73 cm 27" - 29" | -| S | 155 - 165 cm 5''1" - 5''5" | 72 - 78 cm 28" - 31" | -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | - -## Geometry - -All measurements provided in cm unless otherwise noted. -Sizing table -| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm | -|---------------------------|-------|-------|-------|-------| -| Frame size letter | XS | S | M | L | -| Wheel size | 700c | 700c | 700c | 700c | -| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 | -| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° | -| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 | -| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° | -| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 | -| F — Bottom bracket height | 29.4 | 29.4 | 29.4 | 29.4 | -| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | -| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 | -| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 | -| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 | -| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 | -| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 | -| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |', '/static/images/new_data/bikes.json_19.jpg', '/static/images/new_data/bikes.json_19.jpg', '/static/images/new_data/bikes.json_19.jpg', 'Horizon+ Evo Lowstep', 4499.99, 'The Horizon+ Evo Lowstep is a versatile electric hybrid bike designed for riders seeking a thrilling and efficient riding experience on a variety of terrains. With its powerful Bosch Performance Line Sport drive unit and integrated 500Wh battery, this e-bike enables riders to cover long distances with ease. Equipped with features prioritizing comfort and safety, such as a suspension seatpost, stable tires, and integrated lights, the Horizon+ Evo Lowstep is a reliable companion for everyday rides.', 'bicycle,road bike,professional'), -('fcb29e4f-289c-45b2-96fc-adc13685be92', '## Overview -It''s right for you if... -You''re looking for an e-bike that offers both speed and endurance. The FastRider X1 comes with a high-performance motor and a long-lasting battery, making it ideal for long-distance rides. - -The tech you get -The FastRider X1 features a state-of-the-art motor and a spacious battery, ensuring a fast and efficient ride. - -The final word -With the powerful motor and long-range battery, the FastRider X1 allows you to cover more distance at higher speeds. - -## Features -Connect Your Ride with the FastRider App -Download the FastRider app and transform your smartphone into an on-board computer. Easily dock and charge your phone with the smartphone controller, and use the thumb pad on your handlebar to make calls, listen to music, get turn-by-turn directions, and more. The app also allows you to connect with fitness and health apps, syncing your routes and ride data. - -Goodbye, Car. Hello, Extended Range! -With the option to add the Range Boost feature, you can attach a second long-range battery to your FastRider X1, doubling the distance and time between charges. This enhancement allows you to ride longer, commute farther, and take on more adventurous routes. - -What is the range? -To estimate the distance you can travel on a single charge, use our range calculator tool. It automatically fills in the variables for this specific bike model and assumes an average rider, but you can adjust the settings to get the most accurate estimate for your needs. - -## Specifications -Frameset -- Frame: High-performance hydroformed alloy, Removable Integrated Battery, Range Boost-compatible, internal cable routing, Motor Armour, post-mount disc, 135x5 mm QR -- Fork: FastRider rigid alloy fork, 1-1/8'''' steel steerer, 100x15mm thru axle, post mount disc brake -- Max compatible fork travel: 63mm - -Wheels -- Front Hub: FastRider sealed bearing, 32-hole 15mm alloy thru-axle -- Front Skewer: FastRider Switch thru axle, removable lever -- Rear Hub: FastRider alloy, sealed bearing, 6-bolt, 135x5mm QR -- Rear Skewer: 148x5mm bolt-on -- Rim: FastRider MD35, tubeless compatible, 32-hole, 35mm width, Presta valve -- Spokes: Size: M, L, XL - 14g stainless steel, black -- Tire: FastRider E6 Hard-Case Lite, reflective strip, 27.5x2.40'''' -- Max tire size: 27.5x2.40" - -Drivetrain -- Shifter: Shimano Deore M4100, 10 speed -- Rear derailleur: Size: M, L, XL - Shimano Deore M5120, long cage -- Crank: Size: M - FastRider alloy, 170mm length / Size: L, XL - FastRider alloy, 175mm length -- Chainring: FastRider 46T narrow/wide alloy, w/alloy guard -- Cassette: Size: M, L, XL - Shimano Deore M4100, 11-42, 10 speed -- Chain: Size: M, L, XL - KMC E10 / Size: M, L, XL - KMC X10e -- Pedal: Size: M, L, XL - FastRider City pedals / Size: M, L, XL - Wellgo C157, boron axle, plastic body / Size: M, L, XL - slip-proof aluminum pedals with reflectors -- Max chainring size: 1x: 48T - -Components -- Saddle: FastRider Commuter Comp -- Seatpost: FastRider Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length -- Handlebar: Size: M - FastRider alloy, 31.8mm, 15mm rise, 600mm width / Size: L, XL - FastRider alloy, 31.8mm, 15mm rise, 660mm width -- Grips: FastRider Satellite Elite, alloy lock-on -- Stem: Size: M - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length / Size: L - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length / Size: XL - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length -- Headset: Size: M, L, XL - FSA IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom / Size: M, L, XL - FSA Integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -- Brake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor -- Brake rotor: Shimano RT56, 6-bolt, 180mm -- Rotor size: Max brake rotor sizes: 180mm front & rear - -Accessories -- Battery: FastRider PowerTube 625Wh -- Charger: FastRider standard 4A, 100-240V -- Motor: FastRider Performance Speed, 85 Nm, 28 mph / 45 kph -- Light: Size: M, L, XL - FastRider taillight, 50 lumens / Size: M, L, XL - FastRider headlight, 500 lumens -- Kickstand: Size: M, L, XL - Rear mount, alloy / Size: M, L, XL - Adjustable length alloy kickstand -- Cargo rack: FastRider integrated rear rack, aluminum -- Fender: FastRider custom aluminum - -Weight -- Weight: M - 25.54 kg / 56.3 lbs - -Weight limit -- This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | -| XL | 186 - 197 cm 6''1" - 6''6" | 87 - 93 cm 34" - 37" | - -## Geometry -| Frame size letter | M | L | XL | -|---------------------------|-------|-------|-------| -| Wheel size | 27.5" | 27.5" | 27.5" | -| A — Seat tube | 44.6 | 49.1 | 53.4 | -| B — Seat tube angle | 73.0° | 73.0° | 73.0° | -| C — Head tube length | 16.5 | 19.5 | 23.0 | -| D — Head angle | 69.5° | 70.0° | 70.5° | -| E — Effective top tube | 59.5 | 60.7 | 62.2 | -| F — Bottom bracket height | 29.5 | 29.5 | 29.5 | -| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.4 | 4.4 | 4.4 | -| J — Trail | 8.6 | 8.1 | 7.9 | -| K — Wheelbase | 114.6 | 115.0 | 116.4 | -| L — Standover | 79.5 | 83.7 | 87.9 | -| M — Frame reach | 40.5 | 40.8 | 41.2 | -| N — Frame stack | 62.3 | 65.2 | 68.8 |', '/static/images/new_data/bikes.json_20.jpg', '/static/images/new_data/bikes.json_20.jpg', '/static/images/new_data/bikes.json_20.jpg', 'FastRider X1', 5499.99, 'FastRider X1 is a high-performance e-bike designed for riders seeking speed and long-distance capabilities. Equipped with a powerful motor and a high-capacity battery, the FastRider X1 is perfect for daily commuters and e-bike enthusiasts. It boasts a sleek and functional design, making it a great alternative to car transportation. The bike also features a smartphone controller for easy navigation and entertainment options.', 'bicycle,mountain bike,professional'), -('4c1eef01-0686-4d4f-a90f-20d21210cdae', '## Overview -It''s right for you if... -You want a fast and efficient e-bike that can take you long distances. The SonicRide 8S features a hydroformed aluminum frame with a concealed 625Wh battery, a high-powered SonicDrive motor, and a Smartphone Controller. It also includes essential accessories such as lights, fenders, and a rear rack. - -The tech you get -The SonicRide 8S is equipped with the fastest SonicDrive motor, ensuring exhilarating rides at high speeds. The long-range battery is perfect for commuters and riders looking to explore new horizons. - -The final word -With the SonicDrive motor and long-lasting battery, you can enjoy extended rides at higher speeds. - -## Features - -Connect Your Ride with SonicRide App -Download the SonicRide app and transform your phone into an onboard computer. Simply attach it to the Smartphone Controller for docking and charging. Use the thumb pad on your handlebar to control calls, music, directions, and more. The Bluetooth® wireless technology allows you to connect with fitness and health apps, syncing your routes and ride data. - -Say Goodbye to Limited Range with Range Boost! -Experience the convenience of Range Boost, an additional long-range 500Wh battery that seamlessly attaches to your bike''s down tube. This upgrade allows you to double your distance and time between charges, enabling longer commutes and more adventurous rides. Range Boost is compatible with select SonicRide electric bike models. - -What is the range? -For an accurate estimate of how far you can ride on a single charge, use SonicRide''s range calculator. We have pre-filled the variables for this specific bike model and the average rider, but you can adjust them to obtain the most accurate estimate. - -## Specifications -Frameset -- Frame: High-performance hydroformed alloy, Removable Integrated Battery, Range Boost-compatible, internal cable routing, Motor Armour, post-mount disc, 135x5 mm QR -- Fork: SonicRide rigid alloy fork, 1-1/8'''' steel steerer, 100x15mm thru axle, post mount disc brake -- Max compatible fork travel: 63mm - -Wheels -- Front Hub: SonicRide sealed bearing, 32-hole 15mm alloy thru-axle -- Front Skewer: SonicRide Switch thru axle, removable lever -- Rear Hub: SonicRide alloy, sealed bearing, 6-bolt, 135x5mm QR -- Rear Skewer: 148x5mm bolt-on -- Rim: SonicRide MD35, tubeless compatible, 32-hole, 35mm width, Presta valve -- Spokes: Size: M, L, XL - 14g stainless steel, black -- Tire: SonicRide E6 Hard-Case Lite, reflective strip, 27.5x2.40'''' -- Max tire size: 27.5x2.40" - -Drivetrain -- Shifter: Shimano Deore M4100, 10 speed -- Rear Derailleur: Size: M, L, XL - Shimano Deore M5120, long cage -- Crank: Size: M - SonicRide alloy, 170mm length; Size: L, XL - SonicRide alloy, 175mm length -- Chainring: SonicRide 46T narrow/wide alloy, with alloy guard -- Cassette: Size: M, L, XL - Shimano Deore M4100, 11-42, 10 speed -- Chain: Size: M, L, XL - KMC E10; Size: M, L, XL - KMC X10e -- Pedal: Size: M, L, XL - SonicRide City pedals; Size: M, L, XL - Wellgo C157, boron axle, plastic body; Size: M, L, XL - slip-proof aluminum pedals with reflectors -- Max chainring size: 1x: 48T - -Components -- Saddle: SonicRide Commuter Comp -- Seatpost: SonicRide Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length -- Handlebar: Size: M - SonicRide alloy, 31.8mm, 15mm rise, 600mm width; Size: L, XL - SonicRide alloy, 31.8mm, 15mm rise, 660mm width -- Grips: SonicRide Satellite Elite, alloy lock-on -- Stem: Size: M - SonicRide alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length; Size: L - SonicRide alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length; Size: XL - SonicRide alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length -- Headset: Size: M, L, XL - SonicRide IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom; Size: M, L, XL - SonicRide Integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -- Brake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor -- Brake rotor: Shimano RT56, 6-bolt, 180mm -- Rotor size: Max brake rotor sizes: 180mm front & rear - -Accessories -- Battery: SonicRide PowerTube 625Wh -- Charger: SonicRide standard 4A, 100-240V -- Motor: SonicRide Performance Speed, 85 Nm, 28 mph / 45 kph -- Light: Size: M, L, XL - SonicRide Lync taillight, 50 lumens; Size: M, L, XL - SonicRide Lync headlight, 500 lumens -- Kickstand: Size: M, L, XL - Rear mount, alloy; Size: M, L, XL - Adjustable length alloy kickstand -- Cargo rack: SonicRide integrated rear rack, aluminum -- Fender: SonicRide custom aluminum - -Weight -- Weight: M - 25.54 kg / 56.3 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| M | 165 - 175 cm / 5''5" - 5''9" | 77 - 83 cm / 30" - 33" | -| L | 175 - 186 cm / 5''9" - 6''1" | 82 - 88 cm / 32" - 35" | -| XL | 186 - 197 cm / 6''1" - 6''6" | 87 - 93 cm / 34" - 37" | - -## Geometry -| Frame size letter | M | L | XL | -|---------------------------|-------|-------|-------| -| Wheel size | 27.5" | 27.5" | 27.5" | -| A — Seat tube | 44.6 | 49.1 | 53.4 | -| B — Seat tube angle | 73.0° | 73.0° | 73.0° | -| C — Head tube length | 16.5 | 19.5 | 23.0 | -| D — Head angle | 69.5° | 70.0° | 70.5° | -| E — Effective top tube | 59.5 | 60.7 | 62.2 | -| F — Bottom bracket height | 29.5 | 29.5 | 29.5 | -| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.4 | 4.4 | 4.4 | -| J — Trail | 8.6 | 8.1 | 7.9 | -| K — Wheelbase | 114.6 | 115.0 | 116.4 | -| L — Standover | 79.5 | 83.7 | 87.9 | -| M — Frame reach | 40.5 | 40.8 | 41.2 |', '/static/images/new_data/bikes.json_21.jpg', '/static/images/new_data/bikes.json_21.jpg', '/static/images/new_data/bikes.json_21.jpg', 'SonicRide 8S', 5999.99, 'SonicRide 8S is a high-performance e-bike designed for riders who crave speed and long-distance capabilities. The advanced SonicDrive motor provides powerful assistance up to 28 mph, combined with a durable and long-lasting battery for extended rides. With its sleek design and thoughtful features, the SonicRide 8S is perfect for those who prefer the freedom of riding a bike over driving a car. Plus, it comes equipped with a smartphone controller for easy navigation, music, and more.', 'bicycle,road bike,professional'), -('4b994687-4621-4880-8a31-a27d33d02eab', '## Overview -This bike is ideal for you if: -- You desire a sleek and modern hydroformed aluminum frame that houses a 700Wh battery. -- You want to maintain high speeds of up to 30 mph with the assistance of the SwiftDrive motor. -- You appreciate the convenience of using your smartphone as a controller, which can be docked and charged on the handlebar. - -## Features - -Connect with SwiftSync App -By downloading the SwiftSync app, your smartphone becomes an interactive on-board computer. Attach it to the handlebar-mounted controller for easy access and charging. With the thumb pad, you can make calls, listen to music, receive turn-by-turn directions, and connect with fitness and health apps to track your routes and ride data via Bluetooth® wireless technology. - -Enhanced Range with BoostMax -BoostMax offers the capability to attach a second 700Wh Swift battery to the downtube of your bike, effectively doubling the distance and time between charges. This allows for extended rides, longer commutes, and more significant adventures. BoostMax is compatible with select Swift electric bike models. - -Range Estimation -For an estimate of how far you can ride on a single charge, consult the Swift range calculator. The variables are automatically populated based on this bike model and the average rider, but you can modify them to obtain the most accurate estimate. - -## Specifications -Frameset -- Frame: Lightweight hydroformed alloy, Removable Integrated Battery, BoostMax-compatible, internal cable routing, post-mount disc, 135x5 mm QR -- Fork: SwiftVolt rigid alloy fork, 1-1/8'''' steel steerer, 100x15mm thru-axle, post-mount disc brake -- Max compatible fork travel: 63mm - -Wheels -- Front Hub: Swift sealed bearing, 32-hole 15mm alloy thru-axle -- Front Skewer: Swift Switch thru-axle, removable lever -- Rear Hub: Swift alloy, sealed bearing, 6-bolt, 135x5mm QR -- Rear Skewer: 148x5mm bolt-on -- Rim: SwiftRim, tubeless compatible, 32-hole, 35mm width, Presta valve -- Spokes: 14g stainless steel, black -- Tire: Swift E6 Hard-Case Lite, reflective strip, 27.5x2.40'''' -- Max tire size: 27.5x2.40" - -Drivetrain -- Shifter: Shimano Deore M4100, 10 speed -- Rear Derailleur: Shimano Deore M5120, long cage -- Crank: Swift alloy, 170mm length -- Chainring: Swift 46T narrow/wide alloy, w/alloy guard -- Cassette: Shimano Deore M4100, 11-42, 10 speed -- Chain: KMC E10 -- Pedal: Swift City pedals -- Max chainring size: 1x: 48T - -Components -- Saddle: Swift Commuter Comp -- Seatpost: Swift Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length -- Handlebar: Swift alloy, 31.8mm, 15mm rise, 600mm width (M), 660mm width (L, XL) -- Grips: Swift Satellite Elite, alloy lock-on -- Stem: Swift alloy, 31.8mm, Blendr compatible, 7 degree, 70mm length (M), 90mm length (L), 100mm length (XL) -- Headset: FSA IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -- Brakes: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor -- Brake Rotor: Shimano RT56, 6-bolt, 180mm -- Rotor size: Max 180mm front & rear - -Accessories -- Battery: Swift PowerTube 700Wh -- Charger: Swift standard 4A, 100-240V -- Motor: SwiftDrive, 90 Nm, 30 mph / 48 kph -- Light: Swift Lync taillight, 50 lumens (M, L, XL), Swift Lync headlight, 500 lumens (M, L, XL) -- Kickstand: Rear mount, alloy (M, L, XL), Adjustable length alloy kickstand (M, L, XL) -- Cargo rack: SwiftVolt integrated rear rack, aluminum -- Fender: Swift custom aluminum - -Weight -- Weight: M - 25.54 kg / 56.3 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:---------------------:|:-------------:| -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | -| XL | 186 - 197 cm 6''1" - 6''6" | 87 - 93 cm 34" - 37" | - -## Geometry -| Frame size letter | M | L | XL | -|---------------------------|-------|-------|-------| -| Wheel size | 27.5" | 27.5" | 27.5" | -| A — Seat tube | 44.6 | 49.1 | 53.4 | -| B — Seat tube angle | 73.0° | 73.0° | 73.0° | -| C — Head tube length | 16.5 | 19.5 | 23.0 | -| D — Head angle | 69.5° | 70.0° | 70.5° | -| E — Effective top tube | 59.5 | 60.7 | 62.2 | -| F — Bottom bracket height | 29.5 | 29.5 | 29.5 | -| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.4 | 4.4 | 4.4 | -| J — Trail | 8.6 | 8.1 | 7.9 | -| K — Wheelbase | 114.6 | 115.0 | 116.4 | -| L — Standover | 79.5 | 83.7 | 87.9 | -| M — Frame reach | 40.5 | 40.8 | 41.2 | -| N — Frame stack | 62.3 | 65.2 | 68.8 |', '/static/images/new_data/bikes.json_22.jpg', '/static/images/new_data/bikes.json_22.jpg', '/static/images/new_data/bikes.json_22.jpg', 'SwiftVolt Pro', 2499.99, 'SwiftVolt Pro is a high-performance e-bike designed for riders seeking a thrilling and fast riding experience. Equipped with a powerful SwiftDrive motor that provides assistance up to 30 mph and a long-lasting battery, this bike is perfect for long-distance commuting and passionate e-bike enthusiasts. The sleek and innovative design features cater specifically to individuals who prioritize cycling over driving. Additionally, the bike is seamlessly integrated with your smartphone, allowing you to use it for navigation, music, and more.', 'bicycle,city bike,professional'), -('e837fb5d-0d25-4127-9407-cd72231158c4', '## Overview -It''s right for you if... -You crave speed and want to cover long distances efficiently. The AgileEon 9X features a sleek hydroformed aluminum frame that houses a powerful motor, along with a large-capacity battery for extended rides. It comes equipped with a 10-speed drivetrain, front and rear lighting, fenders, and a rear rack. - -The tech you get -Designed for those constantly on the move, this bike includes a state-of-the-art motor and a high-capacity battery, making it an excellent choice for lengthy commutes. - -The final word -With the AgileEon 9X, you can push your boundaries and explore new horizons thanks to its powerful motor and long-lasting battery. - -## Features - -Connect Your Ride with RideMate App -Make use of the RideMate app to transform your smartphone into an onboard computer. Simply attach it to the RideMate controller to dock and charge, then utilize the thumb pad on your handlebar to make calls, listen to music, receive turn-by-turn directions, and more. The bike also supports Bluetooth® wireless technology, enabling seamless connectivity with fitness and health apps for route syncing and ride data. - -Goodbye, car. Hello, Extended Range! -Enhance your riding experience with the Extended Range option, which allows for the attachment of an additional high-capacity 500Wh battery to your bike''s downtube. This doubles the distance and time between charges, enabling longer rides, extended commutes, and more significant adventures. The Extended Range feature is compatible with select AgileEon electric bike models. - -What is the range? -To determine how far you can ride on a single charge, you can utilize the range calculator provided by AgileEon. We have pre-filled the variables for this specific model and an average rider, but adjustments can be made for a more accurate estimation. - -## Specifications -Frameset -Frame: High-performance hydroformed alloy, Removable Integrated Battery, Extended Range-compatible, internal cable routing, Motor Armor, post-mount disc, 135x5 mm QR -Fork: AgileEon rigid alloy fork, 1-1/8'''' steel steerer, 100x15mm thru-axle, post-mount disc brake -Max compatible fork travel: 63mm - -Wheels -Front Hub: AgileEon sealed bearing, 32-hole 15mm alloy thru-axle -Front Skewer: AgileEon Switch thru-axle, removable lever -Rear Hub: AgileEon alloy, sealed bearing, 6-bolt, 135x5mm QR -Rear Skewer: 148x5mm bolt-on -Rim: AgileEon MD35, tubeless compatible, 32-hole, 35mm width, Presta valve -Spokes: -- Size: M, L, XL: 14g stainless steel, black -Tire: AgileEon E6 Hard-Case Lite, reflective strip, 27.5x2.40'''' -Max tire size: 27.5x2.40" - -Drivetrain -Shifter: Shimano Deore M4100, 10-speed -Rear derailleur: -- Size: M, L, XL: Shimano Deore M5120, long cage -Crank: -- Size: M: AgileEon alloy, 170mm length -- Size: L, XL: AgileEon alloy, 175mm length -Chainring: AgileEon 46T narrow/wide alloy, with alloy guard -Cassette: -- Size: M, L, XL: Shimano Deore M4100, 11-42, 10-speed -Chain: -- Size: M, L, XL: KMC E10 -Pedal: -- Size: M, L, XL: AgileEon City pedals -Max chainring size: 1x: 48T - -Components -Saddle: AgileEon Commuter Comp -Seatpost: AgileEon Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length -Handlebar: -- Size: M: AgileEon alloy, 31.8mm, 15mm rise, 600mm width -- Size: L, XL: AgileEon alloy, 31.8mm, 15mm rise, 660mm width -Grips: AgileEon Satellite Elite, alloy lock-on -Stem: -- Size: M: AgileEon alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length -- Size: L: AgileEon alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length -- Size: XL: AgileEon alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length -Headset: -- Size: M, L, XL: AgileEon IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -Brake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor -Brake rotor: Shimano RT56, 6-bolt, 180mm -Rotor size: Max brake rotor sizes: 180mm front & rear - -Accessories -Battery: AgileEon PowerTube 625Wh -Charger: AgileEon standard 4A, 100-240V -Motor: AgileEon Performance Speed, 85 Nm, 28 mph / 45 kph -Light: -- Size: M, L, XL: AgileEon taillight, 50 lumens -- Size: M, L, XL: AgileEon headlight, 500 lumens -Kickstand: -- Size: M, L, XL: Rear mount, alloy -- Size: M, L, XL: Adjustable length alloy kickstand -Cargo rack: AgileEon integrated rear rack, aluminum -Fender: AgileEon custom aluminum - -Weight -Weight: M - 25.54 kg / 56.3 lbs -Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | -| XL | 186 - 197 cm 6''1" - 6''6" | 87 - 93 cm 34" - 37" | - -## Geometry -| Frame size letter | M | L | XL | -|---------------------------|-------|-------|-------| -| Wheel size | 27.5" | 27.5" | 27.5" | -| A — Seat tube | 44.6 | 49.1 | 53.4 | -| B — Seat tube angle | 73.0° | 73.0° | 73.0° | -| C — Head tube length | 16.5 | 19.5 | 23.0 | -| D — Head angle | 69.5° | 70.0° | 70.5° | -| E — Effective top tube | 59.5 | 60.7 | 62.2 | -| F — Bottom bracket height | 29.5 | 29.5 | 29.5 | -| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.4 | 4.4 | 4.4 | -| J — Trail | 8.6 | 8.1 | 7.9 | -| K — Wheelbase | 114.6 | 115.0 | 116.4 | -| L — Standover | 79.5 | 83.7 | 87.9 | -| M — Frame reach | 40.5 | 40.8 | 41.2 | -| N — Frame stack | 62.3 | 65.2 | 68.8 |', '/static/images/new_data/bikes.json_23.jpg', '/static/images/new_data/bikes.json_23.jpg', '/static/images/new_data/bikes.json_23.jpg', 'AgileEon 9X', 3499.99, 'AgileEon 9X is a high-performance e-bike designed for riders seeking speed and endurance. Equipped with a robust motor and an extended battery life, this bike is perfect for long-distance commuters and avid e-bike enthusiasts. It boasts innovative features tailored for individuals who prioritize cycling over driving. Additionally, the bike integrates seamlessly with your smartphone, allowing you to access navigation, music, and more.', 'bicycle,road bike,professional'), -('49584aa0-5fd7-42db-a98b-aad064393da2', '## Overview -It''s right for you if... -You''re a competitive cyclist looking for a road bike that offers superior performance in terms of speed, handling, and aerodynamics. You want a complete package that includes lightweight carbon wheels, without the need for future upgrades. - -The tech you get -The Stealth R1X Pro features a lightweight and aerodynamic carbon frame, an advanced carbon fork, high-performance Shimano Ultegra 11-speed drivetrain, and powerful Ultegra disc brakes. The bike also comes equipped with cutting-edge Bontrager Aeolus Elite 35 carbon wheels. - -The final word -The Stealth R1X Pro stands out with its combination of a fast and aerodynamic frame, high-end drivetrain, and top-of-the-line carbon wheels. Whether you''re racing on local roads, participating in pro stage races, or engaging in hill climbing competitions, this bike is a formidable choice that delivers an exceptional riding experience. - -## Features -Sleek and aerodynamic design -The Stealth R1X Pro''s aero tube shapes maximize speed and performance, making it faster on climbs and flats alike. The bike also features a streamlined Aeolus RSL bar/stem for improved front-end aerodynamics. - -Designed for all riders -The Stealth R1X Pro is designed to provide an outstanding fit for riders of all genders, body types, riding styles, and abilities. It comes equipped with size-specific components to ensure a comfortable and efficient riding position for competitive riders. - -## Specifications -Frameset -- Frame: Ultralight carbon frame constructed with high-performance 500 Series ADV Carbon. It features Ride Tuned performance tube optimization, a tapered head tube, internal routing, DuoTrap S compatibility, flat mount disc brake mounts, and a 142x12mm thru axle. -- Fork: Full carbon fork (Émonda SL) with a tapered carbon steerer, internal brake routing, flat mount disc brake mounts, and a 12x100mm thru axle. -- Frame fit: H1.5 Race geometry. - -Wheels -- Front wheel: Bontrager Aeolus Elite 35 carbon wheel with a 35mm rim depth, ADV Carbon construction, Tubeless Ready compatibility, and a 100x12mm thru axle. -- Rear wheel: Bontrager Aeolus Elite 35 carbon wheel with a 35mm rim depth, ADV Carbon construction, Tubeless Ready compatibility, Shimano 11/12-speed freehub, and a 142x12mm thru axle. -- Front skewer: Bontrager Switch thru axle with a removable lever. -- Rear skewer: Bontrager Switch thru axle with a removable lever. -- Tire: Bontrager R2 Hard-Case Lite with an aramid bead, 60 tpi, and a size of 700x25c. -- Maximum tire size: 28mm. - -Drivetrain -- Shifter: - - Size 47, 50, 52: Shimano Ultegra R8025 with short-reach levers, 11-speed. - - Size 54, 56, 58, 60, 62: Shimano Ultegra R8020, 11-speed. -- Front derailleur: Shimano Ultegra R8000, braze-on. -- Rear derailleur: Shimano Ultegra R8000, short cage, with a maximum cog size of 30T. -- Crank: - - Size 47: Shimano Ultegra R8000 with 52/36 chainrings and a 165mm length. - - Size 50, 52: Shimano Ultegra R8000 with 52/36 chainrings and a 170mm length. - - Size 54, 56, 58: Shimano Ultegra R8000 with 52/36 chainrings and a 172.5mm length. - - Size 60, 62: Shimano Ultegra R8000 with 52/36 chainrings and a 175mm length. -- Bottom bracket: Praxis T47 threaded bottom bracket with internal bearings. -- Cassette: Shimano Ultegra R8000, 11-30, 11-speed. -- Chain: Shimano Ultegra HG701, 11-speed. -- Maximum chainring size: 1x - 50T, 2x - 53/39. - -Components -- Saddle: Bontrager Aeolus Comp with steel rails and a width of 145mm. -- Seatpost: - - Size 47, 50, 52, 54: Bontrager carbon seatmast cap with a 20mm offset and a short length. - - Size 56, 58, 60, 62: Bontrager carbon seatmast cap with a 20mm offset and a tall length. -- Handlebar: - - Size 47, 50: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 38cm. - - Size 52: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 40cm. - - Size 54, 56, 58: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 42cm. - - Size 60, 62: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 44cm. -- Handlebar tape: Bontrager Supertack Perf tape. -- Stem: - - Size 47: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 70mm. - - Size 50: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 80mm. - - Size 52, 54: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 90mm. - - Size 56: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 100mm. - - Size 58, 60, 62: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 110mm. -- Brake: Shimano Ultegra hydraulic disc brakes with flat mount calipers. -- Brake rotor: Shimano RT800 with centerlock mounting, 160mm diameter. - -Weight -- Weight: 8.03 kg (17.71 lbs) for the 56cm frame. -- Weight limit: The bike has a maximum total weight limit (combined weight of the bicycle, rider, and cargo) of 275 pounds (125 kg). - -## Sizing -Please refer to the table below for the corresponding Stealth R1X Pro frame sizes, recommended rider height range, and inseam measurements: - -| Size | Rider Height | Inseam | -|:----:|:---------------------:|:--------------:| -| 47 | 152 - 158 cm (5''0") | 71 - 75 cm | -| 50 | 158 - 163 cm (5''2") | 74 - 77 cm | -| 52 | 163 - 168 cm (5''4") | 76 - 79 cm | -| 54 | 168 - 174 cm (5''6") | 78 - 82 cm | -| 56 | 174 - 180 cm (5''9") | 81 - 85 cm | -| 58 | 180 - 185 cm (5''11") | 84 - 87 cm | -| 60 | 185 - 190 cm (6''1") | 86 - 90 cm | -| 62 | 190 - 195 cm (6''3") | 89 - 92 cm | - -## Geometry -The table below provides the geometry measurements for each frame size of the Stealth R1X Pro: - -| Frame size number | 47 cm | 50 cm | 52 cm | 54 cm | 56 cm | 58 cm | 60 cm | 62 cm | -|-------------------------------|-------|-------|-------|-------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | 700c | 700c | -| A — Seat tube | 42.4 | 45.3 | 48.3 | 49.6 | 52.5 | 55.3 | 57.3 | 59.3 | -| B — Seat tube angle | 74.6° | 74.6° | 74.2° | 73.7° | 73.3° | 73.0° | 72.8° | 72.5° | -| C — Head tube length | 10.0 | 11.1 | 12.1 | 13.1 | 15.1 | 17.1 | 19.1 | 21.1 | -| D — Head angle | 72.1° | 72.1° | 72.8° | 73.0° | 73.5° | 73.8° | 73.9° | 73.9° | -| E — Effective top tube | 51.2 | 52.1 | 53.4 | 54.3 | 55.9 | 57.4 | 58.6 | 59.8 | -| G — Bottom bracket drop | 7.2 | 7.2 | 7.2 | 7.0 | 7.0 | 6.8 | 6.8 | 6.8 | -| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 | 41.0 | 41.1 | 41.1 | 41.2 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | 4.0 | 4.0 | 4.0 | 4.0 | -| J — Trail | 6.8 | 6.2 | 5.8 | 5.6 | 5.8 | 5.7 | 5.6 | 5.6 | -| K — Wheelbase | 97.2 | 97.4 | 97.7 | 98.1 | 98.3 | 99.2 | 100.1 | 101.0 | -| L — Standover | 69.2 | 71.1 | 73.2 | 74.4 | 76.8 | 79.3 | 81.1 | 82.9 | -| M — Frame reach | 37.3 | 37.8 | 38.3 | 38.6 | 39.1 | 39.6 | 39.9 | 40.3 | -| N — Frame stack | 50.7 | 52.1 | 53.3 | 54.1 | 56.3 | 58.1 | 60.1 | 62.0 | -| Saddle rail height min (short mast) | 55.5 | 58.5 | 61.5 | 64.0 | 67.0 | 69.0 | 71.0 | 73.0 | -| Saddle rail height max (short mast) | 61.5 | 64.5 | 67.5 | 70.0 | 73.0 | 75.0 | 77.0 | 79.0 | -| Saddle rail height min (tall mast) | 59.0 | 62.0 | 65.0 | 67.5 | 70.5 | 72.5 | 74.5 | 76.5 | -| Saddle rail height max (tall mast) | 65.0 | 68.0 | 71.0 | 73.5 | 76.5 | 78.5 | 80.5 | 82.5 |', '/static/images/new_data/bikes.json_24.jpg', '/static/images/new_data/bikes.json_24.jpg', '/static/images/new_data/bikes.json_24.jpg', 'Stealth R1X Pro', 2999.99, 'Stealth R1X Pro is a high-performance carbon road bike designed for riders who crave speed and exceptional handling. With its aerodynamic tube shaping, disc brakes, and lightweight carbon wheels, the Stealth R1X Pro offers unparalleled performance for competitive road cycling.', 'bicycle,mountain bike,professional'), -('120c7bc8-987c-4259-8720-4c9f1eb9fb5c', '## Overview -It''s right for you if... -You''re a rider who values exceptional performance on fast group rides and races, and you want a complete package that includes lightweight carbon wheels. The Avant SLR 6 Disc Pro is designed to provide the speed and aerodynamics you need to excel on any road. - -The tech you get -The Avant SLR 6 Disc Pro features a lightweight 500 Series ADV Carbon frame and fork, Bontrager Aeolus Elite 35 carbon wheels, a full Shimano Ultegra 11-speed drivetrain, and powerful Ultegra disc brakes. - -The final word -The standout feature of this bike is the combination of its aero frame, high-performance drivetrain, and top-quality carbon wheels. Whether you''re racing, tackling challenging climbs, or participating in professional stage races, the Avant SLR 6 Disc Pro is a worthy choice that will enhance your performance. - -## Features -All-new aero design -The Avant SLR 6 Disc Pro features innovative aero tube shapes that provide an advantage in all riding conditions, whether it''s climbing or riding on flat roads. Additionally, it is equipped with a sleek new Aeolus RSL bar/stem that enhances front-end aero performance. - -Awesome bikes for everyone -The Avant SLR 6 Disc Pro is designed with the belief that every rider, regardless of gender, body type, riding style, or ability, deserves a great bike. It is equipped with size-specific components that ensure a perfect fit for competitive riders of all genders. - -## Specifications -Frameset -- Frame: Ultralight 500 Series ADV Carbon, Ride Tuned performance tube optimization, tapered head tube, internal routing, DuoTrap S compatible, flat mount disc, 142x12mm thru axle -- Fork: Avant SL full carbon, tapered carbon steerer, internal brake routing, flat mount disc, 12x100mm thru axle -- Frame fit: H1.5 Race - -Wheels -- Front wheel: Bontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, 100x12mm thru axle -- Rear wheel: Bontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, Shimano 11/12-speed freehub, 142x12mm thru axle -- Front skewer: Bontrager Switch thru axle, removable lever -- Rear skewer: Bontrager Switch thru axle, removable lever -- Tire: Bontrager R2 Hard-Case Lite, aramid bead, 60 tpi, 700x25c -- Max tire size: 28mm - -Drivetrain -- Shifter: - - Size 47, 50, 52: Shimano Ultegra R8025, short-reach lever, 11-speed - - Size 54, 56, 58, 60, 62: Shimano Ultegra R8020, 11-speed -- Front derailleur: Shimano Ultegra R8000, braze-on -- Rear derailleur: Shimano Ultegra R8000, short cage, 30T max cog -- Crank: - - Size 47: Shimano Ultegra R8000, 52/36, 165mm length - - Size 50, 52: Shimano Ultegra R8000, 52/36, 170mm length - - Size 54, 56, 58: Shimano Ultegra R8000, 52/36, 172.5mm length - - Size 60, 62: Shimano Ultegra R8000, 52/36, 175mm length -- Bottom bracket: Praxis, T47 threaded, internal bearing -- Cassette: Shimano Ultegra R8000, 11-30, 11-speed -- Chain: Shimano Ultegra HG701, 11-speed -- Max chainring size: 1x: 50T, 2x: 53/39 - -Components -- Saddle: Bontrager Aeolus Comp, steel rails, 145mm width -- Seatpost: - - Size 47, 50, 52, 54: Bontrager carbon seatmast cap, 20mm offset, short length - - Size 56, 58, 60, 62: Bontrager carbon seatmast cap, 20mm offset, tall length -- Handlebar: - - Size 47, 50: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 38cm width - - Size 52: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 40cm width - - Size 54, 56, 58: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 42cm width - - Size 60, 62: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 44cm width -- Handlebar tape: Bontrager Supertack Perf tape -- Stem: - - Size 47: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 70mm length - - Size 50: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 80mm length - - Size 52, 54: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 90mm length - - Size 56: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 100mm length - - Size 58, 60, 62: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 110mm length -- Brake: Shimano Ultegra hydraulic disc, flat mount -- Brake rotor: Shimano RT800, centerlock, 160mm - -Weight -- Weight: 56 - 8.03 kg / 17.71 lbs -- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:-------------------------:|:--------------------:| -| 47 | 152 - 158 cm 5''0" - 5''2" | 71 - 75 cm 28" - 30" | -| 50 | 158 - 163 cm 5''2" - 5''4" | 74 - 77 cm 29" - 30" | -| 52 | 163 - 168 cm 5''4" - 5''6" | 76 - 79 cm 30" - 31" | -| 54 | 168 - 174 cm 5''6" - 5''9" | 78 - 82 cm 31" - 32" | -| 56 | 174 - 180 cm 5''9" - 5''11" | 81 - 85 cm 32" - 33" | -| 58 | 180 - 185 cm 5''11" - 6''1" | 84 - 87 cm 33" - 34" | -| 60 | 185 - 190 cm 6''1" - 6''3" | 86 - 90 cm 34" - 35" | -| 62 | 190 - 195 cm 6''3" - 6''5" | 89 - 92 cm 35" - 36" | - -## Geometry -| Frame size number | 47 cm | 50 cm | 52 cm | 54 cm | 56 cm | 58 cm | 60 cm | 62 cm | -|---------------------------------------|-------|-------|-------|-------|-------|-------|-------|-------| -| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | 700c | 700c | -| A — Seat tube | 42.4 | 45.3 | 48.3 | 49.6 | 52.5 | 55.3 | 57.3 | 59.3 | -| B — Seat tube angle | 74.6° | 74.6° | 74.2° | 73.7° | 73.3° | 73.0° | 72.8° | 72.5° | -| C — Head tube length | 10.0 | 11.1 | 12.1 | 13.1 | 15.1 | 17.1 | 19.1 | 21.1 | -| D — Head angle | 72.1° | 72.1° | 72.8° | 73.0° | 73.5° | 73.8° | 73.9° | 73.9° | -| E — Effective top tube | 51.2 | 52.1 | 53.4 | 54.3 | 55.9 | 57.4 | 58.6 | 59.8 | -| G — Bottom bracket drop | 7.2 | 7.2 | 7.2 | 7.0 | 7.0 | 6.8 | 6.8 | 6.8 | -| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 | 41.0 | 41.1 | 41.1 | 41.2 | -| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | 4.0 | 4.0 | 4.0 | 4.0 | -| J — Trail | 6.8 | 6.2 | 5.8 | 5.6 | 5.8 | 5.7 | 5.6 | 5.6 | -| K — Wheelbase | 97.2 | 97.4 | 97.7 | 98.1 | 98.3 | 99.2 | 100.1 | 101.0 | -| L — Standover | 69.2 | 71.1 | 73.2 | 74.4 | 76.8 | 79.3 | 81.1 | 82.9 | -| M — Frame reach | 37.3 | 37.8 | 38.3 | 38.6 | 39.1 | 39.6 | 39.9 | 40.3 | -| N — Frame stack | 50.7 | 52.1 | 53.3 | 54.1 | 56.3 | 58.1 | 60.1 | 62.0 | -| Saddle rail height min (w/short mast) | 55.5 | 58.5 | 61.5 | 64.0 | 67.0 | 69.0 | 71.0 | 73.0 | -| Saddle rail height max (w/short mast) | 61.5 | 64.5 | 67.5 | 70.0 | 73.0 | 75.0 | 77.0 | 79.0 | -| Saddle rail height min (w/tall mast) | 59.0 | 62.0 | 65.0 | 67.5 | 70.5 | 72.5 | 74.5 | 76.5 | -| Saddle rail height max (w/tall mast) | 65.0 | 68.0 | 71.0 | 73.5 | 76.5 | 78.5 | 80.5 | 82.5 |', '/static/images/new_data/bikes.json_25.jpg', '/static/images/new_data/bikes.json_25.jpg', '/static/images/new_data/bikes.json_25.jpg', 'Avant SLR 6 Disc Pro', 999.99, 'Avant SLR 6 Disc Pro is a high-performance carbon road bike designed for riders who prioritize speed and handling. With its aero tube shaping, disc brakes, and lightweight carbon wheels, it offers the perfect balance of speed and control.', 'bicycle,city bike,professional'); -INSERT INTO CATALOG (id, description, image_url1, image_url2, image_url3, name, price, short_description, tags) -VALUES -('74204230-979a-49ed-951c-58dbcd197308', '## Overview -Make your bike rides more enjoyable with the Verden MIK Cargo Trunk Bag. This trunk bag offers simple and secure on-bike storage, with easy installation and removal without the need for any tools. It features multiple pockets to keep you organized, a durable design with reflective materials for enhanced visibility, and an integrated rain cover to protect you and your gear in all weather conditions. - -### Product Details -- MIK mounting system provides secure, integrated mounting with compatible racks -- Enhance visibility with front and rear reflective materials in a sleek black finish -- Stay organized with an internal mesh pocket and two side pockets, each with a smaller internal pocket -- Securely store your phone in the zippered pocket with soft lining, easily accessible from the top of the bag -- Be prepared for any weather with the integrated rain cover securely stowed in the rear pocket -- Convenient light loop for easy mounting of your rear light -- Adjustable carrying strap for convenient off-bike use - -## Features -Function, performance, and style - -Verden City Utility bags, Verden City Shopping Trunk bags, and Verden Panniers transform any bike into a stylish and practical utility ride. Crafted with high-end fabrics and thoughtful finishing materials, these bags strike the perfect balance between great looks and exceptional functionality. - -### MIK: Mounting is Key -MIK racks and bags feature a unique keyed installation system that ensures your bags are securely attached to your rack while still allowing for easy removal when needed. - -### How MIK Works -Simply slide the Verden MIK bag onto the MIK rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press. The bag will then be released and ready to be detached. - -### Better Together -Our bags and racks are designed as a complete system, making installation and removal a breeze while ensuring your valuable cargo remains secure throughout your rides. - -### Integrated Light Mounting -For improved visibility at all times, our racks and trunk bags feature a dedicated spot to easily mount your rear light. - -## Specs -- Cargo capacity: 13L -- Bag type: Trunk bags -- Dimensions: 35cm (length) x 20cm (width) x 20cm (height) -- Attachment: MIK -- Fiber content: 35% Poly 600 PU Coating / 30% Poly 840 PU Coating / 15% 3M Silver Reflective Mesh / 11% Nylon Mesh / 9% Poly Super Nylex Mesh -- Material: Woven -- Weight: 860g', '/static/images/new_data/accessories.json_1.jpg', '/static/images/new_data/accessories.json_1.jpg', '/static/images/new_data/accessories.json_1.jpg', 'Verden MIK Cargo Trunk Bag', 34.99, 'A versatile trunk bag designed to fit a wide range of cargo that quickly and securely mounts to compatible MIK racks.', 'trunkbag'), -('f2c641b6-1545-4e61-b4a7-729945fdff79', '## Overview -Make your bike rides more convenient and enjoyable with the Velocity Xplorer TrunkPak. This trunk bag offers simple and secure on-bike storage that can be easily installed and removed without the need for tools. It features multiple pockets for easy organization, a durable design with reflective materials, and a built-in rain cover to protect you and your gear in all weather conditions. - -Product Details -- Xplorer mounting system provides secure and integrated mounting with compatible racks. -- Front and rear black reflective materials enhance visibility while adding a touch of style. -- Stay organized with an internal mesh pocket and two side pockets, each equipped with a smaller internal pocket. -- The zippered pocket with a soft lining ensures secure phone storage, easily accessible from the top of the bag. -- Be prepared for any weather with the integrated rain cover securely stowed in the rear pocket. -- Light loop included for convenient rear light mounting. -- Adjustable carrying strap for convenient off-bike use. - -## Features -Functionality, Performance, and Style - -Velocity City Utility bags, Velocity City Shopping Trunk bags, and Velocity Panniers transform any bike into a stylish and practical utility ride. The use of high-end fabrics and thoughtful finishing materials delivers the perfect balance of great looks and excellent functionality. - -Xplorer: Unmatched Mounting System - -Xplorer racks and bags feature an innovative keyed installation system that ensures your bags stay securely attached to your rack while still allowing for easy removal when needed. - -How Xplorer Works - -Simply slide the Xplorer bag onto the Xplorer rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press. The bag can then be easily taken off. - -Better Together - -Our bags and racks are designed as a complete system, making installation and removal hassle-free while ensuring the safety and security of your precious cargo. - -Integrated Light Mounting - -For enhanced visibility during all hours of the day, our racks and trunk bags come with a dedicated spot to securely mount your bike light. - -## Specs -- Cargo capacity: 15L -- Bag type: Trunk bags -- Dimensions: 36cm (l) x 19cm (w) x 20cm (h) -- Attachment: Xplorer -- Fiber content: 40% Poly 600 PU Coating / 35% Poly 840 PU Coating / 12% 3M Silver Reflective Mesh / 8% Nylon Mesh / 5% Poly Super Nylex Mesh -- Material: Woven -- Weight: 900g', '/static/images/new_data/accessories.json_2.jpg', '/static/images/new_data/accessories.json_2.jpg', '/static/images/new_data/accessories.json_2.jpg', 'Velocity Xplorer TrunkPak', 21.99, 'A versatile trunk bag designed to fit a wide range of cargo that quickly and securely mounts to compatible Xplorer racks.', 'trunkbag'), -('11e64cb0-e542-4bf7-b4a3-c2f245392b44', '## Overview -Enhance your biking experience with the Cyclone Xpress Cargo Trunk Bag, a versatile accessory that provides convenient and secure storage on your bike. Designed for easy installation and removal without the need for tools, this trunk bag offers multiple pockets for organization, a durable design with reflective materials, and a built-in rain cover to protect your belongings in any weather condition. - -## Product Details -- Compatible with Cyclone MIK racks for secure and integrated mounting -- Stylish black reflective materials on the front and rear for enhanced visibility -- Stay organized with an internal mesh pocket and two side pockets, each featuring a smaller internal pocket -- Convenient zippered pocket with a soft lining for secure phone storage, accessible from the top of the bag -- Integrated rain cover stowed in a rear pocket ensures protection against rain -- Light loop for easy mounting of rear lights -- Adjustable carrying strap for convenient off-bike use - -## Features -Function, Performance, and Style -The Cyclone Xpress Cargo Trunk Bag combines functionality, performance, and style. Crafted with high-quality fabrics and thoughtful finishing materials, this bag delivers a perfect blend of great looks and great functionality. - -MIK: Mounting is Key -The Cyclone MIK system features a unique keyed installation system that securely attaches the bag to the rack while allowing for easy removal when needed. - -How MIK works -Simply slide the Cyclone MIK bag onto the Cyclone MIK rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press. The bag can then be easily detached. - -Better Together -Our bags and racks are designed as one complete system, ensuring easy installation and removal while keeping your precious cargo secure. - -Integrated Light Mounting -For improved visibility during all hours, the Cyclone Xpress Cargo Trunk Bag provides a dedicated spot for mounting your light on both racks and trunk bags. - -## Specs -- Cargo capacity: 15L -- Bag type: Trunk bags -- Dimensions: 37cm (l) x 21cm (w) x 20cm (h) -- Attachment: Cyclone MIK -- Fiber content: 40% Poly 600 PU Coating / 25% Poly 840 PU Coating / 15% 3M Silver Reflective Mesh / 10% Nylon Mesh / 10% Poly Super Nylex Mesh -- Material: Woven -- Weight: 880g', '/static/images/new_data/accessories.json_3.jpg', '/static/images/new_data/accessories.json_3.jpg', '/static/images/new_data/accessories.json_3.jpg', 'Cyclone Xpress Cargo Trunk Bag', 54.99, 'The Cyclone Xpress Cargo Trunk Bag is a versatile biking accessory that offers convenient and secure storage. It features multiple pockets for organization, reflective materials for enhanced visibility, and a built-in rain cover.', 'trunkbag'), -('adc3c352-a680-44fa-bf46-b9b18d9621d5', '## Overview - -Maximize your cycling experience with the CargoMax Trunk Storage Bag. Whether you''re running errands or going on an adventure, this bag offers simple and secure storage that keeps you organized. It features multiple pockets, durable materials with reflective accents, and a built-in rain cover to protect your gear in various weather conditions. - -### Product Details - -- Compatibility: Easily mounts to compatible VelozRide racks -- Reflective Accents: Enhance visibility with front and rear reflective materials -- Organization: Internal mesh pocket and two side pockets, each with a smaller internal pocket for easy organization -- Phone Storage: Zippered pocket with soft lining provides secure storage accessible from the top of the bag -- Weather Protection: Integrated rain cover securely stowed in rear pocket -- Light Mount: Built-in light loop for easy rear light attachment -- Versatility: Adjustable carrying strap for convenient off-bike use - -### Features - -Functionality, performance, and style come together in the CargoMax Trunk Storage Bag. VelozRide offers high-quality materials and meticulous finishing for a perfect blend of functionality and aesthetics. - -#### VelozRide Compatibility - -The CargoMax Trunk Storage Bag utilizes an innovative mounting system designed specifically for VelozRide racks. This secure and integrated mounting system ensures a hassle-free installation process and easy removal when needed. - -##### How it Works - -Simply slide the CargoMax bag onto the VelozRide rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press the release mechanism. The bag can then be effortlessly detached from the rack. - -#### Better Together - -VelozRide bags and racks are engineered as a complete system, providing seamless integration and maximum security for your valuable cargo. - -#### Integrated Light Mounting - -For enhanced visibility during all hours of the day, VelozRide trunk bags and racks feature a dedicated spot to mount your rear light. - -## Specifications - -- Cargo Capacity: 12L -- Bag Type: Trunk storage bag -- Dimensions: 36cm (l) x 22cm (w) x 20cm (h) -- Attachment: VelozRide mounting system -- Material: Woven fabric -- Weight: 900g', '/static/images/new_data/accessories.json_4.jpg', '/static/images/new_data/accessories.json_4.jpg', '/static/images/new_data/accessories.json_4.jpg', 'VelozRide CargoMax Trunk Storage Bag', 18.99, 'A versatile trunk storage bag designed to provide secure and convenient on-bike storage for a wide range of cargo. The CargoMax easily mounts to compatible racks, ensuring a quick and tool-free installation process.', 'trunkbag'), -('db01fdc7-cabc-4a2e-a4a0-d2f2f1f69df2', '## Overview -Make your bike rides more enjoyable and practical with the VeloRide VersaRack Cargo System. This innovative accessory offers a secure and hassle-free way to transport your belongings on your bike. With its user-friendly design and durable construction, you can trust the VersaRack to safely carry your cargo wherever you go. - -Product Details -- Compatible with VeloRide racks, ensuring a seamless and secure mounting experience -- Sleek and stylish design with reflective elements for enhanced visibility and safety -- Multiple storage pockets for efficient organization, including a spacious main compartment, side pockets, and an internal mesh pocket -- Dedicated zippered pocket with a soft lining for secure and easy access to your phone -- Integrated rain cover stored in a rear pocket to protect your belongings from the elements -- Convenient light loop for easy rear light attachment -- Adjustable carrying strap for effortless off-bike use - -Features -Functionality, Performance, and Style -The VeloRide VersaRack Cargo System combines functionality, performance, and style. Its high-quality materials and thoughtful finishing touches ensure both practicality and aesthetics. - -VeloRide Mounting System -The innovative VeloRide mounting system allows for easy and secure installation of the VersaRack. Simply slide the cargo system onto the VeloRide rack and hear the click to confirm the installation. Removing the cargo system is just as effortless with the use of the provided key. - -Perfect Fit -The VeloRide VersaRack Cargo System is designed to seamlessly integrate with VeloRide racks. The bags and racks are developed as a complete system to ensure a secure fit and protect your valuable cargo. - -Integrated Light Mounting -For enhanced visibility during all hours of the day, the VersaRack Cargo System features a dedicated spot for mounting your bike light on both the racks and trunk bags. - -Specs -- Cargo Capacity: 15L -- Bag Type: Trunk bags -- Dimensions: 40cm (L) x 18cm (W) x 20cm (H) -- Attachment: VeloRide Mounting System -- Material: Durable Woven Fabric -- Weight: 900g', '/static/images/new_data/accessories.json_5.jpg', '/static/images/new_data/accessories.json_5.jpg', '/static/images/new_data/accessories.json_5.jpg', 'VeloRide VersaRack Cargo System', 30.99, 'A versatile cargo system designed to provide convenient on-bike storage for a variety of items, compatible with VeloRide racks.', 'trunkbag'), -('275ee02f-b10a-4ebf-be2f-539f5e6f1898', '## Overview -Make tubeless setup a breeze with the Zephyr AirCharge Floor Pump. This innovative bike accessory combines the functionality of a floor pump and a tubeless setup tool, allowing you to easily inflate tubeless ready (TLR) tires at home or on the go. With its user-friendly design and accurate pressure readings, the Zephyr AirCharge Floor Pump is a must-have for any cyclist. - -## Product Details -- Dual-chamber design with Inflate setting for traditional floor pump use -- Charge setting allows for pressurized chamber inflation of tubeless ready tires -- Backlit digital gauge for easy-to-read pressure measurements up to 160 PSI -- Compatible with both Presta and Schrader valves -- Convenient storage for included inflation accessories - -## Features -### Dual-Chamber Design -The Zephyr AirCharge Floor Pump features a dual-chamber design that allows it to function as both a traditional floor pump and an air compressor. Switch between the Inflate setting for regular pumping or the Charge setting for pressurized chamber inflation of tubeless tires. - -### Tubeless Setup Made Easy -Say goodbye to the hassle of using a bulky air compressor for tubeless tire setup. The Zephyr AirCharge Floor Pump''s Charge setting allows you to store compressed air in the chamber and release it with a simple flip of a lever to seat tubeless tire beads on a rim. - -### Accurate Digital Gauge -No more guessing the pressure of your tires. The Zephyr AirCharge Floor Pump is equipped with a backlit digital gauge that provides easy-to-read and accurate pressure measurements up to the maximum of 160 PSI. Always ride with confidence knowing your tires are properly inflated. - -### Versatile Valve Compatibility -Whether you ride with Presta or Schrader valves, the Zephyr AirCharge Floor Pump has you covered. Its dual valve compatibility ensures that you can easily inflate your tires regardless of the valve type. - -### Convenient Storage -Never lose track of your inflation accessories again. The Zephyr AirCharge Floor Pump features integrated storage in the handle, keeping all your attachments organized and easily accessible. From basketballs to pool toys, you''ll always have the right attachment on hand. - -## Specifications -- Pump Type: Floor -- Valve Compatibility: Presta/Schrader -- Gauge Type: Digital -- Maximum Pressure: 160 PSI -- Frame Mountable: No', '/static/images/new_data/accessories.json_6.jpg', '/static/images/new_data/accessories.json_6.jpg', '/static/images/new_data/accessories.json_6.jpg', 'Zephyr AirCharge Floor Pump', 35.99, '', 'pump'), -('f4e5ec06-4951-497b-8bbb-d6f6fedb1dce', '## Overview -The SwiftAir TQX Tubeless Charge Pump is a versatile bike accessory that combines the functionality of a floor pump with a tubeless setup tool. With its innovative design, it simplifies the process of setting up tubeless tires both at home and on-the-go. Featuring a user-friendly interface and durable construction, the SwiftAir TQX is a reliable companion for any cyclist. - -## Product Details -- Dual-function design: The SwiftAir TQX can be used as a standard floor pump for regular inflation or switched to the "Charge" mode to pressurize a chamber for effortless tubeless tire setup. -- Compact and portable: Designed for easy transport, this pump is lightweight and compact, making it convenient to bring along on rides. -- High-precision digital gauge: Equipped with a digital gauge, the SwiftAir TQX provides accurate pressure readings up to a maximum of 160 PSI, ensuring optimal tire inflation. -- Compatible with multiple valves: The pump is compatible with both Presta and Schrader valves, allowing for versatile use on a variety of bikes. -- Convenient storage: The SwiftAir TQX features built-in storage for inflation accessories, ensuring that everything you need is always within reach. - -## Features -### Dual-Function Design -The SwiftAir TQX serves as both a floor pump and a tubeless setup tool, offering versatility and convenience for cyclists. Whether you need to inflate your tires or set up tubeless, this pump has got you covered. - -### Effortless Tubeless Setup -With the "Charge" mode, the SwiftAir TQX pressurizes a chamber to help seat tubeless tires without the need for a bulky air compressor. This innovative feature saves time and effort, allowing for hassle-free tubeless setup. - -### Accurate Digital Gauge -The high-precision digital gauge on the SwiftAir TQX ensures accurate pressure readings. With its backlit display, the gauge is easy to read even in low light conditions. The maximum pressure of 160 PSI provides compatibility with a wide range of tire setups. - -### Versatile Valve Compatibility -The SwiftAir TQX is compatible with both Presta and Schrader valves, catering to different bike models and allowing for easy switching between valve types. - -### Integrated Storage -The pump is designed with integrated storage, ensuring that all necessary inflation accessories are conveniently stored within the handle. No more searching for misplaced attachments, as everything is neatly organized and readily accessible. - -## Specifications -- Pump Type: Floor -- Valve Compatibility: Presta and Schrader -- Gauge Type: Digital -- Maximum Pressure: 160 PSI -- Frame Mounted: No', '/static/images/new_data/accessories.json_7.jpg', '/static/images/new_data/accessories.json_7.jpg', '/static/images/new_data/accessories.json_7.jpg', 'SwiftAir TQX Tubeless Charge Pump', 57.99, '', 'pump'), -('d9193c79-d9d9-4789-8fb8-d9a3eafa2f86', '## Overview -The BikeMax InflaCharge is a versatile floor pump designed to make tubeless tire setup and daily inflation tasks easier. This pump combines the functionality of a standard floor pump and a tubeless setup tool, eliminating the need for a separate air compressor. With its convenient features and high-pressure capabilities, the InflaCharge is the ultimate accessory for cyclists. - -## Product Details -- Dual-chamber design with an "Inflate" setting for efficient use as a traditional floor pump. -- "Charge" setting allows for pressurizing a chamber to easily seat tubeless tires without an air compressor. -- Backlit digital gauge provides accurate pressure readings up to a maximum of 160 PSI. -- Compatible with both Presta and Schrader valves for versatile use with different bike tires. -- Inflation accessories conveniently stored in the handle for easy access and organization. - -## Features - -### All-in-One Pump Solution -The BikeMax InflaCharge eliminates the need for multiple pumps or additional tools. Its dual-chamber design allows it to function as both a standard floor pump and a tubeless setup tool, making it a versatile accessory for all your inflation needs. - -### Tubeless Tire Setup Made Easy -Say goodbye to the hassle of using bulky air compressors for seating tubeless tires. The InflaCharge''s "Charge" setting pressurizes a chamber, which can be quickly released to seat tubeless tire beads on a rim. This innovative feature simplifies the tubeless setup process. - -### Accurate Pressure Readings -The backlit digital gauge provides easy-to-read and precise pressure measurements up to 160 PSI. This ensures that you achieve the optimal tire pressure for a smooth and efficient ride. - -### Convenient Handle Storage -No more searching for misplaced attachments! The InflaCharge''s handle-integrated storage keeps all the inflation accessories secure and easily accessible. Whether you need to inflate basketballs, pool toys, or other items, you''ll always know where to find the necessary attachments. - -### Pump Up with Confidence -When inflating tubeless tires, reaching the recommended pressure is crucial. The InflaCharge''s digital gauge signals you''re ready to go by displaying three dashes on the screen once the chamber reaches the maximum 160 PSI. This feature provides peace of mind and ensures a secure tubeless setup. - -## Specifications -- Pump Type: Floor -- Valve: Presta/Schrader -- Gauge Type: Digital -- Maximum Pressure: 160 PSI -- Frame Mounted: No', '/static/images/new_data/accessories.json_8.jpg', '/static/images/new_data/accessories.json_8.jpg', '/static/images/new_data/accessories.json_8.jpg', 'BikeMax InflaCharge Floor Pump', 38.99, '', 'pump'), -('3c15bebe-c3b4-49e5-8b37-457ebdc50ef2', '## Overview -The GlideGear AirSeal is a revolutionary bike accessory that combines the functionality of a floor pump with a tubeless tire inflator. It makes the process of setting up tubeless tires at home or on the go simple and hassle-free. Equipped with innovative features and a sleek design, the AirSeal is the ultimate companion for every cyclist. - -## Product Details -- Dual-function design: The AirSeal functions as a traditional floor pump for daily use and can be switched to a tubeless tire inflator mode. -- Effortless tubeless setup: When set to "Inflate", the AirSeal operates as a regular floor pump, allowing you to easily inflate your tires. -- Tubeless tire charging: Switching the AirSeal to "Charge" mode creates a pressurized chamber, enabling the inflator to seat tubeless tires without the need for an air compressor. -- Accurate pressure readings: The AirSeal features a clear, easy-to-read digital gauge that provides accurate pressure readings up to a maximum of 120 PSI. -- Versatile valve compatibility: It is compatible with both Presta and Schrader valves, making it suitable for a wide range of bikes. -- Convenient storage: The AirSeal includes a built-in storage compartment in the handle, ensuring that all inflation accessories are easily accessible and neatly organized. - -## Features -- Dual-chamber design: The AirSeal''s innovative dual-chamber design allows it to function as both a floor pump and a tubeless tire inflator, providing versatility and convenience. -- Tubeless tire seating: With the "Charge" mode, the AirSeal pressurizes the chamber, enabling efficient and effective seating of tubeless tires without the need for additional equipment. -- Easy-to-read digital gauge: The AirSeal''s digital gauge provides clear and accurate pressure readings, ensuring precise tire inflation. -- Valve compatibility: The AirSeal is compatible with both Presta and Schrader valves, making it suitable for all types of bikes. -- Integrated storage: The handle of the AirSeal features a built-in storage compartment, allowing for convenient and organized storage of inflation accessories. -- Sleek and ergonomic design: The AirSeal boasts a sleek and ergonomic design, ensuring a comfortable and effortless pumping experience. - -## Specifications -- Pump type: Floor -- Valve compatibility: Presta/Schrader -- Gauge type: Digital -- Max pressure: 120 PSI -- Frame mounted: No', '/static/images/new_data/accessories.json_9.jpg', '/static/images/new_data/accessories.json_9.jpg', '/static/images/new_data/accessories.json_9.jpg', 'GlideGear AirSeal Tubeless Inflator', 99.99, '', 'pump'), -('1d1b3270-a735-4607-8c92-2765e4eaa7c6', '## Overview -The CycleCharge Pro is a versatile bike accessory that combines the functionality of a floor pump and a tubeless tire inflator in one compact design. With its innovative features, it simplifies the process of setting up tubeless tires and provides a convenient solution for daily tire inflation. - -## Product Details -- Dual-functionality: The CycleCharge Pro can be used as a traditional floor pump for regular tire inflation and as a tubeless tire inflator for hassle-free setup. -- Tubeless ready: The pump features a specialized mode called "Tubeless Charge" which pressurizes a chamber to quickly seat tubeless tires without the need for an air compressor. -- Digital pressure gauge: A clear and easy-to-read digital gauge displays accurate pressure readings up to a maximum of 150 PSI, ensuring precise inflation for your bike tires. -- Compatible with Presta and Schrader valves: The CycleCharge Pro supports both valve types, allowing for seamless use with various bike models. -- Convenient storage: The pump is designed with integrated storage compartments in the handle, providing a convenient space to store small attachments like needles and adaptors for inflating sports balls and other items. -- Sturdy construction: Built with durable materials, the CycleCharge Pro is designed to withstand regular use and provide long-lasting performance. - -## Features -1. Dual-functionality: Combines the functionality of a floor pump and a tubeless tire inflator for versatile use. -2. Tubeless Charge mode: Allows for quick and efficient tubeless tire setup without the need for an air compressor. -3. Digital pressure gauge: Provides accurate pressure readings up to a maximum of 150 PSI. -4. Presta and Schrader valve compatibility: Ensures compatibility with a wide range of bike models. -5. Integrated storage compartments: Conveniently stores small attachments for inflating various items. -6. Sturdy construction: Made with durable materials for long-lasting performance. - -## Specifications -- Pump type: Floor -- Valve compatibility: Presta/Schrader -- Gauge type: Digital -- Max pressure: 150 PSI -- Frame mounted: No', '/static/images/new_data/accessories.json_10.jpg', '/static/images/new_data/accessories.json_10.jpg', '/static/images/new_data/accessories.json_10.jpg', 'CycleCharge Pro Tubeless Tire Inflator', 129.99, '', 'pump'), -('d946a42f-f34e-4132-8d5e-3a8c8578d183', '## Overview -Light up your ride with the Velobright Commuter Pro X1 BeamLight Set. This high-performance light set combines the power of a Daytime Running Light with a focused front beam that illuminates the path ahead without blinding oncoming riders. With advanced features like a visible fuel gauge, wireless connectivity, and a chargeback function, this light set is designed to enhance your visibility and convenience on every ride. Complete with the Flare RT top light package, the Velobright Commuter Pro X1 BeamLight Set ensures that you''ll be seen from any angle. - -## Product Details -- Daytime Running Light visibility combined with a bright Commuter Pro X1 front light -- Focused front beam, designed to keep light on the ground ahead and prevent blinding oncoming riders -- Flare RT provides ultimate visibility for any road, city, or path -- Specifically designed focus, flash, and range patterns for daytime visibility up to 2km -- Commuter Pro X1 modes: high 1000LM — 1.5hrs, low 500LM — 3hrs, day flash 300 LM — 12hrs -- Flare RT Flash modes: 90LM — 6hrs, 45LM — 12hrs, 5LM — 15hrs; Steady modes: 25LM — 4.5hrs, 5LM — 13.5hrs -- Blendr-compatible for integrated mounting on compatible Blendr stems, helmets, and helmet mounts -- USB-rechargeable with included USB-C and micro USB cable - -## Features -1. High Beam: Illuminate the entire path with a bright 1000 lumen high beam setting, perfect for mountain biking. -2. Wireless Connection: Wirelessly pair with Flare RT for single-button power-up on both front and rear lights. -3. Fuel Gauge: Dual-fuel gauge clearly displays the available battery life of the lights. -4. Chargeback with USB-C: USB-C charging port supports chargeback, allowing you to recharge your phone or cycling computer on the go. -5. Weather-Ready: Durable design ensures water resistance for worry-free riding in any weather. -6. Kindbeam: Helps direct light towards the road while avoiding blinding oncoming riders. -7. Flash, Focus, Range: Designed with specific focus, flash, and range patterns to maximize visibility during the day. -8. Blendr Compatibility: Offers seamless integration with compatible Blendr stems, ensuring a clean and secure mount. -9. Compatibility: Check our compatibility chart to ensure proper compatibility with your bike and accessories. - -## Specifications -- Battery: Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh -- Rechargeable: Yes -- Charge Time: 4 hours for full charge, 2 hours for rapid charge -- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm) -- Waterproof Rating: IPX4 -- Wireless Compatibility: ANT+ / Bluetooth -- Weight: 257g', '/static/images/new_data/accessories.json_11.jpg', '/static/images/new_data/accessories.json_11.jpg', '/static/images/new_data/accessories.json_11.jpg', 'Velobright Commuter Pro X1 BeamLight Set', 189.99, '', 'bikelight'), -('02ab476c-aa25-430e-ad8a-aa7f67189110', '## Overview -Illuminate your ride with the Urban Commuter BeamPro RT FlareX Bike Light Set. This high-quality light set combines a powerful front light with an ultra-bright rear light to provide enhanced visibility and safety during your urban commutes. With advanced features such as daytime running lights, intelligent beam projection, and wireless connectivity, this light set ensures that you can see and be seen on the road. - -## Product Details -- High-quality front and rear light set designed specifically for urban commuters. -- Front light equipped with a powerful BeamPro RT beam projection technology for optimal visibility. -- Rear light features the FlareX ultra-bright LED for maximum visibility from the rear. -- Daytime running light mode with specific flash patterns designed for increased visibility during the day. -- Multiple brightness settings for both front and rear lights to suit different riding conditions. -- Wireless connectivity allows for easy pairing of front and rear lights for synchronized operation. -- Built-in rechargeable batteries with USB-C charging capability for convenient charging. -- Compact and lightweight design for easy mounting and transport. -- Weather-resistant construction to withstand various weather conditions. -- Compatible with a range of bike mounts and accessories for versatile mounting options. -- Battery life indicator for convenient monitoring of remaining battery power. - -## Features -- BeamPro RT Technology: Intelligent beam projection technology ensures optimal visibility while preventing blinding oncoming riders. -- Daytime Running Light: Specifically designed flash patterns for enhanced visibility during the day, up to a distance of 2km. -- Wireless Connectivity: Easily pair and control both front and rear lights with a single button press for synchronized operation. -- USB-C Rechargeable: Built-in rechargeable batteries with USB-C charging port for fast and convenient charging. -- Weather-Resistant: IPX4 waterproof rating to withstand rain and other adverse weather conditions. -- Compact and Lightweight: Compact design and lightweight construction for easy installation and transport. -- Battery Life Indicator: Clear fuel gauge display to monitor remaining battery power. -- Mounting Compatibility: Compatible with a range of bike mounts and accessories for versatile mounting options. - -## Specifications -- Battery Type: Lithium-Ion -- Battery Capacity: 4800mAh -- Battery Voltage: 3.6Vdc -- Rechargeable: Yes -- Charge Time: 4 hours (front light), 2 hours (rear light) -- Dimensions (front light): 117.4mm (L) x 31.2mm (W) x 40.3mm (H) -- Dimensions (rear light): [specify dimensions] -- Waterproof Rating: IPX4 -- Wireless Compatibility: ANT+, Bluetooth -- Weight: 257g (combined weight of front and rear lights)', '/static/images/new_data/accessories.json_12.jpg', '/static/images/new_data/accessories.json_12.jpg', '/static/images/new_data/accessories.json_12.jpg', 'Urban Commuter BeamPro RT FlareX Bike Light Set', 159.99, '', 'bikelight'), -('11800695-e1e3-4098-9bc3-4df871c319ae', '## Overview -The Commute Pro Plus Light System is a high-quality bike accessory designed to enhance visibility and safety during your rides. This set combines the power of the Commute Pro Plus front light with the functionality of the Rear Flare RT light. With features like daytime running lights, wireless connectivity, and chargeback capability, this light system provides an optimal lighting solution for both day and night rides. - -## Product Details -- Commute Pro Plus front light with focused beam and Kindbeam technology to direct light on the ground without blinding oncoming riders -- Rear Flare RT light for enhanced visibility in any riding conditions -- Daytime visibility with specific flash patterns designed to be seen up to 2km away -- Commute Pro Plus modes: high beam 1000LM - 1.5hrs, low beam 500LM - 3hrs, day flash 300LM - 12hrs -- Rear Flare RT flash modes: 90LM - 6hrs, 45LM - 12hrs, 5LM - 15hrs, steady modes: 25LM - 4.5hrs, 5LM - 13.5hrs -- Blendr-compatible for easy and integrated mounting on compatible Blendr stems, helmets, and helmet mounts -- USB-rechargeable with included USB-C and micro USB cable - -## Features -1. High Beam: Illuminate your path with a powerful 1000 lumen high beam setting, perfect for off-road cycling. -2. Wireless Connectivity: Wirelessly connect the front and rear lights for easy power-up with a single button. -3. Fuel Gauge: Dual fuel gauge displays the remaining battery life of both lights, keeping you informed. -4. Chargeback with USB-C: The USB-C charging port allows you to charge your phone or cycling computer on the go. -5. Weather-Ready: Designed to withstand various weather conditions, ensuring durability and reliability. -6. Kindbeam: Innovative Kindbeam technology keeps the light focused on the ground, preventing it from blinding other riders. -7. Flash, Focus, Range: The light system features specific flash, focus, and range settings to maximize visibility during the day. -8. Seamless Mounting: The Blendr mount offers a clean and seamless mounting option for Blendr compatible stems, providing proper light orientation when using a cycling computer above. -9. Compatibility: Check our compatibility chart to ensure proper compatibility with your bike and accessories. - -## Specifications -- Battery: Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh -- Rechargeable: Yes -- Charge Time: 4 hours for front light, 2 hours for rear light -- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm) -- Waterproof Rating: IPX4 -- Wireless Compatibility: ANT+ / Bluetooth -- Weight: 257g', '/static/images/new_data/accessories.json_13.jpg', '/static/images/new_data/accessories.json_13.jpg', '/static/images/new_data/accessories.json_13.jpg', 'Commute Pro Plus Light System', 172.99, '', 'bikelight'), -('bf3d2fa0-7c60-4123-8200-00fd6cb25ef4', '## Overview -Stay visible and light up your path with the CommutePro RT BeamPro Bike Light Set. This set includes the CommutePro RT front light and the BeamPro rear light, providing you with the perfect combination of visibility and illumination. The CommutePro RT features a unique beam technology that keeps the light on the ground ahead of you without blinding oncoming riders, ensuring a safe and comfortable ride. With multiple modes, a rechargeable battery, and wireless connectivity, this light set is perfect for all your commuting needs. - -## Product Details -- CommutePro RT front light with BeamPro rear light for maximum visibility and illumination -- Unique beam technology keeps the light on the ground ahead of you, avoiding blinding oncoming riders -- Multiple modes for different lighting needs: high beam, low beam, and flash -- Rechargeable battery for convenience and sustainability -- Wireless connectivity allows for easy pairing and control of both lights -- Lightweight and compact design for easy installation and portability -- Waterproof rating of IPX4 ensures durability and functionality in all weather conditions -- Compatible with ANT+ and Bluetooth wireless protocols for seamless integration with other devices -- Weight: 257g - -## Features -1. High Beam: Illuminate the path ahead with a bright and powerful high beam setting, perfect for night rides or off-road adventures. -2. Wireless Connectivity: Pair the front and rear lights wirelessly for synchronized control and easy power-up. -3. Rechargeable Battery: The built-in Li-Ion battery can be easily recharged using the included USB cable, eliminating the need for disposable batteries. -4. Chargeback Function: Use the light as a battery bank to charge your gadgets on the go, ensuring you never run out of power. -5. Weather-Ready: Designed to withstand the elements, the CommutePro RT BeamPro Bike Light Set is waterproof and weather-resistant. -6. Beam Technology: The unique beam technology of the CommutePro RT ensures that the light stays on the ground ahead of you, providing optimal visibility without disturbing oncoming riders. -7. Multiple Lighting Modes: Choose from high beam, low beam, and flash modes to suit different riding conditions and preferences. -8. Lightweight and Compact: The CommutePro RT BeamPro Bike Light Set is designed to be lightweight and compact, making it easy to install and carry. -9. Easy Mounting: The set is compatible with various mounting options, including handlebars, helmets, and helmet mounts, for a seamless and secure attachment to your bike. - -## Specifications -- Battery: Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh -- Rechargeable: Yes -- Charge Time: 4 hours / 2 hours -- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm) -- Waterproof Rating: IPX4 -- Wireless Compatibility: ANT+ / Bluetooth -- Weight: 257g', '/static/images/new_data/accessories.json_14.jpg', '/static/images/new_data/accessories.json_14.jpg', '/static/images/new_data/accessories.json_14.jpg', 'CommutePro RT BeamPro Bike Light Set', 94.99, '', 'bikelight'), -('e3b91117-1e2c-4222-99a4-c3d5cb9217c4', '## Overview -The Commuter Pro BeamMax RT Bike Light Set is the perfect accessory for cyclists who prioritize safety and visibility. This set combines the BeamMax RT front light and the Flare RT rear light, ensuring that you can see the road ahead and be seen by others, day or night. With advanced features like a unique beam pattern, wireless connectivity, USB-rechargeability, and weather-resistant design, this bike light set is designed to enhance your cycling experience and keep you safe on the road. - -## Product Details -- BeamMax RT front light provides a powerful beam that illuminates the road ahead while avoiding blinding oncoming riders. -- Flare RT rear light offers ultimate visibility for any type of road or path. -- Specifically designed beam pattern with focus, flash, and range settings for maximum visibility during the day. -- BeamMax RT modes: high beam 1000 lumens - 1.5 hours, low beam 500 lumens - 3 hours, day flash 300 lumens - 12 hours. -- Flare RT flash modes: 90 lumens - 6 hours, 45 lumens - 12 hours, 5 lumens - 15 hours. Steady modes: 25 lumens - 4.5 hours, 5 lumens - 13.5 hours. -- Compatible with Blendr stems, helmets, and helmet mounts for integrated and clean mounting options. -- USB-rechargeable with included USB-C and micro USB cable. - -## Features -1. High Beam: Illuminate the road with a powerful 1000 lumen high beam setting, perfect for off-road or low-light conditions. -2. Wireless Connectivity: Wirelessly pair the front and rear lights for convenient single-button power control. -3. Fuel Gauge: Dual-fuel gauge displays the battery life of both lights, ensuring you always know when it''s time to recharge. -4. USB-C Chargeback: The USB-C charging port allows you to use the front light as a battery bank to recharge your gadgets on the go. -5. Weather-Ready: Designed with a durable and weather-resistant construction, this light set can withstand various weather conditions. -6. BeamMax RT with Kindbeam: Kindbeam technology directs the light towards the ground, ensuring optimal visibility without blinding oncoming riders. -7. Flash, Focus, Range: The unique beam pattern of the front light is specifically designed for daytime visibility, making you visible from a meaningful distance. -8. Blendr-Compatible: Offers seamless and clean mounting options on Blendr-compatible stems, ensuring proper orientation of the light when using a cycling computer above. - -## Specifications -- Battery: Rechargeable Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh -- Rechargeable: Yes -- Charge Time: 4 hours for front light, 2 hours for rear light -- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm) -- Waterproof Rating: IPX4 -- Wireless Compatibility: ANT+ / Bluetooth -- Weight: 257g', '/static/images/new_data/accessories.json_15.jpg', '/static/images/new_data/accessories.json_15.jpg', '/static/images/new_data/accessories.json_15.jpg', 'Commuter Pro BeamMax RT Bike Light Set', 105.99, '', 'bikelight'), -('ca3abcb2-b978-426b-9251-64d44176192d', '## Overview -Experience the perfect balance of speed, comfort, and safety with the VelocityAir MIPS Road Bike Helmet. Designed to elevate your road racing experience, this helmet offers exceptional performance and protection. With its advanced features and lightweight design, the VelocityAir MIPS is engineered for podium-worthy performance. - -## Product Details -- Lightweight construction reduces weight and enhances comfort for an effortless ride. -- Optimized ventilation system improves airflow, keeping you cool and maximizing your speed. -- MIPS Air safety system integrated for enhanced protection against rotational forces. -- Customizable fit with a single-lace BOA® fit system, providing a secure 360° fit. -- Convenient rubberized storage port for sunglasses when not in use. -- Beveled front edge expands your field of view for optimal visibility while riding in various positions. -- Crash Replacement Guarantee offers a free helmet replacement within the first year in case of a crash. -- 30-Day Unconditional Guarantee allows for hassle-free returns if you''re unsatisfied for any reason. - -## Features -### Ultralight Construction -- Utilizes cutting-edge materials and components to minimize weight for a faster and more comfortable ride. -- Incorporates OCLV Carbon inlay to reduce grams and enhance overall performance. - -### Advanced Ventilation -- Multiple rounds of computational fluid dynamics modeling and wind tunnel testing ensure maximum airflow. -- Designed to keep you 38% cooler* and save you 18 seconds at 45 km/h compared to previous models. - -### MIPS Air Safety System -- Provides seamless integration of MIPS technology for enhanced protection against rotational forces. -- Delivers improved sweat management for a comfortable and secure fit. -- Offers lightweight construction without compromising safety. - -### BOA® Fit System -- Features a single-lace design and 360° adjustability for a customized fit. -- Two lace height positions and three yoke positions enable complete customization for the perfect fit. - -### Secure Storage -- Equipped with rubberized side vents for easy and secure storage of sunglasses while cycling. - -### Expanded Field of View -- Beveled edge design above the brow increases the field of view for better visibility. -- Allows you to easily see the road ahead, even when in a tucked position. - -### Virginia Tech 5-STAR Rating -- Independently tested and awarded a 5-STAR safety rating by Virginia Tech''s reputable third-party testing facility. -- Ensures the highest level of protection for cyclists. - -## Specifications -| Size | Circumference | Fit System | Pad Material | Buckle Type | Includes | Weight | -|----------|:----------------------:|:----------:|:------------------:|:------------------:|:--------------------------:|:------:| -| S | 51-57cm (20"-22") | BOA® | Moisture Wicking | Lightweight Buckle | Crash Replacement Guarantee, travel bag | 240g | -| M | 54-60cm (21"-24") | BOA® | Moisture Wicking | Lightweight Buckle | Crash Replacement Guarantee, travel bag | 260g | -| L | 58-63cm (23"-25") | BOA® | Moisture Wicking | Lightweight Buckle | Crash Replacement Guarantee, travel bag | 285g | - -## Sizing -| Size | Circumference | -|:----:|:------------------:| -| S | 51 - 57 cm (20" - 22") | -| M | 54 - 60 cm (21" - 24") | -| L | 58 - 63 cm (23" - 25") |', '/static/images/new_data/accessories.json_16.jpg', '/static/images/new_data/accessories.json_16.jpg', '/static/images/new_data/accessories.json_16.jpg', 'VelocityAir MIPS Road Bike Helmet', 84.99, '', 'helmet'), -('a8bb3fe8-b3d4-4f4a-90a7-e97130a25ce0', '## Overview -Lightweight, sleek, and aerodynamic, the Velocity Pro-X Road Bike Helmet is designed to optimize performance and protection. With its advanced ventilation system and state-of-the-art safety features, this helmet ensures a comfortable and secure ride for road cycling enthusiasts. - -Product Details: -- Lightweight construction for improved speed and comfort -- Enhanced ventilation system for superior airflow and cooling -- Advanced safety features for maximum protection -- Adjustable fit system for a customizable and secure fit -- Convenient storage options for sunglasses -- Wide field of view for improved visibility -- Crash Replacement Guarantee for added peace of mind -- 30-Day Satisfaction Guarantee for customer satisfaction - -## Features -1. Lightweight Design: - - Incorporates high-quality materials to reduce weight and enhance speed. - - Streamlined profile and optimized components ensure a lightweight feel without compromising safety. - -2. Enhanced Ventilation System: - - Strategically placed vents and channels to maximize airflow and keep riders cool during intense rides. - - Improved sweat management for added comfort and performance. - -3. Advanced Safety Features: - - Utilizes a cutting-edge impact protection system to mitigate rotational forces and enhance overall safety. - - Provides reliable head protection for road cycling accidents. - -4. Adjustable Fit System: - - Equipped with a user-friendly fit system that allows riders to customize the helmet''s fit. - - Provides a secure and comfortable fit, ensuring optimal protection. - -5. Convenient Storage Options: - - Features a dedicated docking port for securely storing sunglasses during rides. - - Easy and quick access to sunglasses without compromising safety or convenience. - -6. Wide Field of View: - - Unique beveled design above the brow enhances the rider''s field of view. - - Ensures excellent visibility, especially when in riding positions such as hoods or drops. - -7. Crash Replacement Guarantee: - - Provides a free helmet replacement within the first year of ownership if involved in a crash. - - Demonstrates our commitment to customer safety and satisfaction. - -## Specifications -| Size | S | M | L | -|---------------|------------------------|------------------------|------------------------| -| Circumference | 52-56cm | 55-59cm | 58-62cm | -| Fit system | Adjustable BOA system | Adjustable BOA system | Adjustable BOA system | -| Pad material | Moisture-wicking pads | Moisture-wicking pads | Moisture-wicking pads | -| Buckle type | Lightweight buckle | Lightweight buckle | Lightweight buckle | -| Includes | Travel bag | Travel bag | Travel bag | -| Weight | 250g | 270g | 290g | - -## Sizing -| Size | Circumference | -|:----:|:----------------:| -| S | 52 - 56 cm 20"-22" | -| M | 55 - 59 cm 21.5"-23" | -| L | 58 - 62 cm 23"-24.5" |', '/static/images/new_data/accessories.json_17.jpg', '/static/images/new_data/accessories.json_17.jpg', '/static/images/new_data/accessories.json_17.jpg', 'Velocity Pro-X Road Bike Helmet', 140.99, 'An innovative road bike helmet that combines lightweight design, enhanced ventilation, and advanced safety features for a fast and secure riding experience.', 'helmet'), -('dd9ee2b8-4c21-4458-99ba-30b07abe664b', '## Overview -Speed and style meet in the Swift AeroFlow Bike Helmet. Designed for road racing and optimized for aerodynamics, this helmet combines lightweight construction, advanced ventilation, and a sleek design to enhance your performance on the road. The Swift AeroFlow also prioritizes safety with an integrated rotational force management system, ensuring maximum protection during any ride. - -Product details: -- Lightweight construction for optimal speed and comfort -- Enhanced ventilation system for improved airflow and cooling -- Integrated rotational force management system for enhanced safety -- Adjustable fit system for a personalized, secure fit -- Convenient sunglasses storage port for easy access on the go -- Wide field of view design for better visibility -- Crash Replacement Guarantee for added peace of mind -- 30-Day Money-Back Guarantee for customer satisfaction - -## Features -1. Aerodynamic Design: The Swift AeroFlow features an aerodynamic shape and sleek profile to reduce drag and improve speed. Its advanced design has been tested in wind tunnels for optimal performance. - -2. Ventilation System: Designed with multiple vents and specialized channeling, the helmet provides efficient airflow to keep you cool during intense rides. The improved ventilation system allows air to flow through the helmet, preventing overheating. - -3. Rotational Force Management System: The integrated rotational force management system provides additional protection by minimizing the rotational forces that can occur during an impact. This technology helps reduce the risk of head injuries. - -4. Adjustable Fit System: The Swift AeroFlow offers an adjustable fit system to ensure a comfortable and secure fit. The system utilizes a dial or similar mechanism that allows for easy adjustments to customize the helmet''s fit according to your head shape and size. - -5. Sunglasses Storage Port: The helmet includes a convenient sunglasses storage port, equipped with a rubberized grip, to securely hold your sunglasses when not in use. This feature allows you to easily access and store your sunglasses during your ride. - -6. Wide Field of View: The Swift AeroFlow is designed with a beveled front edge that improves your field of view, providing better visibility while riding in various positions. This feature enhances safety by allowing you to see the road ahead without obstruction. - -7. Crash Replacement Guarantee: We stand behind the durability and performance of the Swift AeroFlow. In the unfortunate event of a crash within the first year of ownership, we offer a Crash Replacement Guarantee, providing a free helmet replacement. - -8. 30-Day Money-Back Guarantee: Customer satisfaction is our top priority. If you are unsatisfied with your Swift AeroFlow for any reason, you can return it within 30 days of purchase for a full refund. - -## Specs -| Size | Small | Medium | Large | -|---------------|-------------|------------|-------------| -| Circumference | 51-56 cm | 55-60 cm | 59-64 cm | -| Fit system | Adjustable | Adjustable | Adjustable | -| Pad material | Moisture-wicking pads | Moisture-wicking pads | Moisture-wicking pads | -| Buckle type | Lightweight buckle | Lightweight buckle | Lightweight buckle | -| Includes | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag | -| Weight | 250g | 270g | 290g | - -## Sizing -| Size | Circumference | -|:----:|:--------------------:| -| S | 51 - 56 cm | -| M | 55 - 60 cm | -| L | 59 - 64 cm |', '/static/images/new_data/accessories.json_18.jpg', '/static/images/new_data/accessories.json_18.jpg', '/static/images/new_data/accessories.json_18.jpg', 'Swift AeroFlow Bike Helmet', 136.99, '', 'helmet'), -('9423d39e-9593-4cc6-9764-71d7d88f659a', '## Overview -Stay ahead of the pack with the Swift AeroGuard Road Bike Helmet, an innovative accessory designed to provide ultimate speed and protection. This lightweight and aerodynamic helmet is equipped with advanced features to keep you cool, comfortable, and safe on your road racing adventures. - -The AeroGuard helmet incorporates the latest technology to enhance your performance, including a fully-integrated Rotational Impact Protection System (RIPS) for additional safety. With its sleek design and customizable fit, the Swift AeroGuard is the perfect companion for riders looking to dominate the podium. - -Product Details: -- Designed for road racing, providing optimal performance and protection -- Lightweight construction for enhanced speed and comfort -- Advanced ventilation system for improved airflow and temperature regulation -- Integrated Rotational Impact Protection System (RIPS) for enhanced safety -- Adjustable fit system for a personalized, secure fit -- Secure storage for sunglasses or accessories -- Wide field of view for increased visibility and situational awareness -- Crash Replacement Guarantee for peace of mind -- 30-Day Unconditional Guarantee for customer satisfaction - -## Features - -1. Featherlight Design: - - Utilizes cutting-edge materials to reduce weight and maximize speed. - - Strategically placed carbon fiber components for enhanced strength and durability. - -2. Optimal Airflow: - - Innovative ventilation system with optimized channeling for improved airflow and cooling. - - Enhanced heat dissipation technology for a comfortable ride in any conditions. - -3. Rotational Impact Protection System (RIPS): - - Fully-integrated RIPS technology to minimize the effects of rotational forces during impact. - - Provides an additional layer of protection for your head and brain. - -4. Customizable Fit System: - - Advanced fit system allows for easy adjustment and customization. - - Ensures a secure and comfortable fit for riders of all head shapes and sizes. - -5. Secure Storage Solution: - - Integrated storage port for securely stowing sunglasses or small accessories during rides. - - Easy access and secure storage for added convenience. - -6. Wide Field of View: - - Beveled front edge design provides an expanded field of view while riding in various positions. - - Allows for better visibility and awareness of the road ahead. - -7. Independent Safety Rating: - - Swift AeroGuard has undergone rigorous third-party testing and received a top safety rating. - - Ensures optimal protection and peace of mind for riders. - -## Specifications - -| Size | S | M | L | -|---------------|-----------------------------------|-----------------------------------|-----------------------------------| -| Circumference | 52-58cm | 56-61cm | 59-64cm | -| Fit System | Adjustable strap and buckle system | Adjustable strap and buckle system | Adjustable strap and buckle system | -| Pad Material | Moisture-wicking, antimicrobial | Moisture-wicking, antimicrobial | Moisture-wicking, antimicrobial | -| Buckle Type | Lightweight buckle | Lightweight buckle | Lightweight buckle | -| Includes | Crash Replacement Guarantee | Crash Replacement Guarantee | Crash Replacement Guarantee | -| Weight | 250g | 270g | 295g | - -## Sizing -| Size | Circumference | -|:----:|:----------------:| -| S | 52 - 58 cm | -| M | 56 - 61 cm | -| L | 59 - 64 cm |', '/static/images/new_data/accessories.json_19.jpg', '/static/images/new_data/accessories.json_19.jpg', '/static/images/new_data/accessories.json_19.jpg', 'Swift AeroGuard Road Bike Helmet', 99.99, '', 'helmet'), -('11816aaf-dd94-4fac-843f-f456905f1874', '## Overview -Lightweight, aerodynamic, and stylish, the TurboSpeed AeroLite is a high-performance road bike helmet designed to provide maximum comfort and protection. Built for speed and precision, this helmet is perfect for road racing, time trials, and any cyclist seeking an edge. - -With advanced features and innovative design, the TurboSpeed AeroLite guarantees a fast, cool, and secure ride, ensuring that you stay focused on the road ahead. - -Product details -- Exceptional lightweight construction delivers superior comfort and reduces fatigue -- Aerodynamic design optimized for minimal wind resistance, allowing you to ride faster and go the extra mile -- Integrated Mips safety system provides advanced protection against rotational forces -- Adjustable fit system ensures a personalized, secure fit for every rider -- Convenient storage solution with a built-in sunglass dock -- Enhanced field of view with a beveled front edge -- Crash Replacement Guarantee ensures a free helmet replacement in the event of a crash within the first year -- 30-Day Unconditional Guarantee for customer satisfaction and peace of mind - -## Features -Ultimate lightweight performance - -The TurboSpeed AeroLite is engineered using cutting-edge materials and components to minimize weight, providing exceptional comfort and reducing fatigue during long rides. - -Unmatched aerodynamics - -Extensive wind tunnel testing and computational fluid dynamics modeling have resulted in an aerodynamic design that delivers significant gains in speed and efficiency, making you faster on the road. - -Advanced Mips safety system - -The integrated Mips technology offers added protection by reducing rotational forces on the brain during angled impacts, ensuring maximum safety without compromising comfort. - -Customizable fit system - -Equipped with an adjustable fit system, the TurboSpeed AeroLite allows for easy customization to achieve a secure and comfortable fit. It adapts to your head shape for a personalized riding experience. - -Secure and easy storage - -The helmet features a dedicated rubberized dock to securely stow your sunglasses when not in use, preventing loss or damage during rides. - -Enhanced field of view - -With a beveled edge design above the brow, the TurboSpeed AeroLite optimizes your field of view, enabling clear visibility of the road ahead in all riding positions. - -5-STAR safety rating - -The TurboSpeed AeroLite has undergone rigorous testing at an industry-recognized facility and has received a 5-STAR safety rating, ensuring top-notch protection for cyclists. - -## Specs -| Size | S | M | L | -|----------|--------|--------|--------| -| Head Circumference | 52-56cm | 55-59cm | 58-62cm | -| Fit system | Customizable Fit System | Customizable Fit System | Customizable Fit System | -| Pad material | Moisture-wicking pads | Moisture-wicking pads | Moisture-wicking pads | -| Buckle type | Lightweight buckle | Lightweight buckle | Lightweight buckle | -| Includes | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag | -| Weight (approx.) | 230g | 250g | 270g | - -## Sizing -| Size | Head Circumference | -|:----:|:------------------------:| -| S | 52 - 56 cm (20.5" - 22") | -| M | 55 - 59 cm (21.6" - 23.2") | -| L | 58 - 62 cm (22.8" - 24.4") |', '/static/images/new_data/accessories.json_20.jpg', '/static/images/new_data/accessories.json_20.jpg', '/static/images/new_data/accessories.json_20.jpg', 'TurboSpeed AeroLite Bike Helmet', 108.99, '', 'helmet'), -('2331d117-72ee-4956-9837-f8e2fb5ceb4a', '## Overview -The Frozgo ChillMax is a high-performance insulated water bottle designed to keep your water refreshingly cold for extended periods of time. With its generous 32-ounce capacity, you can carry more chilled water to stay hydrated during long rides. The innovative design features a durable screw cap and a no-drop grip ring for enhanced convenience and ease of use. - -## Product Details -- Premium insulated water bottle that ensures long-lasting coldness and leak-free closure -- Superior insulation technology keeps your water cold twice as long as traditional bottles -- Screw cap design for secure closure and easy access to hydration -- No-drop grip ring provides a firm and confident grip, even when wet -- Designed to fit most standard bottle cages with secure retention -- Optimized for use with side-load cages for effortless bottle entry and removal -- Made from high-quality materials that are BPA-free and phthalate-free for your peace of mind - -## Features -1. Enhanced Cooling Performance: The ChillMax is designed to provide superior insulation, keeping your water colder for longer on those scorching hot rides. -2. Durable Graphics: The bottle graphics are scratch-resistant and fade-resistant, ensuring they look vibrant and fresh mile after mile. -3. Leak-Proof Design: The screw cap with a secure thread-on closure and easy-open mechanism prevents leaks, so you can focus on your ride without worrying about spills. -4. Dishwasher Safe: The bottle and cap are dishwasher safe, making cleaning a breeze. -5. Easy to Hold: The no-drop grip ring offers a textured surface that provides a firm and confident hold, even when your hands are sweaty. -6. Convenient Size: With its generous 32-ounce capacity, the ChillMax allows you to carry more cold water, reducing the need for frequent refills. -7. Versatile Compatibility: The bottle is designed to fit most standard bottle cages, ensuring a secure fit during your rides. - -## Specifications -- Size: 32oz (946ml) -- Insulated: Yes -- Type: Screw Cap -- Tethered cap: No -- Bottle height: 9.5" (24cm) -- Weight: 165g', '/static/images/new_data/accessories.json_21.jpg', '/static/images/new_data/accessories.json_21.jpg', '/static/images/new_data/accessories.json_21.jpg', 'Frozgo ChillMax 32oz Insulated Water Bottle', 27.99, '', 'bottle'), -('db6aa638-9e5e-4f5b-bc71-90f195d610f3', '## Overview -Stay hydrated and refreshed on your long bike rides with the AquaChill 32oz Insulated Water Bottle. This premium water bottle is designed to keep your water cold for extended periods, ensuring you have a constant supply of chilled hydration. With its larger capacity and advanced insulation, the AquaChill is the perfect companion for those hot and demanding rides. The bottle features a secure screw cap, a comfortable grip, and a leak-proof design for hassle-free use. - -## Product Details -- Premium insulated water bottle designed for optimal temperature control and convenience -- Advanced insulation technology keeps water cold for an extended period -- Secure screw cap ensures a leak-free closure -- Ergonomic design with a comfortable grip for easy handling -- Generous 32oz (946ml) capacity for longer rides without refilling -- BPA-free and made with high-quality materials for safety and durability - -## Features -1. Enhanced Temperature Control: - - Advanced insulation technology keeps your water cold for hours, even on the hottest days. -2. Leak-Proof Design: - - The secure screw cap provides a leak-free closure, preventing any spills or leaks during your ride. -3. Comfortable Grip: - - The bottle''s ergonomic design and textured surface ensure a secure and comfortable grip, even when your hands are wet. -4. Large Capacity: - - With its generous 32oz (946ml) capacity, the AquaChill allows you to carry enough water for longer rides without the need for frequent refills. -5. BPA-Free and Durable: - - The bottle is made with high-quality, BPA-free materials that are built to withstand the demands of cycling. - -## Specifications -- Size: 32oz (946ml) -- Insulated: Yes -- Type: Screw Cap -- Tethered Cap: No -- Bottle Height: 9.5" (24cm) -- Weight: 180g', '/static/images/new_data/accessories.json_22.jpg', '/static/images/new_data/accessories.json_22.jpg', '/static/images/new_data/accessories.json_22.jpg', 'AquaChill 32oz Insulated Water Bottle', 24.99, '', 'bottle'), -('cfe33e9e-064c-4498-8479-77819b00bfcc', '## Overview -Stay hydrated on your bike rides with the AeroFlow 32oz Hydration Bottle. This premium insulated water bottle keeps your drinks cold for longer, allowing you to stay refreshed on those hot and demanding rides. With its larger capacity and ergonomic design, this bottle provides easy and efficient hydration, making it the perfect accessory for cyclists of all levels. - -## Product Details -- Premium insulated bottle designed to keep drinks cold for extended periods -- Ergonomic shape and size for easy handling and efficient hydration -- Screw-on cap for secure closure and leak-proof design -- Lightweight construction for easy carrying on rides -- BPA-free and food-grade materials ensure safe and clean hydration -- Designed for easy insertion and removal from bottle cages -- Compatible with most standard bottle cages -- Wide mouth opening for easy filling and cleaning -- Dishwasher safe for convenient and hassle-free maintenance - -## Features -1. Enhanced Insulation: - - The AeroFlow bottle features an advanced insulation layer that keeps your drinks cold for an extended period, ensuring refreshing hydration on long rides. - -2. Large Capacity: - - With a generous 32oz capacity, this bottle allows you to carry ample hydration to keep you fueled throughout your ride. - -3. Leak-Proof Design: - - The screw-on cap ensures a secure and leak-proof closure, giving you peace of mind during your ride. - -4. Ergonomic Shape: - - The bottle''s ergonomic design fits comfortably in your hand and offers a secure grip, making it easy to hydrate on the go. - -5. Lightweight Construction: - - Weighing in at just 141g, the AeroFlow bottle won''t add unnecessary weight to your bike, ensuring a smooth and effortless ride. - -6. BPA-Free and Food-Grade Materials: - - The bottle is made from BPA-free and food-grade materials, guaranteeing safe and clean hydration with no unwanted chemicals. - -7. Easy Bottle Cage Compatibility: - - Designed for easy insertion and removal from most standard bottle cages, the AeroFlow bottle provides a secure fit for worry-free riding. - -8. Wide Mouth Opening: - - The wide mouth opening allows for easy filling with ice cubes and effortless cleaning, ensuring a hygienic hydration experience. - -9. Dishwasher Safe: - - The AeroFlow bottle and cap are dishwasher safe, saving you time and effort on cleaning and maintenance. - -## Specifications -- Size: 32oz (946ml) -- Insulated: Yes -- Type: Screw Cap -- Tethered cap: No -- Bottle height: 10.25" (26cm) -- Weight: 158g', '/static/images/new_data/accessories.json_23.jpg', '/static/images/new_data/accessories.json_23.jpg', '/static/images/new_data/accessories.json_23.jpg', 'AeroFlow 32oz Hydration Bottle', 30.99, '', 'bottle'), -('523deefa-0d6b-4142-a8f3-33e13e3b488d', '## Overview -The Velocity Frost is a high-performance insulated water bottle designed to keep your drinks cold and refreshing on long bike rides. With its generous 32-ounce capacity, you can carry more hydration with you to stay hydrated for longer. The bottle features a secure screw cap and a sleek design that ensures a leak-free closure and a comfortable grip. - -## Product Details -- Premium insulated bottle that keeps your drinks cold for extended periods and provides leak-free closure -- Form-fitting insulation layer keeps your drinks cold twice as long as traditional bottles -- Screw cap with a secure thread-on design ensures no leaks and easy access -- Lightweight and durable construction for long-lasting use -- Tethered cap for convenient handling and no risk of misplacement -- BPA-free and phthalate-free, ensuring safe and healthy hydration -- Dishwasher safe for easy cleaning and maintenance -- Fits securely in most standard bottle cages for hassle-free transport -- Dimensions: 32oz (946ml) capacity, 11.5" (29cm) height, weight: 150g - -## Features -1. Insulation Performance: The Velocity Frost is designed to keep your drinks icy cold for longer, allowing you to enjoy refreshing hydration throughout your ride. -2. Leak-Proof Design: The screw cap ensures a secure and leak-free closure, giving you peace of mind when carrying the bottle in your bag or cage. -3. Ergonomic Grip: The bottle''s sleek design and textured surface provide a comfortable and secure grip, even when your hands are wet. -4. Easy Access: The screw cap allows for easy access to your drinks, so you can stay hydrated on the go without any hassle. -5. Durable Construction: Made from high-quality materials, the Velocity Frost is built to withstand the rigors of cycling and keep up with your active lifestyle. -6. Generous Capacity: With its 32-ounce capacity, the bottle lets you carry more hydration, reducing the need for frequent refills on long rides. -7. Stylish Design: The Velocity Frost features a sleek and modern design with vibrant colors that will make you stand out on the road. -8. Versatile Compatibility: The bottle fits securely in most standard bottle cages, ensuring a stable and reliable attachment to your bike. - -## Conclusion -The Velocity Frost 32oz Insulated Water Bottle combines performance, durability, and style to provide cyclists with a reliable hydration solution. With its exceptional insulation capabilities, leak-proof design, and ergonomic grip, this bottle is a must-have accessory for any avid cyclist. Stay refreshed and hydrated on your rides with the Velocity Frost.', '/static/images/new_data/accessories.json_24.jpg', '/static/images/new_data/accessories.json_24.jpg', '/static/images/new_data/accessories.json_24.jpg', 'Velocity Frost 32oz Insulated Water Bottle', 18.99, '', 'bottle'), -('6156f581-3ab5-4bd4-bfba-e550f8739998', '## Overview -The Xcel Aqua Freeze is a high-performance insulated water bottle designed to provide cyclists with long-lasting cold refreshment on their rides. With its large 32-ounce capacity, this premium bottle ensures you can stay hydrated for longer. The innovative insulation technology keeps your water cold for extended periods, while the easy-squeeze design and leak-free closure make it convenient to use while on the go. - -## Product Details -- Premium insulated bottle that keeps water cold for longer and offers leak-free closure -- Advanced insulation technology ensures your water stays cold for extended periods -- Easy-squeeze design for effortless hydration -- Secure threaded cap with a simple open-and-close mechanism to prevent leaks -- Tacky-textured grip surface provides a secure hold even when wet -- Designed for easy insertion and removal from bottle cages, ensuring a secure fit -- Compatible with a variety of bottle cages -- Made from high-quality materials that are free from harmful chemicals such as BPAs and phthalates -- Dishwasher safe for easy cleaning and maintenance - -## Features -1. Enhanced Insulation: The Aqua Freeze utilizes advanced insulation technology to keep your water cold for an extended period, ensuring you have refreshing hydration throughout your ride. -2. Durable Graphics: The bottle graphics are designed to withstand scratches and fading, ensuring they look great for miles to come. -3. Leak-Proof Cap: The secure threaded cap features a reliable open-and-close mechanism that prevents leaks, giving you peace of mind during your rides. -4. Large Capacity: With a generous 32-ounce capacity, the Aqua Freeze allows you to carry more water, reducing the need for frequent refills. -5. Easy Grip: The bottle''s tacky-textured surface provides a firm and confident grip, even when your hands are wet. -6. Easy Access: The Aqua Freeze is designed for easy insertion and removal from bottle cages, ensuring a secure fit and convenient access to your hydration while cycling. - -## Specifications -- Size: 32oz (946ml) -- Insulated: Yes -- Type: Screw Cap -- Tethered cap: No -- Bottle height: 10.5" (26.7cm) -- Weight: 160g', '/static/images/new_data/accessories.json_25.jpg', '/static/images/new_data/accessories.json_25.jpg', '/static/images/new_data/accessories.json_25.jpg', 'Xcel Aqua Freeze 32oz Water Bottle', 16.99, '', 'bottle'); diff --git a/apps/acme-assist/gradle/wrapper/gradle-wrapper.jar b/apps/acme-assist/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000..2c352119 Binary files /dev/null and b/apps/acme-assist/gradle/wrapper/gradle-wrapper.jar differ diff --git a/apps/acme-assist/gradle/wrapper/gradle-wrapper.properties b/apps/acme-assist/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..09523c0e --- /dev/null +++ b/apps/acme-assist/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/apps/acme-assist/gradlew b/apps/acme-assist/gradlew new file mode 100755 index 00000000..f5feea6d --- /dev/null +++ b/apps/acme-assist/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/apps/acme-assist/gradlew.bat b/apps/acme-assist/gradlew.bat new file mode 100644 index 00000000..9d21a218 --- /dev/null +++ b/apps/acme-assist/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/apps/acme-assist/manifest.yml b/apps/acme-assist/manifest.yml new file mode 100644 index 00000000..91ab9305 --- /dev/null +++ b/apps/acme-assist/manifest.yml @@ -0,0 +1,18 @@ +--- +applications: +- name: acme-assist + memory: 1G + path: build/libs/acme-assist-0.0.1-SNAPSHOT.jar + buildpack: java_buildpack_offline + services: + - acme-assist-postgres + - acme-config + - acme-registry + - acme-genai-chat + - acme-genai-embed + routes: + - route: acme-assist.apps.internal + env: + JBP_CONFIG_SPRING_AUTO_RECONFIGURATION: '{enabled: false}' + SPRING_PROFILES_ACTIVE: http2,cloud + JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 21.+ } }' diff --git a/apps/acme-assist/pom.xml b/apps/acme-assist/pom.xml deleted file mode 100644 index c9381583..00000000 --- a/apps/acme-assist/pom.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starter-parent - 3.2.1 - - com.azure.acme - acme-assist - 0.0.1-SNAPSHOT - assist-service - AI backend for acme fitness store - - 17 - 17 - 17 - UTF-8 - com.example.acme.assist.FitAssistApplication - - - - org.springframework.boot - spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-actuator - - - com.azure - azure-ai-openai - 1.0.0-beta.3 - - - org.springframework.experimental.ai - spring-ai-azure-openai-spring-boot-starter - 0.2.0-SNAPSHOT - - - com.knuddels - jtokkit - 0.6.1 - - - org.apache.logging.log4j - log4j-api - - - org.apache.logging.log4j - log4j-core - - - org.apache.logging.log4j - log4j-slf4j-impl - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - build-info - - build-info - - - - - - - - - spring-milestones - Spring Milestones - https://repo.spring.io/milestone - - false - - - - spring-snapshots - Spring Snapshots - https://repo.spring.io/snapshot - - false - - - - - diff --git a/apps/acme-assist/preprocess.sh b/apps/acme-assist/preprocess.sh index 3c422076..e4be14ed 100755 --- a/apps/acme-assist/preprocess.sh +++ b/apps/acme-assist/preprocess.sh @@ -1,2 +1,2 @@ #!/bin/sh -mvn spring-boot:run -Dstart-class=com.example.acme.assist.tools.BuildVectorStoreApplication -Dspring-boot.run.arguments="--from=$1 --to=$2" +mvn spring-boot:run -Dstart-class=com.example.acme.assist.tools.BuildVectorStoreApplication -Dspring-boot.run.profiles=buildvector -Dspring-boot.run.arguments="--from=$1 --to=$2" diff --git a/apps/acme-assist/settings.gradle b/apps/acme-assist/settings.gradle new file mode 100644 index 00000000..b96a2e46 --- /dev/null +++ b/apps/acme-assist/settings.gradle @@ -0,0 +1,5 @@ +/* + * This file was generated by the Gradle 'init' task. + */ + +rootProject.name = 'acme-assist' diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/ChatService.java b/apps/acme-assist/src/main/java/com/example/acme/assist/ChatService.java index a11023b3..8e111bf9 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/ChatService.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/ChatService.java @@ -1,19 +1,19 @@ package com.example.acme.assist; -import com.azure.ai.openai.models.ChatRole; -import com.example.acme.assist.model.AcmeChatRequest; +import com.example.acme.assist.model.AcmeChatMessage; import com.example.acme.assist.model.Product; import io.micrometer.common.util.StringUtils; import org.apache.logging.log4j.util.Strings; -import org.springframework.ai.client.AiClient; -import org.springframework.ai.client.AiResponse; -import org.springframework.ai.client.Generation; +import org.springframework.ai.chat.client.ChatClient; +import org.springframework.ai.chat.messages.Message; +import org.springframework.ai.chat.messages.MessageType; +import org.springframework.ai.chat.messages.UserMessage; +import org.springframework.ai.chat.model.ChatResponse; +import org.springframework.ai.chat.prompt.Prompt; +import org.springframework.ai.chat.prompt.SystemPromptTemplate; import org.springframework.ai.document.Document; -import org.springframework.ai.prompt.Prompt; -import org.springframework.ai.prompt.SystemPromptTemplate; -import org.springframework.ai.prompt.messages.ChatMessage; -import org.springframework.ai.prompt.messages.Message; -import org.springframework.ai.vectorstore.impl.SimplePersistentVectorStore; +import org.springframework.ai.vectorstore.SearchRequest; +import org.springframework.ai.vectorstore.VectorStore; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.core.io.Resource; @@ -28,26 +28,27 @@ public class ChatService { @Autowired - private SimplePersistentVectorStore store; + private VectorStore store; @Autowired private ProductRepository productRepository; @Autowired - private AiClient aiClient; + private ChatClient chatClient; @Value("classpath:/prompts/chatWithoutProductId.st") private Resource chatWithoutProductIdResource; @Value("classpath:/prompts/chatWithProductId.st") private Resource chatWithProductIdResource; + /** * Chat with the OpenAI API. Use the product details as the context. * * @param chatRequestMessages the chat messages * @return the chat response */ - public List chat(List chatRequestMessages, String productId) { + public List chat(List chatRequestMessages, String productId) { validateMessage(chatRequestMessages); @@ -61,12 +62,15 @@ public List chat(List chatRequestMessages, Stri } } - private List chatWithProductId(Product product, List chatRequestMessages) { + private List chatWithProductId(Product product, List chatRequestMessages) { // We have a specific Product String question = chatRequestMessages.get(chatRequestMessages.size() - 1).getContent(); // step 1. Query for documents that are related to the question from the vector store - List candidateDocuments = this.store.similaritySearch(question, 5, 0.4); + SearchRequest request = SearchRequest.query(question). + withTopK(5). + withSimilarityThreshold(0.4); + List candidateDocuments = this.store.similaritySearch(request); // step 2. Create a SystemMessage that contains the product information in addition to related documents. List messages = new ArrayList<>(); @@ -84,18 +88,22 @@ private List chatWithProductId(Product product, List chatWithoutProductId(List acmeChatRequestMessages) { + protected List chatWithoutProductId(List acmeChatRequestMessages) { String question = acmeChatRequestMessages.get(acmeChatRequestMessages.size() - 1).getContent(); // step 1. Query for documents that are related to the question from the vector store - List relatedDocuments = store.similaritySearch(question, 5, 0.4); + SearchRequest request = SearchRequest.query(question). + withTopK(5). + withSimilarityThreshold(0.4); + List relatedDocuments = store.similaritySearch(request); + // step 2. Create the system message with the related documents; List messages = new ArrayList<>(); SystemPromptTemplate systemPromptTemplate = new SystemPromptTemplate(this.chatWithoutProductIdResource); String relatedDocsAsString = relatedDocuments.stream() - .map(entry -> String.format("Product Name: %s\nText: %s\n", entry.getMetadata().get("name"), entry.getText())) + .map(entry -> String.format("Product Name: %s\nText: %s\n", entry.getMetadata().get("name"), entry.getContent())) .collect(Collectors.joining("\n")); Message systemMessage = systemPromptTemplate.createMessage(Map.of("context", relatedDocsAsString)); messages.add(systemMessage); @@ -104,16 +112,16 @@ protected List chatWithoutProductId(List acmeCh return addUserMessagesAndSendToAI(acmeChatRequestMessages, messages); } - private List addUserMessagesAndSendToAI(List acmeChatRequestMessages, List messages) { + private List addUserMessagesAndSendToAI(List acmeChatRequestMessages, List messages) { // Convert to acme messages types to Spring AI message types - for (AcmeChatRequest.Message acmeChatRequestMessage : acmeChatRequestMessages) { + for (AcmeChatMessage acmeChatRequestMessage : acmeChatRequestMessages) { String role = acmeChatRequestMessage.getRole().toString().toUpperCase(); - messages.add(new ChatMessage(role, acmeChatRequestMessage.getContent())); + messages.add(new UserMessage(acmeChatRequestMessage.getContent())); } // Call to OpenAI chat API Prompt prompt = new Prompt(messages); - AiResponse aiResponse = this.aiClient.generate(prompt); + ChatResponse aiResponse = this.chatClient.prompt(prompt).call().chatResponse(); // Process the result and return to client List response = processResult(aiResponse); @@ -123,38 +131,38 @@ private List addUserMessagesAndSendToAI(List ac public Message getProductDetailMessage(Product product, List documents) { String additionalContext = documents.stream() - .map(entry -> String.format("Product Name: %s\nText: %s\n", entry.getMetadata().get("name"), entry.getText())) + .map(entry -> String.format("Product Name: %s\nText: %s\n", entry.getMetadata().get("name"), entry.getContent())) .collect(Collectors.joining("\n")); - Map map = Map.of( + Map map = Map.of( "name", product.getName(), "tags", String.join(",", product.getTags()), "shortDescription", product.getShortDescription(), "fullDescription", product.getDescription(), "additionalContext", additionalContext); SystemPromptTemplate systemPromptTemplate = new SystemPromptTemplate(this.chatWithProductIdResource); - return systemPromptTemplate.create(map).getMessages().get(0); + return systemPromptTemplate.create(map).getInstructions().get(0); } - private List processResult(AiResponse aiResponse) { - List response = aiResponse.getGenerations().stream() - .map(Generation::getText) + private List processResult(ChatResponse aiResponse) { + List response = aiResponse.getResults().stream() + .map(result -> result.getOutput().getContent()) .filter(text -> !StringUtils.isEmpty(text)) .map(this::filterMessage) .collect(Collectors.toList()); return response; } - private static void validateMessage(List messages) { - if (messages == null || messages.isEmpty()) { + private static void validateMessage(List acmeChatMessages) { + if (acmeChatMessages == null || acmeChatMessages.isEmpty()) { throw new IllegalArgumentException("message shouldn't be empty."); } - if (messages.get(0).getRole() != ChatRole.USER) { + if (acmeChatMessages.get(0).getRole() != MessageType.USER) { throw new IllegalArgumentException("The first message should be in user role."); } - var lastUserMessage = messages.get(messages.size() - 1); - if (lastUserMessage.getRole() != ChatRole.USER) { + var lastUserMessage = acmeChatMessages.get(acmeChatMessages.size() - 1); + if (lastUserMessage.getRole() != MessageType.USER) { throw new IllegalArgumentException("The last message should be in user role."); } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistApplication.java b/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistApplication.java index 42a20521..f33f6e4d 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistApplication.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistApplication.java @@ -2,15 +2,21 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.ComponentScan.Filter; import org.springframework.context.annotation.FilterType; +import com.example.acme.assist.config.SpringApplicationContextInitializer; + @SpringBootApplication @ComponentScan(excludeFilters = @Filter(type = FilterType.REGEX, pattern = "com.example.acme.assist.tools.*")) public class FitAssistApplication { public static void main(String[] args) { - SpringApplication.run(FitAssistApplication.class, args); + new SpringApplicationBuilder(FitAssistApplication.class) + .initializers(new SpringApplicationContextInitializer()) + .application() + .run(args); } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistController.java b/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistController.java index 7f125b4e..706e3ac0 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistController.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/FitAssistController.java @@ -1,9 +1,19 @@ package com.example.acme.assist; -import com.example.acme.assist.model.*; +import com.example.acme.assist.model.AcmeChatRequest; +import com.example.acme.assist.model.AcmeChatResponse; +import com.example.acme.assist.model.GreetingRequest; +import com.example.acme.assist.model.GreetingResponse; +import com.example.acme.assist.model.SuggestedPrompts; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; -import org.springframework.web.bind.annotation.*; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; +import org.springframework.web.bind.annotation.ResponseStatus; +import org.springframework.web.bind.annotation.RestController; import java.util.List; diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/ProductRepository.java b/apps/acme-assist/src/main/java/com/example/acme/assist/ProductRepository.java index 7c6cc3bb..22d29928 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/ProductRepository.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/ProductRepository.java @@ -7,31 +7,47 @@ import org.apache.logging.log4j.util.Strings; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.Configuration; +import org.springframework.cloud.client.ServiceInstance; +import org.springframework.cloud.client.discovery.DiscoveryClient; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Repository; import org.springframework.web.client.HttpClientErrorException; import org.springframework.web.client.RestTemplate; +import java.util.ArrayList; import java.util.List; @Repository -@Configuration public class ProductRepository { private static final Logger log = LoggerFactory.getLogger(ProductRepository.class); - - @Value("${catalogService:http://catalog-service}") - private String catalogService; + private static List products; + private final RestTemplate restTemplate = new RestTemplate(); + private final DiscoveryClient discoveryClient; + + public ProductRepository(DiscoveryClient discoveryClient) { + this.discoveryClient = discoveryClient; + } + private String getCatalogService() { + List services = discoveryClient.getInstances("acme-catalog"); + if (services.size() > 0) + return services.get(0).getUri().toString(); + else { + log.warn("Can't find acme-catalog in registry, no products returned"); + return null; + } + } public Product getProductById(String id) { if (Strings.isEmpty(id)) { return null; } try { - RestTemplate restTemplate = new RestTemplate(); - var response = restTemplate.getForEntity(catalogService + "/products/" + id, CatalogProductResponse.class); + String catalogService = getCatalogService(); + if (catalogService == null) + return null; + + var response = this.restTemplate.getForEntity(catalogService + "/products/" + id, CatalogProductResponse.class); log.info("Response code from catalog-service: {}", response.getStatusCode()); return response.getBody().getData(); } catch (HttpClientErrorException ex) { @@ -40,13 +56,23 @@ public Product getProductById(String id) { } } - private static List products; + public void refreshProductList() { + String catalogService = getCatalogService(); + if (catalogService == null) + return; + ResponseEntity response = this.restTemplate + .getForEntity(catalogService + "/products", CatalogProductListResponse.class); + products = response.getBody().getData(); + } @PostConstruct public List getProductList() { if (products == null) { - RestTemplate restTemplate = new RestTemplate(); - ResponseEntity response = restTemplate + String catalogService = getCatalogService(); + if (catalogService == null) + return new ArrayList(); + + ResponseEntity response = this.restTemplate .getForEntity(catalogService + "/products", CatalogProductListResponse.class); products = response.getBody().getData(); } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/config/FitAssistConfiguration.java b/apps/acme-assist/src/main/java/com/example/acme/assist/config/FitAssistConfiguration.java index e1ed43db..66e92dbc 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/config/FitAssistConfiguration.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/config/FitAssistConfiguration.java @@ -1,21 +1,30 @@ package com.example.acme.assist.config; -import org.springframework.ai.embedding.EmbeddingClient; -import org.springframework.ai.vectorstore.impl.SimplePersistentVectorStore; +import com.example.acme.assist.ProductRepository; +import org.springframework.ai.chat.client.ChatClient; +import org.springframework.ai.vectorstore.VectorStore; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.io.Resource; +import org.springframework.jdbc.core.JdbcTemplate; @Configuration public class FitAssistConfiguration { - @Value("classpath:/vector_store.json") - private Resource vectorDbResource; + @Autowired + private VectorStore vectorStore; + @Bean - public SimplePersistentVectorStore simpleVectorStore(EmbeddingClient embeddingClient) { - SimplePersistentVectorStore simpleVectorStore = new SimplePersistentVectorStore(embeddingClient); - simpleVectorStore.load(vectorDbResource); - return simpleVectorStore; + public ChatClient chatClient(ChatClient.Builder chatClientBuilder){ + return chatClientBuilder.build(); } + + @Bean + public VectorStoreInitializer vectorStoreInitializer(ProductRepository repo) { + return new VectorStoreInitializer(repo, this.vectorStore); + } + } + diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/config/SpringApplicationContextInitializer.java b/apps/acme-assist/src/main/java/com/example/acme/assist/config/SpringApplicationContextInitializer.java new file mode 100644 index 00000000..84fbc81c --- /dev/null +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/config/SpringApplicationContextInitializer.java @@ -0,0 +1,34 @@ +package com.example.acme.assist.config; + +import io.pivotal.cfenv.core.CfEnv; +import io.pivotal.cfenv.core.CfService; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.springframework.context.ApplicationContextInitializer; +import org.springframework.context.ConfigurableApplicationContext; + +import org.springframework.util.StringUtils; + + +import java.util.List; +import java.util.stream.Collectors; + +public class SpringApplicationContextInitializer implements ApplicationContextInitializer { + + private static final Log logger = LogFactory.getLog(SpringApplicationContextInitializer.class); + + @Override + public void initialize(ConfigurableApplicationContext applicationContext) { + CfEnv cfEnv = new CfEnv(); + + List services = cfEnv.findAllServices(); + List serviceNames = services.stream() + .map(CfService::getName) + .collect(Collectors.toList()); + + logger.info("Found services " + StringUtils.collectionToCommaDelimitedString(serviceNames)); + + + + } +} \ No newline at end of file diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/config/VectorStoreInitializer.java b/apps/acme-assist/src/main/java/com/example/acme/assist/config/VectorStoreInitializer.java new file mode 100644 index 00000000..18da8c09 --- /dev/null +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/config/VectorStoreInitializer.java @@ -0,0 +1,76 @@ +/* + * Copyright 2023-2024 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.example.acme.assist.config; + +import java.util.List; +import java.util.ArrayList; +import java.util.HashMap; + +import org.springframework.ai.document.Document; +import org.springframework.ai.embedding.EmbeddingModel; +import org.springframework.ai.vectorstore.VectorStore; + +import org.springframework.beans.factory.BeanFactoryUtils; +import org.springframework.boot.WebApplicationType; +import org.springframework.boot.builder.SpringApplicationBuilder; +import org.springframework.boot.context.event.ApplicationReadyEvent; +import org.springframework.context.ApplicationListener; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.core.annotation.Order; +import org.springframework.http.HttpMethod; +import org.springframework.http.ResponseEntity; +import org.springframework.web.client.RestTemplate; + +import com.example.acme.assist.ProductRepository; +import com.example.acme.assist.utils.DocumentUtils; + +/** + * + * @author Stuart Charlton + */ +public class VectorStoreInitializer implements ApplicationListener { + + private static final Logger LOGGER = LoggerFactory.getLogger(VectorStoreInitializer.class); + + private VectorStore vectorStore; + private final ProductRepository productRepository; + + public VectorStoreInitializer(ProductRepository productRepository, VectorStore vectorStore) { + this.productRepository = productRepository; + this.vectorStore = vectorStore; + } + + @Override + @SuppressWarnings("unchecked") + public void onApplicationEvent(ApplicationReadyEvent event) { + + List documents = new ArrayList<>(); + productRepository.refreshProductList(); + productRepository.getProductList().stream() + .map(DocumentUtils::createDocument) + .forEach(doc -> { + documents.add(doc); + }); + LOGGER.info("Found {} products to index", documents.size()); + vectorStore.add(documents); + } +} diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatMessage.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatMessage.java new file mode 100644 index 00000000..6edbb028 --- /dev/null +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatMessage.java @@ -0,0 +1,15 @@ +package com.example.acme.assist.model; + +import lombok.Data; +import org.springframework.ai.chat.messages.MessageType; + +@Data +public class AcmeChatMessage { + + private MessageType role; + + private String content; + + private String currentProduct; + +} diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatRequest.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatRequest.java index 29227065..1333f76f 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatRequest.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatRequest.java @@ -1,9 +1,10 @@ package com.example.acme.assist.model; -import com.azure.ai.openai.models.ChatRole; - import java.util.List; +import lombok.Data; + +@Data public class AcmeChatRequest { /** @@ -21,82 +22,7 @@ public class AcmeChatRequest { * The chat history of the conversation. The last message must be in the user * role. */ - private List messages; - - /** - * @return the page - */ - public String getPage() { - return page; - } - - /** - * @param page the page to set - */ - public void setPage(String page) { - this.page = page; - } - - /** - * @return the productId - */ - public String getProductId() { - return productId; - } - - /** - * @param productId the productId to set - */ - public void setProductId(String productId) { - this.productId = productId; - } - - /** - * @return the messages - */ - public List getMessages() { - return messages; - } - - /** - * @param messages the messages to set - */ - public void setMessages(List messages) { - this.messages = messages; - } - - public static class Message { - - private ChatRole role; - - private String content; - - /** - * @return the role - */ - public ChatRole getRole() { - return role; - } - - /** - * @param role the role to set - */ - public void setRole(ChatRole role) { - this.role = role; - } + private List messages; - /** - * @return the content - */ - public String getContent() { - return content; - } - /** - * @param content the content to set - */ - public void setContent(String content) { - this.content = content; - } - } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatResponse.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatResponse.java index 5b498005..18ecc6e0 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatResponse.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/AcmeChatResponse.java @@ -1,7 +1,10 @@ package com.example.acme.assist.model; +import lombok.Data; + import java.util.List; +@Data public class AcmeChatResponse { /** @@ -9,21 +12,4 @@ public class AcmeChatResponse { */ private List messages; - /** - * Set messages - * - * @param messages - */ - public void setMessages(List messages) { - this.messages = messages; - } - - /** - * Get messages - * - * @return - */ - public List getMessages() { - return this.messages; - } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductListResponse.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductListResponse.java index c66b56d6..09ce04b6 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductListResponse.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductListResponse.java @@ -1,23 +1,12 @@ package com.example.acme.assist.model; +import lombok.Data; + import java.util.List; +@Data public class CatalogProductListResponse { private List data; - /** - * @return the data - */ - public List getData() { - return data; - } - - /** - * @param data the data to set - */ - public void setData(List data) { - this.data = data; - } - } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductResponse.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductResponse.java index d8cbc66d..0c1e6873 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductResponse.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/CatalogProductResponse.java @@ -1,37 +1,12 @@ package com.example.acme.assist.model; +import lombok.Data; + +@Data public class CatalogProductResponse { private Product data; private int status; - /** - * @return the data - */ - public Product getData() { - return data; - } - - /** - * @param data the data to set - */ - public void setData(Product data) { - this.data = data; - } - - /** - * @return the status - */ - public int getStatus() { - return status; - } - - /** - * @param status the status to set - */ - public void setStatus(int status) { - this.status = status; - } - } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingRequest.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingRequest.java index c5119874..982eda62 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingRequest.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingRequest.java @@ -1,8 +1,11 @@ package com.example.acme.assist.model; +import lombok.Data; + /** * Model of request body of Greeting API */ +@Data public class GreetingRequest { /** @@ -20,42 +23,4 @@ public class GreetingRequest { */ private String conversationId; - /** - * Set page name - * - * @param page - */ - public void setPage(String page) { - this.page = page; - } - - /** - * Set user id - * - * @param userId - */ - public void setUserId(String userId) { - this.userId = userId; - } - - /** - * Set conversation id - * - * @param conversationId - */ - public void setConversationId(String conversationId) { - this.conversationId = conversationId; - } - - public String getPage() { - return this.page; - } - - public String getUserId() { - return this.userId; - } - - public String getConversationId() { - return this.conversationId; - } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingResponse.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingResponse.java index b22b5917..bfbaad33 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingResponse.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/GreetingResponse.java @@ -1,7 +1,10 @@ package com.example.acme.assist.model; +import lombok.Data; + import java.util.List; +@Data public class GreetingResponse { /** @@ -19,57 +22,4 @@ public class GreetingResponse { */ private List suggestedPrompts; - /** - * Set conversation id - * - * @param conversationId - */ - public void setConversationId(String conversationId) { - this.conversationId = conversationId; - } - - /** - * Set greeting message - * - * @param greeting - */ - public void setGreeting(String greeting) { - this.greeting = greeting; - } - - /** - * Set suggested prompts - * - * @param suggestedPrompts - */ - public void setSuggestedPrompts(List suggestedPrompts) { - this.suggestedPrompts = suggestedPrompts; - } - - /** - * Get conversation id - * - * @return - */ - public String getConversationId() { - return this.conversationId; - } - - /** - * Get greeting message - * - * @return - */ - public String getGreeting() { - return this.greeting; - } - - /** - * Gett Suggested prompts - * - * @return - */ - public List getSuggestedPrompts() { - return this.suggestedPrompts; - } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/Product.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/Product.java index 908a77e8..af6cc402 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/Product.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/Product.java @@ -1,10 +1,13 @@ package com.example.acme.assist.model; +import lombok.Data; + import java.util.List; /** * The product model from "catalog-service" */ +@Data public class Product { private String id; @@ -25,129 +28,4 @@ public class Product { private List tags; - /** - * @return the id - */ - public String getId() { - return id; - } - - /** - * @param id the id to set - */ - public void setId(String id) { - this.id = id; - } - - /** - * @return the imageUrl1 - */ - public String getImageUrl1() { - return imageUrl1; - } - - /** - * @param imageUrl1 the imageUrl1 to set - */ - public void setImageUrl1(String imageUrl1) { - this.imageUrl1 = imageUrl1; - } - - /** - * @return the imageUrl2 - */ - public String getImageUrl2() { - return imageUrl2; - } - - /** - * @param imageUrl2 the imageUrl2 to set - */ - public void setImageUrl2(String imageUrl2) { - this.imageUrl2 = imageUrl2; - } - - /** - * @return the imageUrl3 - */ - public String getImageUrl3() { - return imageUrl3; - } - - /** - * @param imageUrl3 the imageUrl3 to set - */ - public void setImageUrl3(String imageUrl3) { - this.imageUrl3 = imageUrl3; - } - - /** - * @return the name - */ - public String getName() { - return name; - } - - /** - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - - /** - * @return the shortDescription - */ - public String getShortDescription() { - return shortDescription; - } - - /** - * @param shortDescription the shortDescription to set - */ - public void setShortDescription(String shortDescription) { - this.shortDescription = shortDescription; - } - - /** - * @return the description - */ - public String getDescription() { - return description; - } - - /** - * @param description the description to set - */ - public void setDescription(String description) { - this.description = description; - } - - /** - * @return the price - */ - public Double getPrice() { - return price; - } - - /** - * @param price the price to set - */ - public void setPrice(Double price) { - this.price = price; - } - - /** - * @return the tags - */ - public List getTags() { - return tags; - } - - /** - * @param tags the tags to set - */ - public void setTags(List tags) { - this.tags = tags; - } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/model/SuggestedPrompts.java b/apps/acme-assist/src/main/java/com/example/acme/assist/model/SuggestedPrompts.java index f8d63e29..64305766 100644 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/model/SuggestedPrompts.java +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/model/SuggestedPrompts.java @@ -1,7 +1,10 @@ package com.example.acme.assist.model; +import lombok.Data; + import java.util.List; +@Data public class SuggestedPrompts { /** @@ -24,59 +27,4 @@ public class SuggestedPrompts { */ private boolean isDefault; - /** - * @return the page - */ - public String getPage() { - return page; - } - - /** - * @param page the page to set - */ - public void setPage(String page) { - this.page = page; - } - - /** - * @return the greeting - */ - public String getGreeting() { - return greeting; - } - - /** - * @param greeting the greeting to set - */ - public void setGreeting(String greeting) { - this.greeting = greeting; - } - - /** - * @return the prompts - */ - public List getPrompts() { - return prompts; - } - - /** - * @param prompts the prompts to set - */ - public void setPrompts(List prompts) { - this.prompts = prompts; - } - - /** - * @return the isDefault - */ - public boolean isDefault() { - return isDefault; - } - - /** - * @param isDefault the isDefault to set - */ - public void setDefault(boolean isDefault) { - this.isDefault = isDefault; - } } diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/tools/BuildVectorStoreApplication.java b/apps/acme-assist/src/main/java/com/example/acme/assist/tools/BuildVectorStoreApplication.java deleted file mode 100644 index 995090a4..00000000 --- a/apps/acme-assist/src/main/java/com/example/acme/assist/tools/BuildVectorStoreApplication.java +++ /dev/null @@ -1,68 +0,0 @@ -package com.example.acme.assist.tools; - -import org.springframework.ai.document.Document; -import org.springframework.ai.loader.impl.JsonLoader; -import org.springframework.ai.loader.impl.JsonMetadataGenerator; -import org.springframework.ai.vectorstore.impl.SimplePersistentVectorStore; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.CommandLineRunner; -import org.springframework.boot.DefaultApplicationArguments; -import org.springframework.boot.WebApplicationType; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.builder.SpringApplicationBuilder; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.core.io.FileSystemResource; - -import java.io.File; -import java.util.List; -import java.util.Map; - -/** - * A CLI application for building and persisting a vector store from files. - */ -@SpringBootApplication -@ComponentScan(basePackages = {"com.example.acme.assist.tools", "com.example.acme.assist.config"}) -public class BuildVectorStoreApplication implements CommandLineRunner { - - @Autowired - private SimplePersistentVectorStore simpleVectorStore; - - public static void main(String[] args) { - new SpringApplicationBuilder(BuildVectorStoreApplication.class) - .web(WebApplicationType.NONE) - .run(args); - } - - @Override - public void run(String... originalArgs) throws Exception { - DefaultApplicationArguments args = new DefaultApplicationArguments(originalArgs); - var from = args.getOptionValues("from"); - if (from == null || from.size() != 1) { - System.err.println("argument --from is required."); - System.exit(-1); - } - var to = args.getOptionValues("to"); - if (to == null || to.size() != 1) { - System.err.println("argument --to is required."); - System.exit(-1); - } - var jsonFiles = List.of(from.get(0).split(",")); - - for (var file : jsonFiles) { - File sourceFile = new File(file); - JsonLoader jsonLoader = new JsonLoader(new FileSystemResource(sourceFile), - new ProductMetadataGenerator(), - "price", "name", "shortDescription", "description", "tags"); - List documents = jsonLoader.load(); - this.simpleVectorStore.add(documents); - } - this.simpleVectorStore.save(new File(to.get(0))); - } - - public class ProductMetadataGenerator implements JsonMetadataGenerator { - @Override - public Map generate(Map jsonMap) { - return Map.of("name", jsonMap.get("name")); - } - } -} diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/utils/DocumentUtils.java b/apps/acme-assist/src/main/java/com/example/acme/assist/utils/DocumentUtils.java new file mode 100644 index 00000000..f6db39e4 --- /dev/null +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/utils/DocumentUtils.java @@ -0,0 +1,24 @@ +package com.example.acme.assist.utils; + +import com.example.acme.assist.model.Product; +import lombok.NoArgsConstructor; +import org.springframework.ai.document.Document; + +import java.util.Map; + +@NoArgsConstructor +public class DocumentUtils { + + public static Document createDocument(Product product) { + StringBuilder sb = new StringBuilder(); + sb.append("price: ").append(product.getPrice()).append(System.lineSeparator()); + sb.append("name: ").append(product.getName()).append(System.lineSeparator()); + sb.append("shortDescription: ").append(product.getShortDescription()).append(System.lineSeparator()); + sb.append("description: ").append(product.getDescription()).append(System.lineSeparator()); + sb.append("tags: ").append(product.getTags()).append(System.lineSeparator()); + var content = sb.toString(); + + return new Document(product.getId(), content, Map.of("name", product.getName())); + } + +} diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/vectorstore/IdAwareJsonReader.java b/apps/acme-assist/src/main/java/com/example/acme/assist/vectorstore/IdAwareJsonReader.java new file mode 100644 index 00000000..57ca8310 --- /dev/null +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/vectorstore/IdAwareJsonReader.java @@ -0,0 +1,53 @@ +package com.example.acme.assist.vectorstore; + + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import org.springframework.ai.document.Document; +import org.springframework.ai.reader.JsonMetadataGenerator; +import org.springframework.ai.reader.JsonReader; +import org.springframework.core.io.Resource; + +public class IdAwareJsonReader extends JsonReader { + + private static final String DEFAULT_ID_KEY = "id"; + + public IdAwareJsonReader(String idKey, Resource resource, JsonMetadataGenerator jsonMetadataGenerator, String... jsonKeysToUse) { + super(resource, new IdAwareMetadataGenerator(idKey, jsonMetadataGenerator), jsonKeysToUse); + } + + @Override + public List get() { + List documents = super.get(); + + List result = new ArrayList<>(); + for (Document document : documents) { + Object id = document.getMetadata().remove(DEFAULT_ID_KEY); + result.add(new Document(id.toString(), document.getContent(), document.getMetadata())); + } + return result; + } + + public static class IdAwareMetadataGenerator implements JsonMetadataGenerator { + + + private final JsonMetadataGenerator jsonMetadataGenerator; + private final String idKey; + + public IdAwareMetadataGenerator(String idKey, JsonMetadataGenerator jsonMetadataGenerator) { + this.idKey = idKey; + this.jsonMetadataGenerator = jsonMetadataGenerator; + } + + @Override + public Map generate(Map jsonMap) { + Map mutableResult = new HashMap<>(this.jsonMetadataGenerator.generate(jsonMap)); + mutableResult.put(DEFAULT_ID_KEY, jsonMap.get(this.idKey)); + return mutableResult; + } + } + + +} diff --git a/apps/acme-assist/src/main/java/com/example/acme/assist/vectorstore/LazyCalculateSimpleVectorStore.java b/apps/acme-assist/src/main/java/com/example/acme/assist/vectorstore/LazyCalculateSimpleVectorStore.java new file mode 100644 index 00000000..ead33d6c --- /dev/null +++ b/apps/acme-assist/src/main/java/com/example/acme/assist/vectorstore/LazyCalculateSimpleVectorStore.java @@ -0,0 +1,31 @@ +package com.example.acme.assist.vectorstore; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.ai.document.Document; +import org.springframework.ai.embedding.EmbeddingModel; +import org.springframework.ai.vectorstore.SimpleVectorStore; + +import java.util.List; + +public class LazyCalculateSimpleVectorStore extends SimpleVectorStore { + + public static final Logger LOGGER = LoggerFactory.getLogger(LazyCalculateSimpleVectorStore.class); + + public LazyCalculateSimpleVectorStore(EmbeddingModel embeddingModel) { + super(embeddingModel); + } + + @Override + public void add(List documents) { + for (Document document : documents) { + if (document.getEmbedding() != null && document.getEmbedding().length != 0) { + LOGGER.info("Document id = {} already has an embedding, skipping.", document.getId()); + } else { + LOGGER.info("Calling EmbeddingClient for document id = {}", document.getId()); + document.setEmbedding(this.embeddingModel.embed(document)); + } + this.store.put(document.getId(), document); + } + } +} diff --git a/apps/acme-assist/src/main/resources/application-local.yaml b/apps/acme-assist/src/main/resources/application-local.yaml new file mode 100644 index 00000000..d793a14d --- /dev/null +++ b/apps/acme-assist/src/main/resources/application-local.yaml @@ -0,0 +1,31 @@ +server: + port: 8081 + +management: + endpoints: + web: + exposure: + include: info,health +spring: + ai: + openai: + chat: + options: + model: gpt-3.5-turbo + api-key: ${OPENAI_API_KEY} + vectorstore: + pgvector: + initialize-schema: true + remove-existing-vector-store-table: true + application: + name: acme-assist + cloud: + config: + enabled: false + discovery: + enabled: true + datasource: + driver-class-name: org.postgresql.Driver + username: root + password: rootpassword + url: jdbc:postgresql://localhost:5433/acme-assist diff --git a/apps/acme-assist/src/main/resources/application.yaml b/apps/acme-assist/src/main/resources/application.yaml index 08cccc17..36231199 100644 --- a/apps/acme-assist/src/main/resources/application.yaml +++ b/apps/acme-assist/src/main/resources/application.yaml @@ -1,10 +1,23 @@ -spring: - ai: - azure: - openai: - model: gpt-35-turbo-16k + management: endpoints: web: exposure: - include: info,health \ No newline at end of file + include: info,health +spring: + ai: + vectorstore: + pgvector: + initialize-schema: true + remove-existing-vector-store-table: true + application: + name: acme-assist + cloud: + config: + enabled: false + datasource: + driver-class-name: org.postgresql.Driver + jpa: + properties: + hibernate: + dialect: org.hibernate.dialect.PostgreSQLDialect diff --git a/apps/acme-assist/src/main/resources/prompts/chatWithProductId.st b/apps/acme-assist/src/main/resources/prompts/chatWithProductId.st index da029e5a..ef9292be 100644 --- a/apps/acme-assist/src/main/resources/prompts/chatWithProductId.st +++ b/apps/acme-assist/src/main/resources/prompts/chatWithProductId.st @@ -1,17 +1,66 @@ -You are an AI assistant of this website named 'Acme Fitness Store', which sells bikes and accessories online. -You help people find information. -Please answer the questions based the following product details with the text that follows the placeholder """PRODUCT-DETAILS""" and then -try to improve your answer with additional text that follows the placeholder """ADDITIONAL-CONTEXT""" +[Overall Rules to follow] +*You are an AI assistant for the 'Acme Fitness Store' website, which specializes in bikes and accessories. +*Assume that user questions relate to this website, bikes, and accessories unless clearly stated otherwise. +*When users ask about "this" or "it" without specifying, assume they're referring to the product they're currently viewing, as indicated in the [ADDITIONAL-CONTEXT]. +*Use the information in [ADDITIONAL-CONTEXT] to provide specific, relevant answers about products, cart contents, and user interactions. +*If the question isn't directly answered by the [ADDITIONAL-CONTEXT] or [EXAMPLES], use the provided information to give a relevant, helpful response that aligns with the store's products and services. +*Only respond with "Sorry, I cannot answer your question. Please contact us." if the question is completely unrelated to bikes, accessories, or e-commerce, or if it requires information that's not available and can't be reasonably inferred. -"""PRODUCT-DETAILS""" +[PRODUCT-INFO] +[Begin] Name: {name} Tags: {tags} Short description: {shortDescription} Full description: {fullDescription} +[End] - - -"""ADDITIONAL-CONTEXT""" +[ADDITIONAL-CONTEXT] +[Begin] {additionalContext} +[End] + +[EXAMPLES] +[Begin] +[Question] +How long will it take to get the bike delivered to me? +[Answer] +We offer two shipping options: 1. Free standard: With our standard shipping option, you can expect your products to arrive within 3-7 business days. 2. Premium: If you prefer priority handling and express delivery, our premium shipping option ensures delivery within 1-3 business days. Feeling reassured by the estimated delivery time, Alex completes the remaining form fields, including his credit card information. With the order finalized, Alex is excitedly looking forward to receiving his new e-bike and accessories. He's grateful for the helpful guidance provided by FitAssist throughout the entire shopping experience. +[Question] +How will you ship my bike? +[Answer] +Great question! We offer two shipping options: Free Shipping: Get your Model A e-bike and Rear Rack delivered to your doorstep at no additional cost with our standard shipping option. Estimated delivery time is 3-7 business days. Premium Shipping: If you prefer priority handling and express delivery, you can choose our premium shipping option. Your e-bike and accessories will arrive within 1-3 business days. Please let me know which option you'd like, or if you have any other questions. I'm here to assist you throughout the process. +[Question] +How do I place an order for a bike on your website? +[Answer] +To place an order, browse through our selection of bikes and click on the one you wish to purchase. On the product page, you'll find an "Add to Cart" button. Click on it, and the bike will be added to your shopping cart. Proceed to the checkout page to complete your order. +[Question] +What payment methods do you accept for bike purchases? +[Answer] +We accept various payment methods, including credit/debit cards (Visa, Mastercard, etc.), PayPal, and other secure online payment options. You can select your preferred payment method during the checkout process. +[Question] +Do you offer free shipping for bike orders? +[Answer] +Absolutely! We offer free standard shipping for all bike orders. With our free shipping option, it will be delivered to your doorstep at no additional cost. Estimated delivery time is 3-7 business days. If you prefer faster delivery, we also have a premium shipping option available for a small additional fee, which ensures express delivery within 1-3 business days. Please let me know if you have any more questions or if there's anything else I can assist you with! +[Question] +Can I return or exchange the bike if I'm not satisfied? +[Answer] +Yes, we have a hassle-free return and exchange policy. If you are not satisfied with your bike, you can return it within 30 days of delivery for a full refund or exchange. The bike must be in its original condition, and you may be responsible for return shipping costs. +[Question] +Are the bikes on your website pre-assembled or do I need to assemble them myself? +[Answer] +The bikes are usually shipped partially assembled for safer transportation. You will receive detailed instructions and the necessary tools to complete the assembly easily at home. If you need assistance, you can contact our customer support team. +[Question] +Do you offer any warranties on your bikes? +[Answer] +Yes, all our bikes come with a manufacturer's warranty that covers defects in materials and workmanship. The duration and coverage of the warranty may vary depending on the bike model. Please check the product page or contact us for specific warranty information. +[Question] +Can I get expert advice on choosing the right bike for me? +[Answer] +Absolutely! We have a team of knowledgeable bike experts ready to assist you. You can reach out to our customer support through email, phone, or live chat, and they will be happy to help you find the perfect bike based on your needs and preferences. +[Question] +Do you offer any discounts or promotions on bike purchases? +[Answer] +Yes, we frequently run promotions and special offers on our website. Keep an eye on our homepage and subscribe to our newsletter to stay updated on the latest deals and discounts. +[End] diff --git a/apps/acme-assist/src/main/resources/prompts/chatWithoutProductId.st b/apps/acme-assist/src/main/resources/prompts/chatWithoutProductId.st index 75c59ec4..29dbdc0d 100644 --- a/apps/acme-assist/src/main/resources/prompts/chatWithoutProductId.st +++ b/apps/acme-assist/src/main/resources/prompts/chatWithoutProductId.st @@ -1,5 +1,56 @@ -You are an AI assistant of the website named 'Acme Fitness Store', which sells bikes and accessories online. -You help answer questions about the store's bikes and accessories. -Please answer the questions based the following product context and not prior knowledge: -=================================== +[Overall Rules to follow] +*You are an AI assistant for the 'Acme Fitness Store' website, which specializes in bikes and accessories. +*Assume that user questions relate to this website, bikes, and accessories unless clearly stated otherwise. +*When users ask about "this" or "it" without specifying, assume they're referring to the product they're currently viewing, as indicated in the [ADDITIONAL-CONTEXT]. +*Use the information in [ADDITIONAL-CONTEXT] to provide specific, relevant answers about products, cart contents, and user interactions. +*If the question isn't directly answered by the [ADDITIONAL-CONTEXT] or [EXAMPLES], use the provided information to give a relevant, helpful response that aligns with the store's products and services. +*Only respond with "Sorry, I cannot answer your question. Please contact us." if the question is completely unrelated to bikes, accessories, or e-commerce, or if it requires information that's not available and can't be reasonably inferred. + +[ADDITIONAL-CONTEXT] +[Begin] {context} +[End] + +[EXAMPLES] +[Begin] +[Question] +How long will it take to get the bike delivered to me? +[Answer] +We offer two shipping options: 1. Free standard: With our standard shipping option, you can expect your products to arrive within 3-7 business days. 2. Premium: If you prefer priority handling and express delivery, our premium shipping option ensures delivery within 1-3 business days. Feeling reassured by the estimated delivery time, Alex completes the remaining form fields, including his credit card information. With the order finalized, Alex is excitedly looking forward to receiving his new e-bike and accessories. He's grateful for the helpful guidance provided by FitAssist throughout the entire shopping experience. +[Question] +How will you ship my bike? +[Answer] +Great question! We offer two shipping options: Free Shipping: Get your Model A e-bike and Rear Rack delivered to your doorstep at no additional cost with our standard shipping option. Estimated delivery time is 3-7 business days. Premium Shipping: If you prefer priority handling and express delivery, you can choose our premium shipping option. Your e-bike and accessories will arrive within 1-3 business days. Please let me know which option you'd like, or if you have any other questions. I'm here to assist you throughout the process. +[Question] +How do I place an order for a bike on your website? +[Answer] +To place an order, browse through our selection of bikes and click on the one you wish to purchase. On the product page, you'll find an "Add to Cart" button. Click on it, and the bike will be added to your shopping cart. Proceed to the checkout page to complete your order. +[Question] +What payment methods do you accept for bike purchases? +[Answer] +We accept various payment methods, including credit/debit cards (Visa, Mastercard, etc.), PayPal, and other secure online payment options. You can select your preferred payment method during the checkout process. +[Question] +Do you offer free shipping for bike orders? +[Answer] +Absolutely! We offer free standard shipping for all bike orders. With our free shipping option, it will be delivered to your doorstep at no additional cost. Estimated delivery time is 3-7 business days. If you prefer faster delivery, we also have a premium shipping option available for a small additional fee, which ensures express delivery within 1-3 business days. Please let me know if you have any more questions or if there's anything else I can assist you with! +[Question] +Can I return or exchange the bike if I'm not satisfied? +[Answer] +Yes, we have a hassle-free return and exchange policy. If you are not satisfied with your bike, you can return it within 30 days of delivery for a full refund or exchange. The bike must be in its original condition, and you may be responsible for return shipping costs. +[Question] +Are the bikes on your website pre-assembled or do I need to assemble them myself? +[Answer] +The bikes are usually shipped partially assembled for safer transportation. You will receive detailed instructions and the necessary tools to complete the assembly easily at home. If you need assistance, you can contact our customer support team. +[Question] +Do you offer any warranties on your bikes? +[Answer] +Yes, all our bikes come with a manufacturer's warranty that covers defects in materials and workmanship. The duration and coverage of the warranty may vary depending on the bike model. Please check the product page or contact us for specific warranty information. +[Question] +Can I get expert advice on choosing the right bike for me? +[Answer] +Absolutely! We have a team of knowledgeable bike experts ready to assist you. You can reach out to our customer support through email, phone, or live chat, and they will be happy to help you find the perfect bike based on your needs and preferences. +[Question] +Do you offer any discounts or promotions on bike purchases? +[Answer] +Yes, we frequently run promotions and special offers on our website. Keep an eye on our homepage and subscribe to our newsletter to stay updated on the latest deals and discounts. +[End] \ No newline at end of file diff --git a/apps/acme-assist/src/main/resources/vector_store.json b/apps/acme-assist/src/main/resources/vector_store.json deleted file mode 100644 index abfdb16f..00000000 --- a/apps/acme-assist/src/main/resources/vector_store.json +++ /dev/null @@ -1,778 +0,0 @@ -{ - "f28fe35c-76f1-4267-b896-227c581a486f" : { - "embedding" : [ 0.020894462, 0.0058756866, -0.019639667, -0.0011807769, -0.013619468, 0.009876229, 0.009079645, -0.03978689, 0.008106826, -0.03403457, 0.0021377348, -0.0042120246, -0.020753475, -0.0048041753, -0.008438149, 0.0065277573, 0.0068978514, -0.002821528, 0.01877964, -0.0124492645, 0.019921644, 0.0113284085, -0.007059988, -0.011687928, -0.012456315, -0.014662781, 0.029381957, -0.011518742, 0.007437132, -0.023291264, 0.024954924, 0.015677897, -0.023474548, -0.026590388, -0.012096794, -0.007888294, 0.02079577, -0.007944689, 0.03259649, 4.9522135E-4, 0.027845185, 0.019343592, -0.016791703, 0.0110675795, -0.0076556634, 0.017581237, 0.026548093, -0.0025254525, 0.02151481, 0.019639667, -0.013598319, 0.018201586, 0.003265641, -0.0016028605, -8.3139027E-4, -0.005967329, -0.014282113, -0.0035317563, 0.0324837, 0.021345625, 0.0074018845, 0.016777605, -0.03583922, 0.001121738, -0.03716451, -0.017976005, 0.009234732, -0.010475429, -0.010151156, 0.02587135, 0.012547957, 0.0071234326, 0.02427818, -0.0012036874, 0.024235886, -0.014747374, -0.0032480175, -0.0152972285, 0.009636548, -0.016185455, 0.024954924, 0.0013385075, -0.01791961, 0.008268963, 0.033808988, -0.013027317, 0.0052095167, 0.0033220362, -0.028902598, 0.015593303, -0.020739375, 0.009079645, -6.745408E-4, 0.019188505, 0.014162272, -0.010320342, -0.0068449806, 0.009883278, -0.012562055, -0.016580222, -0.003838406, 0.006309225, -0.0016795228, -0.014902461, -0.025829053, -0.030143294, -0.02753501, -0.0088258665, 0.011208568, -0.03175056, -0.013964889, -0.0049486887, -0.005065004, 0.025955942, 0.029410155, -0.0076556634, 0.04644154, 0.0013913781, 0.02189548, -0.030002305, 0.035613637, 0.009777537, 0.010877246, -0.04762584, -0.0044658035, 0.005769945, -0.006887277, -0.006496035, 0.002543076, 0.008015184, -0.008409951, -0.004765404, 0.0076063178, 0.010200501, -0.022135159, 0.005096726, 0.006101268, 0.010059513, -0.031891547, -0.030256085, 0.011483495, 0.005121399, -0.014253914, 0.0028673492, -6.1814545E-4, 0.007042364, -0.003954721, -0.013295194, 0.019315394, -0.042550262, 0.009791636, -8.494544E-4, 0.025363792, 0.016735308, 0.011589237, -0.0124069685, -8.939538E-4, 0.035500847, -0.026844168, -0.033611607, -0.019188505, 0.0059602796, 0.0029642785, -0.010792653, 0.011504644, 0.013675863, 0.02200827, -0.010313292, 0.006422016, -0.0109406905, -0.0012398156, 0.02333356, -0.020598387, 0.03222992, -0.002788043, 0.01973836, 0.006686369, -0.024856234, -0.012068597, 0.0042507965, 0.021007253, -0.015691996, 0.005389277, 0.007944689, -0.015720192, -0.0012503897, -4.1217043E-4, -0.017468447, 0.018300278, 3.7229716E-4, 0.011215618, -0.0082196165, -0.013993086, -0.007035315, -0.577488, -0.03149678, -0.01814519, -0.0146063855, 2.7074156E-4, 0.01576249, 0.008261913, 0.017299261, -0.0028743986, -0.02079577, -0.018356673, 0.02501132, -0.008903409, -0.026801871, -0.022741409, -0.01985115, 0.01491656, 0.009735241, 0.0128369825, -0.019414086, -0.052729614, -0.0067674373, -0.024249984, 0.012667797, 0.0035070833, -0.0088258665, 0.004099234, -0.010108859, -0.0071234326, 0.017256966, -0.030453468, 0.045088053, 0.013584221, -3.410154E-4, 0.04147875, -0.037333697, -0.009220634, 0.024856234, 0.03214533, 0.028155359, -0.012350573, -0.0078178, -0.013379787, -0.016044466, -0.008945706, 0.0065982514, 0.038940962, -0.02152891, -0.0062810276, -0.05157351, 0.018215686, 0.029212771, 0.016678913, -0.0037784858, 0.029748527, 0.0025906595, 0.029748527, 0.0028250527, 0.0081350235, -9.737003E-4, -0.01178662, 0.018709144, -5.8466074E-4, -0.019399988, 0.0019826477, 0.00986213, -0.046272352, -0.03389358, 0.027549108, -0.0061964346, 0.014888362, 0.0055161663, 0.015621501, 0.03332963, 0.025391988, 0.029776724, 0.017736325, 0.00806453, 9.5783913E-4, 0.01708778, 5.1240425E-4, 0.028197655, 0.007437132, -0.020245917, 0.013013218, -0.0075005763, 0.009996069, 0.006915475, 0.025363792, 0.029212771, 0.023629636, 0.016255949, 0.0029907138, 0.0016319393, 0.0031387515, 0.033386026, -0.002278723, 0.012322376, -9.393344E-4, -0.02946655, -0.023601437, 0.01598807, 0.013964889, 0.004187352, 0.025532978, 0.007003593, -1.2302054E-5, -0.019822951, 0.0035141327, -0.0125338575, 0.0061365147, 0.0016821664, -0.021867283, 0.010813801, -0.0034031046, -0.03115841, 0.02368603, 0.0076204166, 0.02236074, -0.027126145, -0.0055514136, -0.005036806, 0.034316547, -4.947807E-4, -0.0216558, -0.008889311, 0.01707368, 0.017299261, -0.0025060666, -0.016693013, 0.009072595, 0.0152972285, 0.04412933, -0.008367654, 0.012717143, 0.015085746, 0.01407063, -0.014148174, 0.011272013, -0.028719312, -0.034316547, -0.01454999, -0.005798143, -0.0397023, -3.6590864E-4, -0.025180506, 0.014359656, 0.0030735445, -0.0053928015, -0.010179354, -0.0077755037, -0.02214926, -0.012216634, 0.010954789, 0.011927608, -0.012695994, -0.018821934, -0.03104562, -0.018793738, -0.02090856, 0.006083644, -2.9233037E-4, -0.03476771, 0.001600217, 0.010856098, 0.009488511, 0.007274995, 0.01983705, -0.018427167, -0.047541246, -0.015001153, 0.0027475092, -0.022938794, 0.01263255, -0.020823969, 8.7016204E-4, -0.012801736, 0.0017112452, 0.011617434, -0.01887833, 0.0017306311, 0.031440385, -0.047597643, 0.0144372, 0.03318864, 0.024687048, 0.027055651, -0.0011525792, -0.020979056, 0.0076415646, -0.008205518, 0.0110675795, -0.016819902, -3.8110893E-4, 0.014733275, -0.0032762152, 0.025110012, -0.0034771233, 0.016453331, 0.0027933302, 0.02729533, -0.0053399308, 0.017849116, 1.0777893E-4, 0.02671728, -0.030932829, 0.0180465, 0.0030541585, 0.040604625, 0.0146063855, 0.02561757, -0.023982106, -0.026407104, -0.0063127503, -0.004317766, -0.003947672, 0.020950858, 0.039279334, -0.009269979, -0.01659432, 0.0067603877, 0.022092864, 0.021585306, -0.0072820447, 0.005424524, 0.024461467, 0.016509727, 0.02683007, -0.0104190335, -0.014162272, -0.0010168779, 0.010214601, 0.02598414, -0.0066299736, 0.010954789, 0.01359127, 0.012562055, -0.012569105, 0.035895616, 0.004726632, 0.036882535, 0.038743578, 0.026604488, -0.01815929, 0.0051848437, -0.002259337, 0.0037432387, 0.029522946, 0.04173253, 0.0077966517, -0.009615401, 0.013259947, -0.007853047, 0.0064502135, 0.0026364808, -0.009812784, 0.008431099, 0.013894395, -0.007965838, -0.0024919678, 0.021218736, 0.044439506, 0.03273748, 0.0024620078, 0.0023210195, -0.018328477, -0.036121197, -0.01155399, 7.467973E-5, -0.012660747, 0.015466414, -0.009220634, -0.013090761, 0.002303396, -0.009566055, -0.0022663865, 0.01707368, 0.00246377, 0.018314376, 0.025927745, -0.025814954, -0.029579341, 0.01467688, 0.014077679, -0.016255949, 0.016326442, 0.010736258, 0.010024266, 0.014958857, 0.027915679, 0.006756863, 0.024799839, -0.0064184912, 0.0034383517, -0.010799702, -0.008924558, 0.022558125, -0.019696062, 0.0051531214, -9.631262E-4, -0.016932692, 0.004592693, -0.008684878, -0.018737342, 0.037192706, -0.024489664, 0.005738223, -0.014874264, 0.015621501, 0.023418153, -0.0142609645, -0.043508984, -0.016989088, 0.0022751982, -0.01261845, -0.0077896025, -0.0011261438, -0.024503762, 0.034936894, -0.008254863, -0.021303328, -0.010411984, -0.047231074, 0.009530808, 0.038799975, 0.021881381, 0.0011728462, 0.0032092456, -0.015790688, -0.009065546, -0.029043585, -0.021148242, 0.015706094, 0.024010304, 0.0055408394, 0.027450418, -0.009791636, -0.014719176, 0.0032585915, 4.053413E-4, 0.018384872, -0.036826137, 0.015832983, -0.016862199, -0.0078318985, -0.018948825, -0.0015041687, 0.037587475, 0.026505796, -0.0013252898, 0.00577347, 0.0036868434, 0.022600422, -0.009967871, 0.002049617, 0.005590185, 0.016453331, 0.0057805195, -0.021035451, 0.021810887, 0.01046133, -0.003947672, 0.0013570122, -0.01070101, 0.012829933, 0.020457398, 0.0131401075, -8.43176E-5, 0.022332544, -0.004053413, 0.014592287, 6.287196E-4, 0.039843287, -0.016185455, 0.025039518, 0.0031845728, -0.01659432, 0.014874264, 0.012089745, 0.03296306, 4.5628432E-5, -0.010066563, -0.015128043, -0.03101742, 0.004092185, -0.01622775, 0.03378079, -0.0019826477, -0.024348676, 0.0018628077, -0.01828618, 0.0117161255, 0.004532773, 5.128449E-4, -0.02141612, -0.01552281, -0.008318309, 0.035670035, 0.007070562, 0.002791568, 0.024362775, -0.02392571, 0.0077402564, 0.009319325, -0.02608283, 0.017806819, -0.0067744865, -0.003993493, -0.010630516, 0.017623534, 0.036008406, 0.009269979, 0.005554938, -0.016255949, 0.0076909107, -0.024503762, 0.012695994, -0.019315394, -0.01755304, -0.004092185, 0.011525792, 0.018793738, 0.008212567, -0.014155223, 0.010968888, -0.01732746, 0.002992476, 0.03406277, 0.0012080933, -0.008593235, 0.011617434, -0.011807769, 0.002578323, -0.024672948, -0.017905511, -0.014775571, 0.008642581, 0.009220634, -0.047174677, 0.008973904, 0.032793872, -0.008367654, 0.008325358, -0.0065982514, -0.011751373, -0.03617759, 0.041450553, 0.0018002441, -0.005992002, 0.032906663, 0.014416051, 9.164238E-4, -0.0021412594, 0.01996394, 0.040689215, 0.012273029, 0.014761473, 0.026068732, -0.028113062, -0.03203254, -0.0074723787, 0.005040331, 0.011984004, -0.0011843016, -0.013309293, 0.01852586, 0.020133127, 0.021486614, -0.028620621, -0.018427167, -0.009107843, 0.015494612, -0.014148174, 0.024983123, -0.006185861, 0.017947808, -0.020584289, -0.02116234, -0.029494748, -0.01046838, -0.011772521, -0.016495628, -0.0011331933, 0.010799702, 0.013238799, -0.0033026503, -1.1654939E-5, -0.002328069, -0.0032938386, -0.002992476, -0.0061752866, -0.021204637, -0.033160444, 0.0063973432, 0.014902461, 0.01515624, -0.038517997, -0.018314376, -0.017764524, 0.030397072, -0.019498678, -0.0023686031, -0.014077679, -0.062373213, -0.0036586458, -0.012717143, -0.0060519218, -0.010390836, -0.0312712, -0.009206534, 0.043960147, -0.0020831018, 0.00172975, 0.023375856, 0.0035423303, -0.018511761, 0.04641334, 0.007662713, 0.015001153, 0.010623466, -0.03679794, -0.020429201, -0.02237484, -0.009488511, -0.037418287, -0.0046526133, -0.0058756866, -0.006097743, -0.002911408, -0.014007186, -0.0045045754, -0.011934658, 0.0034806482, -0.0036075376, 0.004772453, -0.026153326, -0.021373823, -0.034006372, -0.01634054, -0.008677828, 0.0028691115, 0.012054497, -0.03197614, -0.0125338575, 0.014423101, -0.01058117, 0.016805803, 0.01383095, 0.027619604, 0.02090856, -0.0024426219, -0.024954924, -0.012935675, 0.016876297, -0.0070141666, 0.022219753, 0.007662713, -0.0023404055, -0.0077120587, -0.0075640213, -0.015071647, -0.012921575, -0.034090966, 0.021839084, 0.02935376, 0.019287197, -0.0066898935, 0.006615875, -0.011532841, 0.030340677, 0.0042085, -0.00769796, 0.0063127503, -0.01648153, -0.01298502, 0.0360648, 0.0033995798, 0.009213584, 0.004032265, -0.016834, 0.005868637, -0.020852165, -0.026350709, -0.02224795, 0.01213909, 0.06197845, -0.018060599, -0.008797669, 0.04136596, 0.012970922, -0.015226734, -0.008579137, -0.0020337559, 0.02935376, -0.033047654, -0.011300211, -0.013161256, -0.004187352, -0.009537857, 0.009305227, -0.012498611, 0.0027950925, 0.005992002, -0.0056465804, 0.0072080255, 0.003704467, -0.026801871, -0.013386837, -0.0056254324, -0.02031641, -0.03679794, -0.007289094, -0.004271945, -0.056197926, -0.001097065, -0.038546193, 0.012195486, 0.037249103, 0.018187487, -0.0037361893, 0.00806453, 0.029156376, -0.019611469, 0.030989224, 0.021698097, 0.029325562, -0.02250173, 0.012921575, -0.006154138, -0.026660884, 0.011927608, 0.004596218, -0.016086763, -0.0384898, -0.007845998, 0.0076909107, 0.004201451, -0.021204637, 0.007521725, 0.015593303, 0.009544906, -0.011335458, -0.016862199, 0.014831967, -0.00902325, 0.0064431643, -0.00535403, -0.002169457, 0.027027452, 0.0041591544, -0.016707111, 0.016326442, -0.005026232, -0.007824849, 0.016255949, 0.006316275, -0.004039314, -6.560361E-4, -0.021500712, -0.003933573, -0.028648818, 0.0069683455, -0.0145640895, 3.4343865E-4, 0.02802847, -0.0127946865, -0.018243883, 0.043255202, -0.0058968347, -0.021796787, 0.0058792112, -0.0048676203, -0.016664814, -0.04187352, 0.006168237, 0.04379096, 0.038292415, -0.0012239545, -0.014211618, -0.006147089, -0.051488917, -0.012963872, -0.008832916, 0.023784723, 0.004761879, 0.009432116, -0.021190537, 0.023150275, -0.0062034843, 0.033019453, -0.0025342642, -0.0025853724, 0.009220634, 0.017115977, -0.003320274, 0.0043107164, -0.042634856, -0.008882262, 0.023122078, 0.013739307, 0.008247814, 0.0029360808, -0.0011138074, -0.021909578, 0.007345489, 4.9522135E-4, 0.043960147, 0.01203335, -0.011645632, -0.04993805, -0.033527013, -0.0063691456, 0.0062669287, 0.0026646785, -0.008748323, -0.022177456, -2.6655596E-4, -0.007986986, -0.016904494, -0.0025219277, -0.0038419305, -0.01251271, 0.043367993, -0.010278045, -0.01118742, 0.033160444, 0.0071093338, -0.021091847, 0.0011226191, 0.015015252, -0.005822816, -0.011335458, 0.0048676203, -0.030538062, -0.010588219, -0.01155399, 0.02718254, 0.010094761, 0.00402874, 0.004642039, -0.030735444, -0.02778879, 0.04559561, 0.01959737, -0.033104047, -0.013802752, 0.0016099099, -0.017877314, 0.022811903, 0.012110893, -0.010849048, -0.019822951, 0.0047301566, -0.018469464, -0.036882535, -0.016255949, 0.012167288, 0.0014539416, -0.0037608624, -0.0011481732, 0.20302312, 0.0019949842, 0.0060906936, 0.03344242, -0.0044904766, -0.0061647124, 0.03152498, 0.016467432, 0.0019103911, 0.005667729, -0.0072326986, 0.043170612, -0.015691996, 0.0047301566, 0.029607538, 0.0019315394, -0.0516863, -0.018497663, -0.0064290655, 0.008487495, -2.1225345E-4, 0.01346438, -0.024616553, -0.028536027, 0.02465885, 0.009530808, -0.0312712, -0.013647665, 0.0038313565, -4.1966043E-5, -0.014112926, -0.010743307, -0.015269031, 0.012731241, -0.0013675863, 0.0059215077, 0.012872229, -0.016171355, 6.2255136E-4, 0.027408121, -0.0102075515, -0.006323324, 0.027746493, -0.029071784, -0.017482547, -0.0066898935, -0.015353624, 0.0027668949, -0.02307978, 0.0013517251, -0.014719176, 0.009876229, 0.026971057, 0.034316547, -0.013978988, -0.03208893, 0.011497594, 0.004416458, 0.0036040128, 0.012012201, -0.01900522, 0.02031641, 0.0021606453, 0.0240526, -0.01875144, 0.029043585, -0.02237484, -0.029861318, 0.012414018, -0.013908493, -0.01971016, -0.013619468, -0.004701959, -0.0017632346, -0.024630653, -0.013337491, 0.011694978, 0.0092981765, 0.015424117, 0.020823969, -0.006094218, -0.011131025, 0.011490544, 0.010588219, 0.0019086289, -0.018695045, 0.005590185, -0.00949556, 0.011490544, 0.0021253983, -0.0037820106, 0.0017235817, 0.011384804, 0.017115977, 0.018511761, -0.00643259, -0.030932829, 0.01959737, -0.012597303, 0.0013640616, -0.046949096, 0.04615956, -0.019794755, -0.0031546126, -0.027563209, -0.01395079, -0.005424524, 0.034739513, 0.01817339, -0.0493177, 0.0037784858, -0.047005493, 0.015410019, -0.017905511, 0.0049134414, -0.0024073748, 0.0014680404, -0.0036903683, -0.013548973, 0.004233173, 0.02683007, -0.011850065, -0.0034894599, -0.018131092, 0.01983705, -0.010510676, -0.018469464, -3.4696335E-4, -0.008071579, -0.030340677, 0.006651122, 0.0012838745, 0.012611401, 0.002039043, -0.026604488, -0.006185861, -0.006481936, -3.110554E-4, 0.030763643, 0.0026964007, 0.009911476, 0.0075710705, -0.0076486142, -0.0033326105, 0.03476771, -0.028592423, 0.011899411, 2.991595E-4, -0.029663933, -0.00643259, -0.021486614, -0.009481462, -0.0030435845, 0.0030629702, 0.012237783, 0.012258931, -0.011335458, -0.044918865, -0.030481666, 0.0015041687, -0.031468585, -0.008001084, 9.525521E-4, 0.01539592, -0.027718294, -0.010228699, -0.17933708, 0.009439165, 0.01913211, -0.0049698367, 0.0036233987, 0.0042966176, 0.030397072, -0.0011569851, -0.036093, -0.0057875686, 0.037587475, 0.0033678575, -0.042127296, -0.011413001, 0.0070776115, -0.019470481, -0.026745476, 0.01504345, 0.0125338575, 0.014789671, 0.006496035, -0.037531078, 9.534332E-4, -0.0025095914, -0.028183557, 0.00937572, -0.006651122, 0.03268108, 0.004441131, -0.003235681, -0.0054033757, -0.050924964, 0.03437294, -0.015917577, 0.007867146, -0.017595338, -0.031102015, 0.013957839, -0.017665831, 0.03750288, 0.010193452, 0.010863147, 0.009664746, 0.0073807365, 0.014789671, 0.018948825, -0.005251813, -2.9211008E-4, 0.0053187828, -0.010813801, 0.018314376, -0.0079164915, 0.0024214736, -0.023418153, 0.004610317, -0.0023456924, -0.016566122, 0.012421067, 0.021345625, -0.03138399, -0.021909578, -0.009826883, 0.026068732, -0.009537857, -0.012977971, -0.03679794, -4.6129603E-4, 0.012195486, -0.027986173, 0.0018275606, -0.019273097, -0.0045997426, -0.0025818478, -0.005156646, 0.030650852, 0.0046455637, -0.0192449, 0.013147157, 0.0076909107, -0.003838406, -0.0017341558, 0.051065955, -0.0045151496, 0.0047759777, -0.026971057, -0.006362096, -0.016848098, 0.011984004, 0.004677286, -0.019273097, -0.011391853, -0.02718254, 0.004606792, -0.01467688, 0.0068590795, 0.004437606, 5.414831E-4, -0.013189454, -0.0026012338, 0.009107843, -0.0026347183, -0.0072080255, -0.023629636, 0.004278994, 0.04302962, 0.0046208906, 0.0075851693, 0.025532978, 3.740595E-4, 0.015480513, -0.0300587, 0.01539592, 0.01165973, 0.018060599, -8.9615677E-4, -0.003930048, -0.032906663, -0.03090463, 0.0044517047, 0.0014283875, 0.03930753, -0.016044466, -0.0030189115, 0.010919542, 0.017778622, -0.02537789, -0.08442378, -0.023248967, 0.024799839, 0.02441917, -0.014944757, 0.005484444, -0.010968888, 0.029156376, -0.003485935, 0.0420991, -0.010567071, -0.02141612, -0.009784587, 0.035529047, 0.025589373, 0.0078318985, 0.031440385, -0.0288744, -0.019343592, 0.017172372, -0.019526877, -0.03716451, -0.017722227, 0.013767505, -0.040548228, 0.009241781, -0.025518877, 0.0069683455, 0.011709076, 0.014345557, 0.0019333018, -0.014578188, -0.008191419, 0.0144372, -0.0062457807, 0.0075640213, -0.012315326, -0.01467688, 0.018723244, -0.030820038, 0.0082196165, 0.007408934, -4.9081544E-4, -0.02513821, -0.03152498, -0.024969025, -0.02427818, 0.036544163, -2.5642244E-4, -0.007444181, 0.013372738, -0.010644615, 0.0019297771, -0.014817868, 0.011490544, -0.014578188, 0.0013878534, -0.01601627, -0.020344608, 0.020513793, 0.020598387, 0.02622382, 0.0030753068, 0.014972955, 0.011652681, -0.027055651, -0.018850133, 0.029269166, 0.044552296, 0.007430082, -0.008325358, -0.014846066, 0.0023774148, 0.029607538, -0.03273748, 0.012667797, 0.0017570663, -0.022558125, 0.019865248, -0.0025571748, -0.02154301, -0.011709076, 0.02309388, -0.041958112, 0.026026435, 0.024729343, 0.019202603, -0.0043283403, 0.013929642, -0.06209124, 0.031694166, 0.009354572, 0.04883834, -0.0052694366, 0.017172372, -9.974921E-4, -0.004331865, -0.004786552, -0.0033801938, -0.004427032, -0.038687184, -0.006062496, -0.084310986, 0.028183557, 0.011497594, -0.028691115, -0.007761405, -0.0043142415, 0.03406277, -0.018441267, 0.0072608963, 0.01707368, -0.0011384804, 0.01010181, -0.014958857, -0.0018769065, -0.03222992, 0.0047231074, 0.014493595, -0.029974109, 0.020781672, 0.030622654, 0.01985115, 0.018610453, -0.008374704, 0.016425135, -0.004680811, -3.524707E-4, 0.014493595, 0.019089812, 0.0053223073, -0.0114271, 0.04136596, -0.009544906, -0.011109876, 0.040830206, -0.0060342983, -0.016255949, 0.02189548, 0.0048394226, -0.00853684, -0.036741544, -0.03860259, -0.011384804, 6.0801196E-4, -0.0010433133, -0.0075851693, 0.010588219, 0.026533993, -0.016523827, 0.017369756, 0.03826422, -0.0059250323, 0.0107221585, 0.008346506, -0.030227887, -7.838067E-4, -0.0076415646, 0.011053481, -0.0048006508, 0.012555006, 0.003001288, 0.06530577, 0.0072326986, -2.7713008E-4, -0.021712195, -0.012244832, -0.004966312, -0.032399107, 0.0037784858, -0.009432116, -0.02250173, -0.039025556, -0.0040604626, 0.0059567546, 0.027309429, -0.018342575, -0.0041908766, 0.0038983258, -0.018187487, -0.03691073, 0.011638583, 0.0124915615, -0.009220634, -0.013175354, 0.008445198, 0.021824986, 0.0015447028, -0.0038877518, 0.01504345, -0.0073102424, 0.013450282, -0.031440385, 0.011723176, -0.0032092456, -0.0067850607, 0.025208704, 0.033865385, 0.0019703112, -0.009953773, 0.04364997, -0.0068520303, -0.015353624, 0.0052764863, -0.010982987, -0.02671728, 0.003200434, 0.028211754, -0.0039159493, -0.010877246, 0.0070917103, 0.0064643123, 0.013697011, -0.023968007, 0.028409138, 0.03428835, -0.019258998, -0.006478411, -0.008402902, -0.01504345, -0.03259649, 0.017482547, 0.011250865, 0.011272013, -0.008374704, 0.021021351, -0.0012019251, -0.003753813, -0.002218803, -0.0025712736, -0.009192436, -0.02381292, 0.0010582933, -0.020372806, -0.0011710839, -0.0023368807, -0.017242866, -0.005748797, 0.0070881858, 0.0036128247, 0.018582255, 0.112452246, 0.02140202, -0.0022840102, -0.0013076663, -0.008106826, 0.020852165, 0.018272081, -0.021063648, -0.005724124, -0.04269125, -0.013069613, -0.010024266, -0.029015388, 0.0067145666, -0.031722363, 0.008579137, 0.018723244, 0.032906663, -0.0104190335, -0.029297365, 0.018018302, -0.013330442, 0.028719312, 0.0120615475, 3.6943334E-4, -0.0062352065, 0.037813056, 0.02296699, -0.0027651326, -0.036544163, 0.004733681, 0.017947808, -0.044975262, -0.009516709, -0.0048429472, -0.026787773, -0.017397953, -0.004494001, 0.047766827, -0.016904494, 0.020302312, -2.3064802E-4, -0.020189522, -0.014127025, 0.018821934, -0.018511761, -0.014253914, -0.030594457, -0.04847177 ], - "id" : "f28fe35c-76f1-4267-b896-227c581a486f", - "metadata" : { - "name" : "RoadRunner E-Speed Lowstep" - }, - "text" : "- Size: XS, S, M - RoadRunner alloy, 31.8mm, comfort sweep, 620mm width\n - Size: L - RoadRunner alloy, 31.8mm, comfort sweep, 660mm width\n- Grips: RoadRunner Satellite Elite, alloy lock-on\n- Stem:\n - Size: XS, S - RoadRunner alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length\n - Size: M, L - RoadRunner alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 105mm length\n- Headset: VP sealed cartridge, 1-1/8'', threaded\n- Brake: Shimano MT200 hydraulic disc\n- Brake rotor:\n - Size: XS, S, M, L - Shimano RT26, 6-bolt, 180mm\n - Size: XS, S, M, L - Shimano RT26, 6-bolt, 160mm\n\nAccessories\n- Battery: ThunderBolt PowerTube 500Wh\n- Charger: ThunderBolt compact 2A, 100-240V\n- Computer: ThunderBolt Purion\n- Motor: ThunderBolt Performance Line Sport, 65Nm, 28mph\n- Light:\n - Size: XS, S, M, L - ThunderBolt SOLO for e-bike, taillight\n - Size: XS, S, M, L - ThunderBolt MR8, 180 lumen, 60 lux, LED, headlight\n- Kickstand: Adjustable length rear mount alloy kickstand\n- Cargo rack: MIK-compatible alloy rear rack, maximum load 25 kg / 55 lbs\n- Fender:\n - Size: XS, S, M, L - RoadRunner wide\n - Size: XS, S, M, L - RoadRunner plastic\n\nWeight\n- Weight: M - 22.30 kg / 49.17 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| XS | 147 - 155 cm 4'10\" - 5'1\" | 69 - 73 cm 27\" - 29\" |\n| S | 155 - 165 cm 5'1\" - 5'5\" | 72 - 78 cm 28\" - 31\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\n\nSizing table\n| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm |\n|---------------------------|-------|-------|-------|-------|\n| Frame size letter | XS | S | M | L |\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 |\n| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° |" - }, - "ccc25d20-726b-4349-8163-c5d091c9486d" : { - "embedding" : [ 0.004948246, -0.0012404694, -0.033887986, -0.02626796, -0.015962524, 0.0021588937, -0.01273185, -0.0050777453, 0.003206818, -0.01709394, 0.020774454, -0.0060149133, -0.013290743, -0.0062773204, -0.022641974, 0.025736332, 0.0066112927, -0.0060660318, 0.001483281, -0.0043791295, 0.0127386665, -0.0014330148, -0.0020498415, -0.0029052203, 0.0060387687, -0.0061171497, 0.041439857, -2.9435588E-4, -0.008390208, -0.023923337, 0.017407466, 0.021483295, -0.018388936, -0.028026428, 0.0037486712, 0.009051337, 0.017666465, -0.0024434521, 0.03522388, 0.019547617, 0.019602142, 0.00500618, -0.018579777, 0.0039122496, -0.0163851, 0.01392461, 0.007769973, -0.004883496, -0.00935123, 0.02046093, -0.017993622, 0.039940387, -0.017911833, -0.0048732725, 0.0015488828, -0.027113117, -0.0076200264, -0.0038202368, 0.032224942, -0.009971465, -0.01001236, 0.007947183, -0.03159789, 0.015417262, -0.034678616, -0.02794464, 0.0021060717, -0.0076677366, 0.012486483, 0.016521417, 0.030807262, 0.02091077, 0.008840049, 0.009092231, 0.008383392, -0.007994893, -3.8743368E-4, -0.010918857, 0.016153365, 0.010673489, 0.03266115, -0.028544428, -0.015635367, -0.011866248, 0.018906934, -0.0057968087, -0.0072656064, 0.0015309914, 0.0050777453, -0.010802989, -0.008287971, 0.01530821, -0.0032051138, 0.0136928735, 0.014204056, -0.008955916, -0.0017158691, -0.0015608104, -0.017189361, -0.029444108, -0.0037657106, -4.1256682E-4, 0.0042121434, -0.019588511, -0.013283928, -0.013427058, -0.021278821, 0.009985097, -0.006393188, -0.0030926538, -0.017366571, 0.024182336, 0.0024264127, -4.2811527E-5, 0.010080517, -0.025531858, 0.04850099, 0.003990631, 0.019997457, -0.010025991, 0.018320778, 0.025872648, 0.024932072, -0.033124622, 0.008512892, 0.025341017, -0.00629436, -7.386586E-4, 0.005800217, 0.008151656, 0.032006837, -0.0042359983, 0.009487546, 0.02073356, -0.012622798, 0.035523772, 0.004181472, 0.010843883, -0.02990758, -0.026213435, 0.015430894, 0.016330576, -0.0036293953, 0.010734831, -0.02002472, -0.01780278, -0.023350814, 0.021251557, 0.012820455, -0.0108302515, 0.026813222, -0.017148467, 0.0398586, 0.019970194, 0.022055818, -5.9765746E-4, 0.015907997, 0.018620672, -0.028680742, 7.0074595E-5, -0.009180836, -0.009910123, 0.02500023, -0.024359547, 0.04593826, 0.027085854, 0.013563374, -0.0017857306, 0.0048391935, -0.011736749, -0.02172866, 0.022246659, -0.033806197, -0.013052192, 0.015471788, 0.03852271, 0.0015616623, 5.725243E-4, -0.0023480314, -1.482429E-4, -0.0011254533, -0.0061784917, 0.0063318466, 0.012029827, -0.009248994, 0.0027535693, 0.014885632, -0.014967422, 0.0064749774, 0.005677533, 0.023378076, 0.010530358, -0.006025137, 0.010557621, -0.60894775, -0.040294807, -0.015021948, -0.017407466, -0.0033107582, 0.022123976, 0.007401922, 0.010734831, -0.01939767, -0.010673489, -0.021824082, 0.013195323, 0.003119917, -0.0049550617, 0.004304156, -0.0065976614, 0.0092081, -0.022355711, 0.0036396189, -0.020365508, -0.02581812, -0.002709267, -0.019247722, 0.014054109, -0.008022157, 0.009337599, 0.011873064, -0.025831752, -0.011341434, 5.4526125E-4, -0.024468599, 0.049727827, 6.1341893E-4, 0.011559539, 0.038849864, -0.041876066, -0.0067987265, 0.0093921255, 0.004736957, 0.022860078, -0.02464581, -0.0058377036, -0.01575805, -0.030725472, -0.011470933, 0.0076132105, 0.04460237, -0.030016633, 0.017243888, -0.032197677, 0.0064749774, 0.0020498415, 0.024127811, -0.005432165, -0.013467954, -0.024005128, 0.017598307, -0.009569335, 0.024400441, 0.0056673093, 0.011177856, 0.039204285, -0.018961461, -0.012172958, 0.0032187453, 0.00925581, -0.051200032, -0.03336999, 0.012336536, 0.012063906, 0.0092353625, 0.0019936115, -0.02261471, 0.021878608, 0.032688413, 0.02813548, 0.030452842, -0.023868812, -0.0017499479, 0.027712904, 0.008431102, 0.008410655, -0.013331638, -0.027903745, 0.042503115, -0.010959751, -0.008983179, -0.0063011753, 0.009480731, -0.008465181, 0.03407883, -0.006256873, 0.0044472874, -0.0020498415, 0.006430675, 0.02733122, 0.0046790233, 0.011191487, 0.00634207, -0.016303312, -0.02375976, 0.0039190655, 0.0074973423, -0.003377212, 0.022301186, 0.016166996, -0.012868166, 9.0308895E-4, 0.021605978, -0.018089043, -0.018129937, -0.007504158, -0.026281593, 0.0029597464, -0.018348042, -0.037786607, 0.01717573, 0.008035788, 0.023841549, -0.0028847728, 0.0024860506, -0.0066555953, 0.028271796, 0.012622798, -0.014885632, 0.010980199, 0.037105028, -0.006641964, -0.009916939, -0.010530358, 0.025790857, 0.017966358, 0.038659025, 0.0033226858, 0.02652696, 0.011096067, 0.030943576, 0.010952936, 0.003377212, -0.018797882, -0.040812805, -2.932909E-4, 0.0017380203, -0.0178982, -0.012404694, -0.015594472, -0.02644517, -2.98456E-5, 0.017761886, 0.00698616, -0.036723346, -0.012179773, -0.023609813, 1.6741225E-4, 0.010087334, -0.021660503, -0.039558705, -0.022178503, -0.012288826, -0.018170832, 0.01001236, 0.015321841, -0.007136107, -0.0069793444, -8.9542125E-4, 0.021633241, 0.011130146, 0.03658703, 0.0012464331, -0.036259875, -0.014994685, 0.013611084, -0.018048149, 0.015430894, -0.0094602825, -0.0013435578, -0.023350814, -3.755061E-4, 0.012704588, -0.018388936, 0.0018487765, 0.015621735, -0.06521325, 0.008206182, 0.011218751, 0.0026581488, 0.002264538, 0.018320778, -0.018620672, 0.0049209828, -0.01913867, 0.008028972, -0.004423432, 0.007102028, 0.005357192, -0.012977218, 0.026404276, 0.0026530367, 6.671996E-5, 0.028053692, 0.035087563, -0.014585739, 0.03595998, -0.016521417, 0.011198304, -0.029444108, 0.036014505, -0.012977218, 0.010387227, 0.015389999, 0.0052549555, -0.031270735, -0.002295209, 0.0106394105, -0.010148675, 0.0033567646, 0.012261563, 0.03124347, -0.010025991, -0.015826209, -0.014912896, -9.90842E-4, 0.024168706, -0.0015659222, -0.015117369, 0.012336536, 0.015403631, 0.034242406, 8.7412196E-4, -0.027576588, -0.011600434, 0.0057695457, 0.0135020325, -0.015730787, 0.009507993, 0.00849926, 0.0332882, -0.021974029, 0.05079109, -0.007681368, 0.028544428, 0.023364445, 0.024877544, -0.01299085, 0.021483295, 0.010121413, 0.032524835, 0.015553578, 0.057197906, 0.0082470765, -0.0018947829, 0.014422161, -0.0035407904, 0.02688138, 0.013413427, 0.0038031973, 0.007040686, 0.040376596, -0.0033397253, 0.006495425, 0.013679242, 0.015076474, 0.025259228, 0.020338245, 0.02990758, -0.0109870145, -0.017053045, -0.022560185, -0.0021418545, -0.04441153, -1.16507E-4, -1.7933984E-4, 0.0053128893, -0.002768905, 0.008553786, 0.0047301413, 0.03525114, 0.007333764, 0.0072451592, 0.026186172, -0.008649207, -0.015321841, 0.012322905, 0.034596827, -0.0066215163, 0.002886477, 0.0086287595, -0.0053197052, 0.006420451, 0.020828981, 0.004859641, 0.019643037, 0.015349105, 0.0015045803, -0.01709394, -0.0011228974, 0.0069691204, -0.017489254, -0.016221523, -0.013011297, -0.0073269485, 0.0036805135, 0.0063625174, -0.01107562, 0.032961044, -0.0053674155, 0.015321841, -0.019356774, 0.017298413, -0.017162098, 0.004798299, -0.043266483, -0.012418325, -0.0129295075, -0.010550805, 0.0041235383, 0.0038577234, -0.027562957, 0.035823666, -0.040294807, -0.03061642, -0.017911833, -0.010530358, -0.010503095, 0.016112471, 0.013938241, -8.9797715E-4, 3.867947E-4, -0.009644309, 0.014354003, -0.013358901, -0.010148675, 0.002682004, 0.028980637, -0.02644517, 0.0025951029, -0.00832205, -0.010966567, -0.022423869, -0.02136061, -0.0050777453, -0.03366988, 0.011709485, 0.011777643, -0.024959335, 0.013897346, -0.0040860516, 0.015608104, 0.02517744, -0.01125283, 2.8487771E-5, 0.002211716, 0.018852409, -0.024536757, 0.007654105, 0.016712258, 0.011866248, -0.0135361105, -0.03568735, 0.012118432, 0.010025991, -0.017720992, 0.0405947, 0.0136928735, -0.0022935052, 0.012575088, 0.021047086, 0.0050811535, 0.015008316, 3.8487779E-4, -0.011709485, 0.0036805135, 0.008567418, -0.019588511, 0.015962524, -0.0072519747, -0.027372116, 0.0075518684, -0.008308418, -0.003908842, 0.0018300331, -0.0065022404, -0.011518644, -0.02731759, 0.020515455, -0.03018021, 0.013140797, 0.028762532, 0.0018402567, -0.023800654, -0.03116168, -2.0596392E-4, 0.017025784, -0.028626217, -0.026567856, -0.015771681, -0.01086433, 0.04602005, -0.0065908455, 9.116087E-4, 0.04173975, -0.0466471, 0.014708423, -0.0035373825, -0.01744836, 0.012404694, -0.010005544, -1.8391918E-4, 0.0017891385, 0.01530821, 0.027222168, 3.1267325E-4, 0.014231319, 0.0055207703, 0.005384455, -0.019070514, 0.010802989, -0.020324614, -3.348245E-4, -0.019711195, 0.01682131, 0.0067442004, -1.338659E-4, -0.026772328, -0.0037180001, -0.03871355, 0.0028132075, 0.03097084, 0.010700752, 0.004341643, 0.00576273, -0.017993622, -0.018170832, -0.028517164, -0.010843883, 0.006018321, -0.010148675, -0.0013486696, -0.017216625, 0.0050470745, 0.008962732, 0.0066555953, 0.0146811595, -0.014013214, 0.0082470765, -0.045338474, 0.035523772, 0.0031267325, -0.012561456, 0.027399378, -0.0048800884, -0.017025784, 8.7667786E-4, 0.016085207, -0.0010164011, 0.035414718, -0.005851335, 0.01780278, -0.024468599, -0.035278402, -0.03053463, 0.01887967, 0.016494153, -0.025354648, -0.03018021, -0.010073702, 0.0040792357, 0.010080517, -0.013985951, -0.022628343, -0.028680742, 0.004273485, -0.012568272, 0.029607687, -0.017720992, 0.013788294, 0.0043450505, -0.016671363, -0.033042833, -0.011041541, -0.023896076, -0.015021948, 0.0050607063, 0.035360195, 0.02277829, 0.003980407, 0.0150628425, 0.021278821, 0.007858578, -0.0131203495, -0.022587448, 0.0072996854, -0.051309086, -0.008356129, 0.04253038, 0.007715447, -0.004569971, -0.039122496, -0.007988078, 0.016003419, -0.01947946, 0.0020447297, -0.009051337, -0.04727415, 0.0044711423, -0.0076404735, 0.0027194906, -4.5878623E-4, -0.031025367, -0.006962305, 0.043266483, 0.008219814, 0.005350376, 0.014708423, -0.014013214, -0.022846447, 0.04315743, -0.016357837, 0.016671363, -0.0064102276, -0.018988723, -0.014708423, -0.032988306, 0.02314634, -0.04225775, 0.029144214, 0.00779042, -0.015635367, -0.010598516, 0.009480731, 0.018825145, -0.019629406, 0.013985951, -0.019424932, -0.016753152, -0.011130146, -0.018838776, -0.047028784, -0.0062159784, 0.002295209, 0.005364008, 0.022478396, -0.01228201, -0.017162098, 0.030262, -0.0013844525, 0.019438565, -0.011729933, 0.01187988, 0.022205764, -0.021074347, 0.0021895648, -0.023350814, 0.015458157, 0.017121203, 0.022682868, 0.0315161, -0.016848573, -0.028162744, -0.0052481396, 0.007858578, 1.3833874E-4, -0.01170267, 0.0061784917, 0.015158263, 0.0062227943, -2.4941444E-4, -5.0905254E-4, -0.0098760445, 0.0011399369, -0.0015846655, 4.1725265E-4, 7.710335E-4, -0.012220668, -3.49308E-4, 0.02908969, -0.033860724, 0.018484358, 0.014831106, 0.0025184255, -9.814702E-4, -0.015253684, -0.025886279, 2.8711415E-4, -0.032988306, 0.04629268, -0.034296934, 0.016589575, 0.01290906, 0.008492445, -0.030398315, -0.013985951, 0.002300321, 0.025531858, -0.014817474, -0.0066555953, 0.0040928675, -0.021415137, -0.011552723, -0.027467536, -0.014026846, -0.018007252, -0.0053128893, -0.025109282, -0.0076609207, -0.00616486, -0.013931425, -0.03497851, -0.012772745, -0.029144214, -0.026486065, -0.001601705, 0.004191696, -0.03685966, -0.008185735, -0.03647798, 0.025027491, 0.035005774, 0.013488401, -0.014135898, -0.0041167224, 0.0017431321, -0.018975092, 0.0037861578, -0.0037623027, 0.0043927613, -0.018825145, 0.018525252, 0.009637493, -0.0021742294, -0.0076949997, -0.006434083, -0.009167205, -0.029444108, 0.013181691, -0.006195531, -0.01086433, -0.015608104, -0.011007462, -0.010196386, 0.0013725249, -0.0064783855, -0.033151884, 0.011886695, 0.010939304, 0.0056059672, -2.7731646E-4, -0.015730787, 0.012834087, -0.01807541, -0.006287544, 0.0010675193, -0.01984751, 0.014204056, 0.012840902, 0.013945057, -0.023078183, 0.014367634, -0.06106926, -0.025082018, -0.019234091, 0.0363144, -0.023514392, 0.0072519747, 0.031734206, -0.006253465, -0.01018957, 0.037623025, -0.00880597, -0.03486946, 0.013651979, -0.01637147, -0.014722054, -0.014790212, 0.0038031973, 0.040076703, 0.015880734, -0.015907997, -0.0046790233, 0.0023991496, -0.040867332, 0.009385309, -0.002850694, 0.01583984, 0.009160389, 0.013508848, -0.030125685, 0.009289889, 0.017870938, 0.02767201, -0.022996394, -0.012145694, 0.00645453, 0.017080309, 0.0064170435, 0.006338662, -0.04228501, -0.014122266, 0.005326521, 0.029444108, 0.006093295, -0.0023599588, 0.0109870145, -0.011777643, 0.003314166, -0.0090104425, 0.040649228, 0.010857515, 1.5082544E-5, -0.04004944, -0.0030381277, 0.008308418, -0.006311399, 0.008328866, 0.015785314, 0.0027297141, 0.0030653907, 0.005960387, -0.008451549, -0.017993622, -0.0071156593, -0.004484774, 0.017925464, -0.004045157, -0.018525252, 0.050518457, 0.0066181086, -0.017066678, -0.0086628385, 0.016085207, -0.032361258, -0.0052822186, 0.0054083103, -0.0357964, -0.0115936175, -0.011177856, 0.006144413, 0.001862408, 0.006307991, -0.0097738085, -0.012070721, -0.007129291, 0.029825792, 0.017530149, -0.02599533, -0.020351877, 0.020256456, -0.014667528, 0.009167205, -0.0059229005, -0.012847719, -0.042884797, 0.017571045, 6.457938E-4, 0.0039122496, -0.00943302, 0.019874774, -0.008969548, 0.006686266, 0.012295642, 0.19749363, -0.0050607063, 0.004535892, 0.015280947, 0.016862204, -0.0011510125, 0.00389521, -0.0044915895, -0.012656877, -0.004280301, 0.019356774, 0.023255393, -0.005411718, 0.007708631, 0.033070095, -0.018048149, -0.06488609, -0.01575805, -0.0048119305, 0.0014764653, 0.014190424, 0.020011088, -0.015267315, -0.019697564, 0.012840902, 0.002177637, -0.013583821, -0.01761194, 0.019602142, 0.014476687, -0.0029887133, -0.019152302, 0.0064238594, 0.011627696, -0.026581487, -0.0069248183, 0.0021912686, 0.012752298, 0.009317152, 0.010359964, 0.018634304, -0.019288618, 0.03854997, -0.021496926, 0.0075518684, -0.032906517, -0.022819184, -3.9270526E-5, -0.016916731, -0.0053060735, -0.032115888, 0.004835786, 0.03969502, 0.033260938, 0.013910978, -0.013597453, 0.014967422, -0.017039414, -0.0019953155, 0.0052788104, -0.030589158, 0.04610184, 0.015907997, 0.021060716, -0.0217014, 0.0062364256, -0.01575805, -0.034269672, 0.017012151, -0.0064647538, -0.016848573, 0.004341643, 0.0075723156, 0.0064374907, -0.025654543, -0.02091077, 0.022860078, 1.2619817E-4, 0.028244533, -0.007456448, 0.010264543, -0.017516518, -5.784881E-4, 0.011505012, -0.0024979783, -0.027876481, 0.015389999, -6.485627E-5, 0.007981262, -5.580408E-5, 0.0092694415, 0.011838986, -0.006120558, -0.005933124, -0.011266461, -0.010039623, -0.026554223, 0.029498635, -0.017734623, 0.004416616, -0.02767201, 0.058888216, -0.006001282, -0.0046994705, -0.03238852, -0.0028336546, -0.0018879671, 0.021905871, 0.010905225, -0.027126748, 0.0076132105, -0.048637304, 0.008151656, -0.021306084, -5.0777453E-4, -0.0019237499, 0.0030517592, -0.002037914, -0.01778915, -0.005752506, 0.01950672, -0.014844738, -0.0032357848, -0.00867647, 0.016562311, -0.022587448, -0.008512892, 0.006580622, 0.010653042, -0.022832815, 0.007013423, -0.010114596, 0.017639201, -0.005149311, -0.024550388, 0.01352248, 0.0063829646, 0.010087334, 0.011539091, 0.012520562, 0.0058070323, 0.02474123, -6.98616E-4, -0.0029001085, 0.0059535713, -0.022682868, -0.021646872, -0.012070721, -0.013529295, -0.00809713, -0.014940158, -0.0022253476, 0.012534194, 0.0031914823, 0.0135701895, 0.025586385, -0.018388936, -0.044793215, -0.01303856, 0.015499052, -0.035278402, -0.014449423, 0.01593526, -0.012956771, -0.029062426, -0.0032443046, -0.17295687, -0.0037895658, 0.04422069, 0.0063045835, -0.001222578, 0.0102236485, 0.02564091, 0.012561456, -0.019724825, 0.0024775309, 0.039367862, 0.002763793, -0.044166163, -0.024754861, 0.008826417, -0.002763793, 0.009092231, 0.0076404735, 0.016166996, 0.016766785, -0.015594472, -0.020011088, 0.008328866, 0.0027280103, -0.014122266, 0.01485837, 0.019111408, 0.04024028, 0.032279465, 0.01807541, -0.02171503, -0.032252204, 0.032115888, -0.0033124622, -0.0064102276, -0.0062159784, -0.013372532, 0.01859341, -0.012070721, 0.027917378, -0.008063051, 0.016753152, 0.012874981, 0.007020239, 0.009794256, 0.02010651, -0.008649207, 0.009058152, 0.00629436, 0.0117503805, 0.035850927, -0.016957626, 0.007953999, -0.006601069, 0.017121203, -0.001718425, -0.00692141, 0.0065840296, 0.02955316, -0.010196386, -0.023637075, -0.02733122, 0.023677971, -0.02155145, 0.010782542, -0.023391709, -7.0841366E-4, 0.028544428, -0.02554549, 0.0042598536, -0.004569971, -0.0072928695, -0.0032255612, 0.011709485, 0.022805553, 0.00349308, -0.015403631, 0.006553359, 0.008553786, -0.013011297, -0.0069588968, 0.03034379, 4.3493105E-4, 0.008069866, -0.025395544, -0.023950601, 0.0011101179, 0.002935891, -0.007190633, -0.024400441, 0.029198742, -0.026199805, -0.0047948915, 0.012609167, 0.031761467, 0.002329288, -0.0048869043, -0.009180836, 0.01947946, 0.0021316307, 0.014422161, -0.013365717, -0.038413655, 0.017407466, 0.038849864, 0.014503949, 0.02385518, 0.017475624, 0.0045529315, 0.03729587, -0.0144903185, 0.020842612, 0.017720992, 0.012847719, 0.009283073, 0.034378722, -0.036968715, -0.015948892, 0.009889676, 0.0034487776, 0.021142505, -0.006018321, -0.014313108, -5.580408E-4, -0.004856233, -0.027617482, -0.081734665, -0.010912041, 0.010469017, 0.030834524, -0.0037452632, -0.0011186375, 0.0047608125, 0.020665402, -0.0013657091, 0.02403239, -0.0436209, 0.0020259863, 0.004181472, 0.013515663, 0.017230256, -0.0053605996, 0.0029375951, -0.015730787, -0.0272358, 0.026799591, -0.015008316, -0.028080955, -0.014749317, 0.01192759, -0.007088396, -0.011382329, 0.0036600663, 0.017816411, 0.023391709, -0.0150628425, -0.003874763, -0.027440272, 0.0075655, 0.002128223, -0.025763595, -0.020392772, -0.009766992, -0.023746127, 0.01931588, -0.033233672, 0.021605978, 0.0086628385, -3.0734844E-4, -0.022982763, -0.016439628, -0.022464763, -0.011130146, 0.021456031, -0.02589991, -0.010346333, -0.014572107, -0.01797999, -0.0050879694, -0.00680895, 0.026895013, -0.0056059672, 0.0032851992, 0.0056025595, -0.008792338, 0.0030670946, 1.068957E-5, 0.010135043, -0.017202992, 0.0211834, 0.02073356, 5.1629427E-4, -0.0021486701, 0.0090445215, 0.038059235, -0.0043927613, -0.006723753, 0.006001282, -0.01654868, 0.043593638, -0.036205348, 0.0038577234, 0.0049209828, -0.012145694, 0.018770618, -0.015648998, -0.011382329, -0.011654959, 0.004951654, -0.033506304, 0.012643246, 0.04389353, 0.008894575, -0.013488401, 0.0073405798, -0.031461574, 0.006393188, 0.017121203, 0.046538047, -0.0031233246, -0.0069180024, -0.022301186, 0.023541655, 0.0058547426, -0.021510556, -0.026486065, -0.045065843, -0.0039667757, -0.07148375, 0.03364262, 0.0024826427, 0.0018351449, -0.010721199, -0.007361027, 0.013624716, -0.011743564, 0.021224294, 0.0075859474, -0.00716337, 0.003551014, 0.0012575088, -0.0021640055, -0.015321841, 0.0024673073, 0.01187988, 0.0010947824, 0.018388936, 0.037350398, 0.01823899, -9.686907E-4, -0.012997665, 0.01530821, -0.021824082, 0.0014398305, -0.013004481, 8.4930834E-5, 0.007415553, -0.01548542, 0.03942239, 0.0036293953, 0.013720136, 0.033424515, -0.0106053315, 0.005122048, -0.012670509, 0.008928653, -0.01743473, -0.020324614, -0.028217271, -0.009180836, -1.16932984E-4, -0.022123976, -1.8700758E-4, 0.022314817, 0.009569335, -4.6134213E-4, 0.012779561, 0.025095649, 0.0064170435, 0.014476687, 0.003113101, -0.018756988, 0.004563155, -0.007879025, -0.018361673, -0.014667528, 0.01698489, -0.0054151258, 0.04681068, -0.0059876502, -0.0094262045, -0.02037914, 0.0056230067, -0.016957626, -0.011355066, -0.0075314213, 0.010284991, -0.017243888, -0.028162744, 6.1086303E-4, -0.007708631, 0.028408112, 0.0066555953, 0.006587438, 0.008996811, 0.008915022, -0.03737766, 0.01352248, 0.016889468, 0.0016195964, -0.00424963, 0.017461993, 0.018375305, -0.010973383, -0.014872001, -0.0017431321, -0.0016374878, 0.0178982, -0.047355942, 0.022805553, -0.013904163, 0.0125819035, 0.0042666695, 0.012111615, -0.02332355, -0.020420033, 0.043920796, 0.017571045, -0.010284991, 0.0015625143, 0.0046960628, -0.0030670946, 0.0023190642, 0.013297559, -0.009685203, -0.0064988327, 0.007122475, 0.014285845, -0.010271359, -0.017121203, -0.0019697563, 0.011770828, -0.016766785, -4.3833893E-4, -0.0076609207, -0.007994893, -0.03729587, 0.030043896, 0.026745064, 0.0041848803, -0.007013423, 0.004883496, 0.020624507, -0.01566263, 0.008328866, -0.0046142736, 0.008144841, -0.007688184, -0.013481584, -0.00841747, -0.006928226, -0.017407466, -0.028735269, 0.0049652853, -0.005725243, 0.02234208, 0.009957834, 0.1016367, 0.0106394105, -0.013065823, -0.009248994, 0.005732059, 0.0144903185, 0.0052822186, -0.00840384, -0.0067373845, -0.044738688, -0.012472851, 0.006120558, -0.03366988, -0.0054866914, -0.0077290786, 0.016521417, 0.014176792, 0.020488191, -0.011266461, 0.003523751, 0.022110345, -0.013583821, 0.0043518664, -0.014163162, -0.020897139, 0.026717803, 0.037541237, 0.020638138, 0.002387222, -0.020011088, 0.010612147, 0.012397878, -0.013788294, -0.011695854, 0.0018112898, 0.0012217261, -0.038495444, 0.016316943, 0.026908644, -0.02037914, 0.008376576, 0.020270087, -0.013222585, -0.010005544, 0.0024230047, -0.030398315, 0.003844092, -0.028680742, -0.05553486 ], - "id" : "ccc25d20-726b-4349-8163-c5d091c9486d", - "metadata" : { - "name" : "Enduro X Pro" - }, - "text" : "| D - Seat tube angle | 76° | 76° | 76° | 76° |\n| E - Chainstay length | 435mm | 435mm | 435mm | 435mm |\n| F - Head tube length | 100mm | 110mm | 120mm | 130mm |\n| G - BB drop | 20mm | 20mm | 20mm | 20mm |\n| H - Wheelbase | 1155mm | 1180mm | 1205mm | 1230mm |\n| I - Standover height | 780mm | 800mm | 820mm | 840mm |\n| J - Reach | 425mm | 450mm | 475mm | 500mm |\n| K - Stack | 610mm | 620mm | 630mm | 640mm |\ntags: [bicycle]" - }, - "45cd7641-fa06-4dfa-8bff-6193348c03da" : { - "embedding" : [ 0.025596494, -0.006664176, -0.042628698, -0.010127069, 0.01745904, 0.008667559, -0.011662308, -0.025031967, -0.006581562, -0.023324616, 0.0058518075, -0.0028811547, -0.012688096, -0.012818901, -0.001184991, 0.012268142, 0.016219834, -0.016577827, 0.015435003, -0.010953207, -0.0064851795, -0.002855338, -0.00985169, -0.010836171, -0.017128585, -0.02366884, 0.041086573, -0.004006767, 0.0017968491, -0.013025435, 0.01705974, 0.008089263, -0.020075142, -0.016192295, -0.010457524, 0.0061822627, 0.024274675, 0.011297431, 0.03183383, 0.014264641, 0.015903147, 0.010519485, -0.011793113, 0.0061306288, 7.882729E-4, 0.007077245, 0.011600348, 0.01984107, 0.0076486566, -8.605599E-4, -0.008646906, 0.036129747, -0.014443638, 7.585836E-4, -0.0014715574, -0.028611897, -0.0047365217, 0.011882612, 0.05603966, 0.02446744, -0.0041754367, 0.022649936, -0.045272335, -9.2252024E-4, -0.021121582, -0.017417733, -0.014471176, 0.015545155, 0.0029981907, 0.024646437, 0.033238266, 0.024081908, 0.009080628, 0.0082269525, -0.014801631, -0.013830919, -0.0024801337, -0.0073595084, 0.022539785, -0.0013674297, 0.020446904, 0.004020536, -0.002282205, 0.00912882, 0.030374324, 0.009314701, -0.01349358, 0.01573792, -0.0025747954, 0.007018727, 0.022801396, 0.019290311, 0.010491947, 0.021231735, -0.008220068, 0.004468027, -0.02169988, 0.0016832552, -0.021355655, -0.014195796, 0.020212831, -2.297695E-4, -0.010175261, -0.019056238, -0.029520648, -0.0056831376, -0.02512835, 0.015421234, 0.004853558, -0.0023303963, -0.020143988, 0.032742582, 0.007985996, -0.009163242, 0.034752853, -0.029851103, 0.05108284, 0.020942586, 0.01693582, -0.026918314, 0.019469308, 0.01111155, 0.0040102093, -0.011951456, 0.012846438, 0.0054800455, -0.018670708, -0.017224967, 0.025830567, 9.6726936E-4, 0.015187162, -0.011228586, 0.01493932, 0.035055768, -0.012013417, 0.011772459, -0.016715515, 0.022897778, -0.025720416, -0.027014697, 0.010140838, 0.008412834, -0.013025435, -6.1831233E-4, -0.020116448, -0.0035196901, -0.0027176482, -3.9542728E-4, -0.0062511074, -0.009679578, 0.018023567, -0.015118317, 0.013713883, 0.030401861, 0.010237221, 0.006034246, 0.008591831, 0.030016331, -0.01189638, 0.0070910137, 0.02116289, 0.007063476, 0.008275144, 0.0027245327, 0.03714865, 0.021052739, 0.0016436694, 0.008343989, -0.019083777, -0.0147327855, -0.01666044, -0.006350932, -0.03940676, 0.022140486, 0.0069739777, 0.002411289, 0.0063647013, 0.005035997, -0.005073861, -0.006505833, 0.03395425, -0.008894747, 0.013610615, 0.020873742, 0.01785834, 0.0054352963, 0.016426368, -0.006953324, 0.008447256, -0.0072424724, 0.024494978, 0.022264406, 0.0020498538, -0.0012022022, -0.5957002, -0.043950517, -0.01639883, -0.019276543, -4.122082E-4, 0.034174554, 0.008550524, 0.0011789671, -0.0056074085, 0.012040954, -0.0153248515, -0.0015137249, 0.005975728, -0.019414231, -0.02830898, -0.03290781, 0.016040837, -0.012791363, -0.0056074085, -0.029465571, -0.023503613, -0.009603849, -0.005356125, 0.009039322, 0.013197547, 0.0057795206, -0.009824152, -0.014595096, -0.012825785, 0.02048821, -0.03252228, 0.0410315, 0.0014087366, -0.006664176, 0.038250167, -0.05793978, 0.0074490067, 0.031035233, 0.036680505, 0.009204549, -0.0071736276, -0.009417968, 0.011242355, -0.028281441, -0.009968726, 0.012529752, 0.036680505, -0.0021875433, 0.024095679, -0.033651337, -0.006474853, -0.004984363, 0.005758867, -0.00654714, 0.017307581, -0.015916916, 0.042380854, -0.025472574, -0.0040274207, 0.014113183, 0.0046091587, 0.022691244, -0.0070565916, -0.017156122, -0.024398595, 0.025210964, -0.04362006, -0.031641066, 0.028419131, 0.0012822343, 0.020199062, 0.02618856, 0.0020911605, 0.03433978, 0.010127069, 0.038856003, 0.051881436, 0.013087396, -0.014347255, 0.014250873, 0.024756588, 0.0094730435, -0.01045064, -0.030649703, 0.03334842, 0.009073744, 0.008598715, 0.0010146002, 0.023737686, 0.009693347, 0.006702041, 0.004991248, -0.0064817374, -0.009356008, 0.0029052503, 0.042435933, 0.012343871, 0.011228586, 0.013913533, -0.03585437, -0.020667206, 0.0056555998, 0.02154842, 0.015159624, 0.038828462, -0.008399065, 0.0077312705, -0.045024496, 0.006636638, -0.021906413, -0.0016505539, -0.036432665, -0.035771754, 0.0078069996, -0.007428353, -0.013390313, 0.0040549585, 0.022154255, 0.021975258, -0.046346314, 0.015200931, -0.011861958, 0.040287975, 0.003889731, -0.013796497, 0.001406155, 0.027413998, 0.010533254, -0.005070419, -0.012343871, 0.041609794, 0.0097690765, 0.043730214, -0.009101282, 0.016550288, 0.011889496, 0.00919078, 7.749342E-4, 0.009170126, -0.016054606, -0.03241213, 0.00965204, -0.003318319, -0.047943514, -0.011978994, -0.014085645, -0.0138033815, -0.015930686, -0.0046745613, -0.0023166274, 0.005817385, -0.009617617, -0.011958341, -0.006072111, -0.0011359392, -0.022705013, -0.02790968, -0.04353745, -0.024040602, -0.022980392, 0.024797894, 0.0011608953, 0.008316451, 0.0019121642, 0.003013681, 0.009376661, 0.009094398, 0.01678436, -0.019290311, -0.037726946, 8.3818537E-4, 0.022842703, -0.008233838, 0.030622164, -9.853411E-4, 0.0053733364, -0.028198827, 0.0011531503, 0.0031823507, -0.024660205, 0.0044301627, 0.042491008, -0.05419462, 0.0075178514, 0.017541654, 0.0068156347, 0.028639434, 0.012708749, -0.019854838, 0.023076775, -0.010726019, 0.0049361717, 0.0048466735, 0.009775961, -0.011676077, -0.01275694, 0.03172368, 0.010065109, 1.3184047E-5, 0.023297079, 0.018684477, -0.009548773, 0.0110358205, -0.021520883, 0.013700114, -0.01904247, 0.015710382, -0.011331853, 0.028887276, 0.0046745613, 0.018973624, -0.032632433, -0.02645017, 0.006099649, -0.0140787605, 0.018932318, -0.0078896135, 0.05617735, -5.1160285E-4, -0.03183383, -0.018891012, 0.021878876, 0.014374793, -0.02618856, -0.0039275954, 0.006619427, 0.0057623093, 0.03990244, 0.008557408, -0.026615398, -0.0060927644, 0.021631034, 0.015283545, -0.023655072, 0.012963475, 0.020804897, 0.015779227, -0.019056238, 0.04507957, -0.0043165684, 0.01705974, 0.017514115, 0.024646437, -0.005029112, 0.023076775, 0.018794628, 0.031227998, 0.015586461, 0.022333251, 0.03359626, -0.012020301, 0.017045971, -4.2855885E-4, -0.008646906, 0.009886112, -0.0031565337, 0.015311082, 0.017293813, -0.003807117, 5.120332E-4, 0.0066572917, 0.016013298, 0.030181557, 0.003314877, 0.0052012242, 6.918902E-4, -0.013142471, -0.010650289, 0.0012056445, -0.026532784, 0.009810383, -0.0041754367, 0.009562542, -0.0046022744, 0.031696144, 0.006227012, 0.014023685, -0.01269498, 0.0147327855, 0.040535815, -0.009108166, -0.051964052, 0.003834655, 0.03769941, -0.018946087, -0.009831036, -8.2269526E-4, -7.293245E-4, 0.004943056, 0.03904877, 0.014636403, 0.026367556, 0.004839789, 0.010553907, -0.0202266, -0.0072149346, 0.040177822, -0.025734184, -5.717345E-5, -0.020088911, -0.009707116, 8.562571E-4, 8.063447E-4, -0.021273041, 0.040921345, -6.785515E-4, -0.0023166274, -0.031172922, 0.02393045, -0.009011784, 0.006664176, -0.03293535, -0.01375519, -0.034312245, 0.0049292874, 0.002800262, 0.006271761, -0.038140018, 0.014209566, -0.014581327, -0.0022942529, -0.010898131, -0.013410966, -0.007683079, 0.052487273, 0.019166391, -0.010264759, 0.002499066, -0.017073508, -0.018326484, -0.018849704, -0.018698245, 0.01853302, 0.018698245, 0.0033716739, 0.017128585, -0.0150494715, 0.0038518661, -0.008385296, -0.025844336, 0.012860208, -0.03557899, 0.011490196, 0.0061099753, -0.026560321, -9.491976E-4, 0.01639883, -0.005710676, 0.014305948, 0.0064851795, 0.021520883, -0.0010180424, 0.004182321, -0.016109683, -0.009417968, -0.016632902, 0.0039826715, -0.01853302, -0.034697775, 0.008860325, -0.009177011, -0.013576194, 0.01573792, 0.014347255, -0.012343871, 0.008619368, 0.0011522897, 0.0035661603, -0.009404199, -0.0013665692, -0.00479504, 0.002196149, 0.0059722858, -0.04194025, 0.018546788, 0.01467771, -0.0038862887, 0.0013837804, -0.0043991823, 0.019551922, -0.010925669, -0.01773442, -0.025321115, -0.026642935, -0.0068534994, -0.008977361, 0.0075040828, -0.00591721, -5.5377034E-4, -0.012543522, 0.023696378, 0.008557408, -0.014622634, -0.0036728699, 0.00396546, 1.9653037E-4, -0.019606998, 0.029135117, -0.012185529, -0.0029930274, 0.017073508, -0.041830096, 0.02077736, 0.008137454, -0.009142589, 0.0038862887, -2.8699674E-4, -0.029245269, 0.006953324, -0.00714609, 0.022787627, -0.023338385, 0.008956708, 0.0072287032, 0.0012934216, -0.02300793, 0.019001164, -0.018147487, -0.01785834, -0.0077175014, 0.022140486, 0.011565926, 0.0072287032, -0.012275027, 3.9241533E-4, -0.010078878, -7.6934055E-4, 0.033375956, 0.03158599, -3.3561836E-4, 0.0025317674, -0.002295974, -0.006581562, -0.028391592, -0.0029758161, 0.013080511, -0.012722518, 0.0026797836, -0.032990426, 0.018519249, 0.006788097, 0.010216568, 0.017775726, -0.0017228409, 0.023916682, -0.043179456, 0.020956356, 0.010608983, -0.032439668, 0.011201048, -0.009500582, -0.00407217, -0.0012641625, 0.029740952, 0.031530917, 0.034532547, -0.0018897896, -0.016302448, -0.023476075, -0.037506644, -0.028336518, -0.0128533235, 0.00393448, -0.018202564, -0.024797894, 0.012268142, 0.009121935, 0.033623796, -0.012102915, -0.020116448, -0.032301977, 9.181099E-5, -0.017527884, 0.044363584, -0.023200696, -0.028474206, -0.02858436, -0.016357522, -0.009170126, -0.01995122, -0.008240722, -0.032715045, 0.012729403, 0.022126717, 0.012495331, 0.004991248, 0.0058827875, 0.010416217, 0.010078878, -0.0058827875, -0.011159741, -0.027469072, -0.03794725, 0.011180394, 0.041857634, 0.002815752, -0.0046917726, -0.012385178, -0.009961842, 0.03706604, -0.004853558, -0.018009799, -0.011118434, -0.038525548, -0.010016917, -0.030016331, 0.0013898043, -0.01109778, -0.042628698, -0.015187162, 0.037121113, -0.0044990075, 0.030236633, 0.025610263, 0.012171759, -0.012522868, 0.041306876, 0.008578061, 0.034670237, 0.002540373, -0.012901515, -0.02393045, -0.007194281, 0.036818195, -0.0056900224, 0.01025099, 0.011015167, -0.021493345, -0.01109778, 0.006622869, 0.0023476074, -0.025500111, 0.012323218, 0.0029327883, -0.017899647, -0.01315624, -0.005958517, -0.050752383, -0.022815164, 0.0036522164, -0.015159624, 0.018546788, -0.014182027, -0.017376427, 0.030456936, 0.006987747, -8.924006E-4, -0.005992939, -0.00219787, 0.03265997, -0.023365922, -0.010836171, -0.029796027, -0.00793092, -5.313958E-4, 0.042738847, 0.03213675, -0.030870005, -0.005913768, -0.012171759, -0.004943056, -0.020818666, -0.011483312, -0.0066400804, 0.026243636, 0.046070937, -0.0066882716, -0.022333251, -0.011366275, 0.010271643, -4.8363468E-4, 5.236507E-4, 0.008660675, -0.018037336, -0.008288913, 0.018147487, -0.028226366, 0.0082682595, 0.015490078, -0.021300578, 0.010726019, -0.011256124, -0.008275144, -0.009424852, -7.138345E-4, 0.04513465, -0.017032202, -0.0012349035, 0.024673974, -0.002039527, -0.0072768945, -9.147752E-4, 0.0016238766, 0.020033835, -0.004220186, -4.7933188E-4, -0.030346785, -0.002913856, -0.016605364, -0.012763825, -0.023393461, -6.1314896E-4, 0.0063578165, -0.012681211, -0.012867092, 0.007972227, -0.013844688, -0.0085436385, -0.0018846262, -0.03293535, -0.015669076, -0.008323336, 0.004474912, -0.028226366, -0.006764001, -0.016247371, 0.010953207, 0.017527884, 0.03373395, 0.0033492993, -0.014209566, 0.015669076, -0.036405127, -0.015848072, 0.028722048, -0.001249533, 0.01493932, 0.030209096, 0.00846791, -0.006419777, 0.024109447, -0.01237141, -0.028253904, -0.022333251, -0.00793092, -0.037754484, 0.018106181, -0.026945852, 0.009603849, 0.01197211, -0.008722635, -0.017280044, -0.017665574, -0.0012934216, 0.0054387385, 0.0072149346, 0.008812133, -0.02393045, 0.0153248515, -8.2871923E-4, 0.004767502, -0.0019087219, -0.01744527, -0.0137620745, 0.012681211, 0.009493697, -0.01223372, -0.0014904898, -0.035248533, 0.0064955065, -0.021217966, -2.5278947E-4, -0.027703146, -0.007304433, 0.010567676, -0.011600348, -0.03701096, 0.020130217, -0.033375956, -0.030043868, 0.025183426, -0.0043337797, -0.024550054, -0.021631034, -0.013679461, 0.049127646, 0.015806764, -0.025610263, 0.008901631, 3.330367E-4, -0.025568957, -0.0073182015, -0.020598363, 0.018436635, 0.008770827, 0.013011666, 0.008509217, 0.0031358805, 0.012047839, 0.018877242, -0.0024474324, -0.0030601511, -0.0075591584, 0.024481209, 1.4274538E-4, -5.1246345E-4, -0.04750291, -0.02036429, 0.032329515, 0.007311317, 0.005115168, 0.0026401978, -0.016632902, 3.878974E-4, 0.016922051, -0.010195914, 0.03197152, 0.029961254, -0.0025747954, -0.05116545, -0.0037795792, 0.011662308, 0.0070015155, 0.0047020996, -0.0013837804, -0.00813057, -0.010946322, 0.0034112595, -0.0076417723, -0.0031926774, -0.013700114, 0.0015438445, 0.018409098, 0.0072287032, -0.0034215862, 0.05237712, 0.009879228, -0.030759854, 6.28639E-4, 0.018601863, 0.0012426486, -0.012674327, -0.0020240368, -0.038635697, -0.01773442, 0.0028191942, 0.0021479577, 0.019538153, -0.016866975, -0.004478354, 0.0131287025, -0.021837568, 0.022828933, 0.013521117, -0.016481444, -0.02276009, -0.014333487, -0.010127069, 0.008743289, 0.0062820874, 0.010822401, -0.039324146, 0.021562189, -0.005390547, -0.022677476, -0.030704778, 0.036818195, -0.012488445, -0.013734536, -5.339774E-4, 0.20411104, 0.018753322, -0.0015842909, 0.041334413, 0.019221466, -0.0060376883, 0.005545448, -0.0052012242, -0.0190287, -0.0028260788, 0.014361024, 0.016343754, -0.023710147, -0.0016419484, 0.027854603, 0.0068466146, -0.044143282, -0.009238971, 0.0048432313, -0.003128996, 5.2322046E-4, 0.0076899636, -0.011022052, -0.024632668, 0.008199415, 0.019345388, -0.017128585, -0.027427766, 0.013424735, -0.016853206, -0.004767502, -0.005614293, 0.005473161, 0.008619368, -0.03731388, 0.0011015167, 0.012454024, 0.017390195, -0.007497198, 0.02858436, 0.0013837804, 0.02474282, 0.024136985, -0.008695098, -0.006533371, -0.0058655767, -0.03979229, -0.002039527, -0.013562424, -0.021754954, -0.023723915, 0.012502215, 0.025445037, 0.020915048, -0.009121935, -0.024081908, 5.5334E-4, -0.01163477, 0.00959008, 0.0035076423, -0.039213996, 0.028336518, 0.0042959154, 0.013197547, -0.00799288, 0.021727417, -0.021465806, -0.007579812, 0.021149121, 0.01667421, -0.020529518, -0.0015016771, 0.008798365, 5.374197E-4, -0.007937805, -0.016756823, 0.008089263, -0.010368026, 0.005142706, 0.014911782, 0.017803263, 0.00925274, -0.003834655, 0.0033252037, 0.021493345, -0.011565926, 0.008584945, 0.0036384473, 0.007848307, -0.0019706823, -0.0051805708, -0.018725784, -0.016109683, -0.007593581, 0.008405949, -0.013121818, -0.008598715, 0.028061138, -0.007077245, -0.0023372807, -0.033403493, 0.060418192, -0.028914813, -0.006271761, -0.03676312, 0.007862075, -0.005473161, 0.03648774, 0.029438034, -0.022071641, 0.009755307, -0.032880273, 4.870769E-4, -0.016206065, 0.008199415, -6.019617E-4, 0.0011970388, -0.01628868, -0.004306242, -0.018395329, 0.009197664, 0.0035455069, 0.009631387, -0.018285178, 0.017679343, -0.018230101, -0.0069567664, 0.021727417, -0.011380045, -0.027840834, 0.016206065, 0.03926907, 9.689905E-4, 0.010595214, -0.014663941, -0.00892917, 0.018891012, -0.013149356, 0.020956356, -0.023476075, -0.0044301627, 0.03199906, 0.0014836054, 0.012460908, 0.0072149346, -0.026918314, 0.0010490225, -0.0029603262, -0.009238971, 0.011827536, -0.0128533235, -3.7757066E-4, -0.010326719, -0.024811665, 0.011194164, 0.020928817, -0.019937452, -0.017927185, -0.008936054, 0.013066742, -0.029024966, -0.006350932, 0.0024646437, -0.0103404885, -0.025183426, -0.008688213, -0.1745904, 0.017486578, 0.034202095, -0.018271409, 0.012027185, 0.010202798, 0.012515984, 0.002314906, -0.014305948, 0.013796497, 0.0037038499, -0.009225203, -0.025816798, -0.031117847, 0.0020343636, -0.0071323207, -0.027813297, 0.015958223, 0.016756823, -0.003101458, -0.0082062995, -0.034312245, 0.001357103, -0.010271643, 0.0067743277, -0.012736287, 8.510938E-4, 0.03172368, 0.010960091, -0.017940953, 0.002714206, -0.031530917, 0.036019597, -0.009720885, 0.038911078, -0.027524149, -0.004987805, 0.024990661, -0.016316216, 0.04194025, -0.0020997662, 0.0056831376, 0.036983423, -5.5893365E-4, 0.006502391, 0.02276009, -0.01191015, 0.0037726946, 0.011827536, 5.2628617E-5, 0.038332783, -0.020818666, 0.016866975, -0.021080276, 0.009824152, 0.009417968, -0.0053664516, 0.015531385, 0.0138240345, -0.020983893, -0.031778757, -0.02660163, 0.014925552, -0.009562542, 0.01077421, -0.014884245, 0.0017417733, 0.042656235, -0.01427841, -0.0023648187, 0.015503848, 0.008323336, -0.01690828, 0.0037658103, 0.007820768, 3.2615222E-4, -0.033238266, 0.01381715, 0.03172368, -0.0100444555, -1.5049042E-4, 0.043069303, 0.0041031498, 0.023200696, -0.01772065, -0.01031295, 0.0060411305, 0.003101458, -8.1021717E-4, 0.0048914226, 0.0015137249, -0.019056238, -0.020281676, 0.0042993575, 0.019276543, 0.020598363, 0.0015188883, -0.006464526, 0.0028777125, -0.0085023325, 0.008715751, -0.011855073, -0.021273041, -0.007696848, 0.047530446, 0.004653908, 0.005572986, 0.010801748, 0.043702677, 0.010918784, -0.026863238, 0.028253904, 0.02420583, 0.026422633, -0.014567559, 0.024426132, -0.014319717, -0.018863473, 0.01229568, -0.002931067, 0.024963122, -0.014663941, -0.028226366, 0.0028518955, -0.027276307, -0.02896989, -0.0679085, -0.010058224, 0.03175122, 0.02274632, -0.027400227, 0.004509334, -0.0065712356, 0.018904781, -0.015035703, 0.017403964, 0.001284816, -0.011889496, -0.011159741, 0.027854603, 0.011042705, -0.007979112, 0.015228468, -0.025100812, -0.011049589, 0.0062476653, -0.020143988, -0.019483076, 4.789016E-4, -0.0069602085, -0.008323336, -4.724474E-4, -0.008275144, 0.021989027, 0.021135353, 0.00373483, -2.5157931E-5, -0.003032613, 0.010870593, 0.0032064463, -0.0036866388, -0.0070841294, -0.021245504, -0.025610263, 0.01824387, -0.039461836, 0.012268142, 0.011861958, 0.012880861, -0.017142354, -0.029245269, -0.022567324, -0.0013657087, 0.033513647, 0.0035145266, -0.011806882, -0.004987805, -0.01984107, 0.0074490067, -0.019331617, 0.011221701, -0.007104783, 0.0061684935, -0.0060480153, -0.014898013, 0.009934303, -0.010629636, 0.030512013, -0.007139205, 0.024990661, 0.0076486566, -0.02276009, 0.014484945, 0.015971992, 0.028419131, 0.0022753205, -0.0047743865, 0.023159388, -0.01454002, 0.02935542, -0.02417829, 0.0020877183, -0.016316216, -0.02076359, 0.024398595, -0.0022753205, -0.025045736, -0.013741421, 0.011820652, -0.052294504, -0.007063476, 0.04962333, 0.014250873, -0.004512776, -0.008309566, -0.06405319, 0.026477708, 0.02777199, 0.028446669, -0.0024164522, -0.012708749, -0.004598832, -0.00998938, 0.0073319706, -0.012213066, -0.0066710603, -0.044418663, -0.02580303, -0.08244853, 0.038911078, 0.015269775, -0.019372925, -0.010416217, 0.025968255, 0.021300578, -0.0078069996, 0.0072287032, 0.036955886, -0.030870005, 0.0027073214, 0.011242355, 0.008695098, -0.00436476, 0.014787862, 0.007999765, -0.011779345, 0.022773858, 0.0025042293, 0.017362658, 0.0104024485, -0.021947721, 0.0012090867, -0.008743289, -0.002254667, -0.015641537, 0.014801631, 0.013293929, 0.009280278, 0.031420764, -0.018133719, -0.007614234, 0.036212362, -0.012543522, -0.0025937275, -0.009899882, -0.0015085615, -0.01997876, -0.013280161, -0.005504141, -7.38468E-5, -0.009920535, -0.013101164, -0.0027383016, 0.0010868872, 0.0048329043, -0.006333721, 0.004750291, 0.02949311, -0.0017607056, 0.0012546964, -0.0025868432, -0.042821463, 6.819937E-4, -0.016109683, -0.0016161315, -0.022071641, -0.0073319706, -6.7295786E-4, 0.053754017, 0.010987629, 4.745988E-4, -0.015379927, -0.02618856, -0.030484475, -0.033926714, -6.785515E-4, -0.014333487, -3.7649498E-4, -0.027235001, -0.020157756, -0.005844923, 0.022154255, 0.0013889438, 0.002237456, 0.01493932, -0.006619427, -0.025362423, 0.002915577, 0.0072287032, -0.009631387, -0.02051575, 0.0094523905, 0.005242531, -0.017803263, -0.010787979, 0.008763942, -0.011063359, 0.016922051, -0.017087277, 0.022236869, -0.008977361, -0.003793348, 0.028446669, -0.02247094, -0.0036109095, -0.028749585, 0.004433605, 0.008695098, 0.007428353, -0.0076004653, 0.0017133749, -0.0024801337, -0.002497345, 0.007097898, -0.03555145, -0.022677476, -0.0063268365, -0.0105126, 0.0055695437, -0.019593228, -0.00912882, 0.023035469, 0.0011471264, 0.001994778, -0.026422633, -0.016316216, -0.026381325, 0.012743171, 0.0071667433, 0.0072562415, 0.018959856, -0.005700349, 0.015063241, -0.012880861, 0.017087277, -0.014195796, 0.028859738, -0.006784654, 0.012350756, 0.008653791, 0.0029930274, -0.018175026, -0.019386694, 0.014209566, 0.0014913504, 0.0056349463, -0.006588447, 0.09428983, 0.010781094, -0.00799288, -0.0034628932, -0.007683079, 0.0068466146, 0.016743055, -0.005590197, -0.012681211, -0.031641066, 0.012192413, -0.009004899, -0.011207933, 0.015627768, -0.026477708, 0.025885643, 0.00839218, -0.004264935, -0.02592695, -0.017954722, 0.032246903, -0.0027469073, 0.006794981, -0.020157756, -0.003332088, 0.0058483654, 0.0252385, 0.022526016, 0.0046022744, -0.037203725, -0.0050532077, 0.013390313, -0.014168259, -0.036845732, -0.003893173, -0.0039448068, -0.020942586, 0.012089145, -5.287065E-5, 0.0064094504, 0.013693229, 0.020557055, -0.0069016907, -0.03321073, 0.0045678522, -0.02459136, -0.0070118424, -0.03530361, -0.057719477 ], - "id" : "45cd7641-fa06-4dfa-8bff-6193348c03da", - "metadata" : { - "name" : "Stealth R1X Pro" - }, - "text" : "price: 2999.99\nname: Stealth R1X Pro\nshortDescription: Stealth R1X Pro is a high-performance carbon road bike designed for riders who crave speed and exceptional handling. With its aerodynamic tube shaping, disc brakes, and lightweight carbon wheels, the Stealth R1X Pro offers unparalleled performance for competitive road cycling.\ndescription: ## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that offers superior performance in terms of speed, handling, and aerodynamics. You want a complete package that includes lightweight carbon wheels, without the need for future upgrades.\n\nThe tech you get\nThe Stealth R1X Pro features a lightweight and aerodynamic carbon frame, an advanced carbon fork, high-performance Shimano Ultegra 11-speed drivetrain, and powerful Ultegra disc brakes. The bike also comes equipped with cutting-edge Bontrager Aeolus Elite 35 carbon wheels.\n\nThe final word\nThe Stealth R1X Pro stands out with its combination of a fast and aerodynamic frame, high-end drivetrain, and top-of-the-line carbon wheels. Whether you're racing on local roads, participating in pro stage races, or engaging in hill climbing competitions, this bike is a formidable choice that delivers an exceptional riding experience.\n\n## Features\nSleek and aerodynamic design\nThe Stealth R1X Pro's aero tube shapes maximize speed and performance, making it faster on climbs and flats alike. The bike also features a streamlined Aeolus RSL bar/stem for improved front-end aerodynamics.\n\nDesigned for all riders\nThe Stealth R1X Pro is designed to provide an outstanding fit for riders of all genders, body types, riding styles, and abilities. It comes equipped with size-specific components to ensure a comfortable and efficient riding position for competitive riders.\n\n## Specifications\nFrameset\n- Frame: Ultralight carbon frame constructed with high-performance 500 Series ADV Carbon. It features Ride Tuned performance tube optimization, a tapered head tube, internal routing, DuoTrap S compatibility, flat mount disc brake mounts, and a 142x12mm thru axle.\n- Fork: Full carbon fork (Émonda SL) with a tapered carbon steerer, internal brake routing, flat mount disc brake mounts, and a 12x100mm thru axle.\n- Frame fit: H1.5 Race geometry.\n\nWheels\n- Front wheel: Bontrager Aeolus Elite 35 carbon wheel with a 35mm rim depth, ADV Carbon construction, Tubeless Ready compatibility, and a 100x12mm thru axle.\n- Rear wheel: Bontrager Aeolus Elite 35 carbon wheel with a 35mm rim depth, ADV Carbon construction, Tubeless Ready compatibility, Shimano 11/12-speed freehub, and a 142x12mm thru axle.\n- Front skewer: Bontrager Switch thru axle with a removable lever.\n- Rear skewer: Bontrager Switch thru axle with a removable lever.\n- Tire: Bontrager R2 Hard-Case Lite with an aramid bead, 60 tpi, and a size of 700x25c.\n- Maximum tire size: 28mm.\n\nDrivetrain\n- Shifter:\n - Size 47, 50, 52: Shimano Ultegra R8025 with short-reach levers, 11-speed.\n - Size 54, 56, 58, 60, 62: Shimano Ultegra R8020, 11-speed.\n- Front derailleur: Shimano Ultegra R8000, braze-on.\n- Rear derailleur: Shimano Ultegra R8000, short cage, with a maximum cog size of 30T.\n- Crank:" - }, - "32c9d201-5476-41a9-97ce-d4eac209c07f" : { - "embedding" : [ 0.012889713, 0.004701202, -0.03045256, -0.016306855, 0.008420063, 0.013275633, -0.021246625, -0.032108508, -0.015984086, -0.041005705, 0.010882932, 0.009416437, -0.012917779, 0.0073605385, -0.01836977, 0.008714765, 0.008834049, 0.002343584, -0.008202544, -0.018678507, 0.018271536, 0.0040065465, -0.011738971, -0.011044316, -0.0045538507, -0.015324514, 0.037974484, 0.004031105, 0.0074307057, -0.02575136, 0.013212482, -0.003511868, -0.021850063, -0.0074236887, 0.0039433963, 0.015913919, -0.024151547, -0.0063781976, 0.02632673, 0.023814745, 0.020629155, 0.010981166, -0.024642717, -0.00977429, -0.0028540506, 0.011135533, 0.037497345, 0.004848553, -0.007760491, 0.021274691, -0.017808434, 0.029526355, -0.0060554286, -0.008188511, -0.0018296095, -0.012658161, 0.017906668, 0.016769959, 0.025190022, 0.005297623, -0.0222851, 0.0021997415, -0.034101255, 0.010125126, -0.03179977, -0.026747733, 0.010188276, 0.0057712514, -3.727632E-4, 0.0075850734, 0.025849594, 0.01738743, 0.009416437, -7.424566E-4, 0.016152488, -0.025330355, -0.019197743, 0.004732777, 0.014707043, -0.0067360504, 0.025119854, -0.018832874, -0.018748673, 0.005297623, 7.051803E-4, -0.011037299, 0.007444739, 9.630447E-4, -7.586827E-4, 0.0062659304, 0.0011744234, 0.02134486, 0.020797556, 0.0042416067, -9.3059236E-4, -0.0077815414, 0.005666001, -0.0045117503, -0.002273417, -0.018903041, 0.013268616, -8.161321E-4, -0.006595716, -0.018425904, -0.011879305, -0.013303699, -0.016601557, -0.012812529, -0.01734533, -0.0104759615, -0.033988986, 0.014664943, 0.0028856257, 0.011921406, 0.002292713, 0.00156122, 0.01661559, 0.0126511445, -0.0010297035, -0.02318324, 0.014566709, 0.031322636, 0.015156114, -0.033624116, -0.023604242, 0.036964078, 0.005683542, -0.019043375, -0.014917545, -0.0066869333, 0.022313166, -0.005329198, 0.024291882, 0.0058589606, -0.019857315, 0.034999397, 0.003364517, 0.0022313166, -0.039630428, -0.022355268, 0.014763177, 0.021625528, 0.002303238, 5.7361677E-4, -0.008013093, -0.0067465752, -0.016966427, 0.006550107, 0.0049327537, -0.012237158, 0.019436311, 0.012188041, 0.024446249, 0.027000336, 0.012412576, -0.0036030852, -0.0095357215, 0.0073044044, -0.017247096, -0.00804116, -0.02363231, 0.010749614, 0.011360068, -0.028445778, 0.04044437, 0.03376445, 0.004887145, -0.037160546, 0.0063641644, -0.00981639, -0.012096824, 0.024909353, -0.024740951, -0.013352816, 0.012496777, 0.035897534, 0.016166521, 0.0041258307, -0.026579332, 0.00806221, 0.018931108, -0.004831011, 0.035616867, 0.014356207, -0.012952863, -0.008770899, -2.0469085E-4, -0.013787853, 0.006946552, 0.004652085, 0.02053092, 0.0029610554, -0.015156114, 0.0072272206, -0.60355014, -0.033567984, 0.0034083712, -0.0033697793, -0.014222889, 0.023646343, 0.007823641, 0.0112057, -0.024025247, 0.01518418, -0.031210367, 0.023155173, -3.0632364E-4, 0.0077324244, -0.016405089, -0.022551736, 0.013331766, -0.0036837775, 0.02264997, -0.0020120442, -0.0358414, -0.02991929, -0.0067676255, 0.0035750184, -9.525196E-4, 0.005680034, 0.011816155, -0.014173772, 0.0042416067, 0.00579581, -0.015731484, 0.054141004, 0.007139512, -0.011816155, 0.035336196, -0.05310253, -0.009318203, 0.020236218, 0.013689619, 0.018468004, -0.024586584, -0.018552205, -0.027070502, -0.024193648, -0.0032083949, 0.024348015, 0.04089344, -0.013584368, -0.007297388, -0.037609614, 0.009921641, 1.7508907E-4, 0.0013419475, -0.0222851, -0.008097294, -0.01698046, 0.012945847, -7.99906E-4, 0.019169677, -0.015970053, 0.016292822, 0.033539917, -0.018439937, -6.262422E-4, -0.0049397703, 0.017485663, -0.04106184, -4.71984E-5, 0.0070482944, -0.028459813, 0.0019471395, 0.02591976, -0.002624253, 0.0027961626, 0.027182769, 0.028179144, 0.026200429, 0.0037293863, -0.009149802, 0.034718726, 0.004820486, 0.0224114, -0.011935439, -0.031041965, 0.049566105, -0.009739206, -0.014356207, -0.01067243, 0.012658161, 0.009072618, 0.029273752, -0.0050029205, 0.017092727, -0.0014761423, -0.008356912, 0.008820016, -0.0064273146, 0.01747163, -0.0089814, -0.02044672, -0.012166991, 0.011009232, 0.011963506, -0.019997649, 0.025765393, 0.00936732, -0.0013428247, 0.0316875, 0.015029812, -0.036178205, -0.014047472, -0.011977539, -0.037778016, 0.005416907, -0.018383805, -0.032333042, 0.00276985, 0.020011682, 0.038142886, -0.011549519, 0.016166521, 0.0061641876, 0.022397367, 0.009135768, -0.006090512, 0.0111636, 0.021134358, 0.0025330356, -0.013177399, -0.014875445, 0.022481568, 0.026635466, 0.024670783, -0.0027751124, 0.03710441, 0.0046310346, 0.0133879, 0.0075710397, 0.0061431373, -0.030031558, -0.03457839, -0.010763647, -0.00470471, -0.012882696, -0.023014838, -0.008588464, -0.006402756, 0.02861418, 0.002906676, 0.008497247, -0.013668569, -0.0030206975, -0.03648694, 0.009374336, -0.006293997, -0.033006646, -0.035251997, -0.025302289, -0.014314107, 0.007318438, 0.012279258, 0.006634308, -0.0044942084, -0.023730544, -0.00842708, 0.012258208, 0.006448365, 0.020460753, 0.00761314, -0.035251997, -0.012784462, -0.030340293, -0.017654065, 0.00491872, -0.030901631, 0.029582487, -0.023197273, -0.004343349, 0.012595011, -0.01959068, -0.004701202, 0.0116126705, -0.05228859, 0.014819311, 0.025933795, 0.017864566, 0.007290371, 0.005199389, -0.008441113, 0.017948767, -0.01608232, -7.2052935E-4, -0.032389175, -0.0037434197, 0.014314107, 0.0019278436, 0.020194117, -0.011851238, 0.008567414, 0.03376445, 0.025807492, -0.001385802, 0.028965017, -0.0037785033, 0.023590209, -0.026986301, 0.010111093, -0.007220204, 0.01612442, 0.027968641, 0.019997649, -0.025737325, 0.01918371, 0.01418079, -0.01554905, -0.010391761, 0.005669509, 0.039939165, -0.0016348956, -0.0044556167, 0.0011937193, 0.0031013899, 0.024362048, 0.008118344, -0.011149567, 0.016334921, 0.024319949, 0.03836742, -0.008890183, -0.026396897, 0.003648694, 0.022664003, 0.025358424, -0.012559927, -0.014664943, -0.0073535214, 0.035532665, -0.010104075, 0.04330719, -0.0043573827, 0.011760022, 0.028052842, 0.0040451386, -0.015380648, 0.0076833074, -0.0036416773, 0.02991929, 0.030845497, 0.023604242, -0.0025102312, -0.0016454207, -0.0077043576, -0.0050871214, 0.024053313, 0.009079634, -1.3945729E-4, -0.004645068, 0.017850533, -0.0010989936, 0.009942691, 0.034269657, 0.016152488, 0.03836742, 0.019043375, 0.031238433, -0.024712885, -0.016405089, -0.0026663532, -0.014068522, -0.010560162, 0.005455499, -0.0027944085, -0.020516887, -0.006381706, 0.009177868, -0.006830776, 0.027491506, -0.014847377, 0.028417712, 0.027379237, -0.001278797, 0.008027127, 0.018397838, 0.016306855, -0.008974384, 8.6305646E-4, -0.0024628683, 0.0065922076, -0.0034574883, 0.0073394882, 5.5782916E-4, 0.0069991774, -0.009949707, 0.0030487645, -0.0071289865, -0.014552675, 0.014272006, -0.010447895, -0.003932871, -0.0089814, -0.017583897, 0.02403928, 0.010609279, -0.005708101, 0.032389175, -0.010040925, 0.011935439, -0.014089572, 0.039995298, -0.0052520144, 0.0016559457, -0.017359363, -0.0130300475, -9.3760906E-4, 0.0074587725, -0.0030610438, 0.012328375, -0.021176457, 0.036515005, -0.031519104, -0.024993554, -0.008370946, -0.026228497, -0.022720136, -7.6482235E-4, 0.021078223, 0.0028382628, 0.0048064524, -0.013479117, 0.008714765, -0.015675351, 0.004880128, -0.0177944, 0.02591976, -0.009170852, 0.007465789, 0.0037188611, -0.017513731, -0.016517356, -0.015506949, -0.020460753, -0.034101255, 0.0222851, 0.011731954, -0.006227338, 0.0068658595, 3.727632E-4, 0.032810178, -0.0034890636, 0.013703653, -0.021457126, 5.455499E-4, 0.0066413246, -0.017317263, -0.0058554523, 0.0042065233, 0.01905741, 0.0027768665, -0.038058683, 0.013556302, 0.014538642, 0.015478882, 0.030845497, 0.0062799635, -0.0025435607, -0.005964211, 0.019211777, 0.00470471, 3.5324795E-4, -0.0041433726, -0.0011595128, 0.011977539, 0.009753239, -7.253533E-4, 0.024726918, -0.0058589606, -0.01832767, 0.0040065465, -0.0062133046, 0.01693836, 0.0024628683, -0.017233063, -0.013415967, -0.015661318, 0.0025681192, -0.044233397, 0.019492446, -0.009163835, -0.009072618, 1.5667018E-4, -0.039939165, 0.015296448, 0.0019173184, -0.025737325, -0.04322299, -0.013675585, -0.030901631, 0.016826093, -0.004343349, -8.6130225E-4, 0.043868527, -0.032220773, 0.011977539, -0.005083613, -0.031322636, 0.015815685, -0.018959176, 0.0022102664, -0.014959645, 0.010812764, 0.03629047, 0.0041398644, 0.01201964, -0.019562613, 0.010896965, -0.022565769, 0.020615121, -0.0025400524, 0.0056765256, 0.0010849602, 0.020516887, -0.0056098667, -4.229766E-4, -0.016840126, 0.009977775, -0.024783053, -0.006732542, 0.01856624, 0.026635466, 0.013507185, 0.010686463, -0.008167461, 0.0013980813, -0.02138696, -0.028417712, -0.013759786, -0.014749143, -0.007290371, -0.0038872624, -9.3146943E-4, 0.010504029, -4.1486352E-4, -0.0015050862, -0.022860471, 0.010489995, -0.031238433, 0.04555254, 0.0063746893, -0.012840596, 0.034718726, -0.014847377, 6.6571124E-4, -0.01559115, 0.028108977, -0.0013051097, 0.0355888, -0.008076244, -0.0026979286, -0.036009803, -0.02758974, -0.02326744, -0.0036662358, 0.011542503, -0.02575136, -0.010518062, -0.0031592778, 0.00990059, 0.017625999, -0.019338077, -0.01584375, -0.024179613, 5.7054695E-4, -0.013226516, 0.05293413, -0.02493742, 0.007956959, -2.3725281E-4, -0.017780365, -0.026382864, -0.019366145, -0.0058414186, -0.0054098903, 0.0064448565, 0.032810178, 0.0031575237, 0.0016506831, 0.013465084, 0.02102209, 0.015857786, 0.0037328945, -0.025498757, 0.0015550804, -0.045496408, -0.0061150705, 0.029273752, 0.0019980108, -0.009921641, -0.030873563, -0.005915094, 0.010314577, -0.009234002, 8.314812E-4, -0.022004431, -0.05094138, 0.0068027093, -0.0031277025, -0.013507185, -0.0032364617, -0.01856624, -0.015254348, 0.020292351, 0.009570804, 0.004722252, -0.030256093, -0.009276102, -0.024319949, 0.015128046, -0.006108054, 0.011984556, -0.0053151646, -0.041931912, -0.025653126, -0.03825515, -0.004136356, -0.028066877, 0.011065366, 8.284114E-4, -0.010812764, 2.242061E-4, -0.008055193, 0.002019061, 0.012798496, 0.0030575353, -0.0057116095, -0.013949238, -0.020797556, -0.008006076, -0.018678507, 3.4952033E-4, 0.003259266, -9.1743603E-4, 0.03954623, -0.014356207, -0.0031803278, 0.013331766, -0.0070167193, 0.0355046, -0.022397367, 0.009676056, 0.008013093, -0.024235748, 0.012265225, -0.02502162, 0.002410243, 0.019731015, 0.015829718, 0.01856624, -0.0070798695, -0.007241254, 0.00690796, -0.0013393163, -0.005259031, -0.0044170246, 0.027112603, 0.024516417, -0.0015085946, -0.025077755, -0.007830659, -0.020222185, 4.920474E-4, 0.009416437, -0.01336685, -0.008377963, -0.021050157, -0.008890183, 0.020095883, -0.023155173, 0.030677095, 0.016896259, -0.0135422675, 0.007627174, -0.003462751, -0.023744578, 0.004052155, -0.0020646695, 0.04501927, -0.010812764, -0.017148862, 0.019927483, -0.0019752064, -0.014363224, -0.018622372, 0.005280081, 0.029863156, -0.02277627, 0.015787618, -0.013289666, -0.010412811, -5.8896584E-4, 0.005981753, -0.01343, -0.0062975055, -0.010609279, -0.016910292, -0.0056765256, -0.006013328, -0.022888537, -0.027407305, -0.026565298, -0.014889478, -0.024558516, -0.011107466, 2.5611024E-4, -0.04412113, -0.010279493, -0.028768549, 0.019983616, 0.05052038, 0.010532095, -0.020236218, 0.008651614, 0.018411871, -0.013065131, 0.014068522, 0.009311186, 0.009655005, -0.029638622, 0.011605653, 0.015142079, 0.0040240884, -0.0033153999, -0.009086651, 0.013338783, -0.030424494, 0.018987242, -0.0026663532, 0.009704122, -0.0058694854, 0.017443564, 0.002399718, 0.011479353, -0.0063676727, -0.026579332, 0.016755925, 8.2797284E-4, -7.034261E-4, 0.008314813, -0.028403679, 0.018089103, -0.008497247, -0.012075773, 0.010216343, -0.022678036, -0.004638051, 0.018804807, 0.03612207, -0.013275633, 0.010258444, -0.037160546, -0.02106419, -0.026144296, 0.034466125, -0.015450816, 0.015970053, 0.008034144, 0.006662375, 0.0038030618, 0.03738508, -0.0042486233, -0.021078223, 0.024600618, -0.012819545, -0.0266495, -0.011247801, 0.0025681192, 0.033848654, 0.0040275967, -0.019253878, -0.01672786, -0.0024067347, -0.034718726, -0.009479588, -0.027323104, 0.023239374, 0.032304976, 0.023351641, -0.012770428, 0.011963506, 0.0133879, 0.029582487, -0.024769017, 0.004936262, 1.9317905E-4, 0.030115759, -2.898782E-4, 0.017134828, -0.05273766, -0.0125529105, 0.01028651, 0.030592896, 0.029357953, 0.012805512, 0.0056905593, -0.0039574294, -0.0010121617, -0.0038346369, 0.03297858, 7.928893E-4, 0.01206174, -0.044008862, -0.009725173, 0.013661552, 0.0036907943, -0.010061976, 0.0018822349, -0.0068342844, -0.0048766197, -8.3104265E-4, 0.0035311638, -0.0023751594, -0.008630564, -0.0125529105, 0.018468004, 0.0089393, -0.02538649, 0.048134692, 9.946199E-4, -0.0087287985, -0.011949473, 0.009269086, -0.02624253, -0.0051011546, 0.010826797, -0.033848654, -0.007241254, -0.0043959743, 0.009662022, -0.0063571474, 0.0222009, -0.0143491905, -0.020348486, 0.006118579, 0.035813335, 0.03000349, -0.037525415, -0.030929698, 0.020194117, -0.023435842, 0.009051568, -0.008139394, -0.018103136, -0.048387296, 0.004132848, 0.0063185557, -0.02318324, -0.012595011, 0.024390116, -1.198324E-4, 0.0070798695, -0.005276573, 0.18512912, -0.0015445553, 0.0063010138, 0.030059624, 1.7991307E-4, -0.018524138, 6.187869E-4, 0.02453045, 0.0033434667, 0.003483801, 0.012889713, 0.019506479, -0.017373396, 0.0013989584, 0.011521453, -0.0133598335, -0.056189887, -0.007900826, -0.021176457, -0.004799436, -0.0020629154, 5.323936E-4, -0.02812301, -0.023688443, 0.026930168, -0.010118109, -0.013808903, -0.040837307, 0.020109916, 0.009191902, -0.009149802, 8.5735536E-4, 0.0057045924, -0.014931578, -0.027421338, -0.0037539448, 0.009114718, 0.01069348, -0.0039469046, 0.024333982, 0.0066097495, -0.027477471, 0.016348956, -0.016433157, 3.0237675E-4, -0.023463909, -0.019422278, -0.017724233, -0.02885275, -0.02097999, -0.025119854, -1.2246368E-4, 0.019759081, 0.042184517, 0.0074517555, -0.015043845, 0.012349426, -0.021990398, 0.008700731, 0.014707043, -0.008995434, 0.051671118, -0.0024348015, 0.02448835, -0.007711374, 0.005865977, -0.027940575, -0.026340764, 0.01077768, -0.015450816, -0.0010060221, 0.0011340772, 0.0059186025, 0.0070307525, -0.034269657, -0.026803866, 0.013907137, -0.006241372, 0.026565298, 0.013219499, 0.0010428599, -0.027421338, 0.01612442, 0.0073605385, -0.020194117, -0.030312227, -0.0031680486, 0.0063255723, -0.001327037, -0.008595481, 0.011717921, 0.02065722, 1.2575276E-4, 0.017850533, -2.1455811E-4, -5.546908E-6, -0.023576176, 0.0316875, -0.025695225, -0.0025505773, -0.005357265, 0.053776134, 0.0055397, 0.0012016131, -0.022607869, -0.006062445, 4.0740825E-4, 0.009381354, 0.0046029678, -0.03412932, -0.016559457, -0.03808675, 0.011107466, -0.003659219, 0.019534545, -0.013177399, 0.00754999, -0.009086651, -0.0044345665, -0.031462967, 0.023506008, -0.010988182, 0.007514906, 0.015563083, -0.0057221344, -0.023660377, -0.0030312226, -0.013212482, -0.0019348603, -0.03926556, 0.008946317, 0.007641207, 0.004031105, -0.017204994, -0.0052239476, -0.0036907943, -0.01856624, -0.0122231245, 0.017990869, 0.007760491, 0.029049218, 0.012840596, 0.012847613, -0.022748204, 0.009016484, -0.022565769, 0.0027803748, -0.009612905, -0.01710676, 0.013275633, -0.025232121, -0.006995669, 0.004217048, -0.009570804, 0.021457126, 0.025765393, -0.015436782, -0.0491451, -0.010040925, -0.004753827, -0.055768885, 0.0017296212, -0.0050590546, -0.0013252829, -0.011949473, -0.033287317, -0.17917894, 0.0076341904, 0.02902115, -2.6161946E-5, 0.0058589606, 0.015647283, 0.034017053, 0.016657691, -0.024769017, -0.012258208, 0.024670783, -0.0020243234, -0.038704224, -0.01430709, -0.011837205, 0.00513273, 0.0065395823, -0.0012866908, 0.019941516, 0.014482508, -0.0050695795, -0.014664943, -0.0060729706, 0.0035171304, -0.009114718, 0.011682837, 0.011289901, 0.0359256, 0.022593835, -0.007865742, -0.01563325, -0.033652186, 0.017611966, 0.012868662, -0.004146881, 0.008314813, -0.0014691255, 0.025695225, -0.016882226, 0.04476667, 0.014468474, -0.0014086063, 0.008125361, 0.0053151646, 0.01554905, 0.0030312226, -0.0012849367, 0.004978362, -0.0071079363, -0.0031154233, 0.051923722, -0.022228966, 0.02902115, -0.00255584, 0.039630428, 0.0045222756, -0.013394916, 0.0013621206, 0.023253407, -0.011121499, -0.024881287, -0.012391526, 0.026565298, -0.015352582, 0.01201964, -0.02563909, -0.02991929, 0.024305915, -0.014833344, 0.014005371, -0.011823172, -0.020994024, 0.0050695795, 0.017162895, 0.030705163, 0.008707749, -0.010981166, -0.016643658, 0.017050628, 0.012882696, -0.0067851674, 0.046562947, -0.006781659, 0.011044316, 0.0017348838, -5.3897174E-4, -0.0045784093, 0.0050380044, 0.012559927, -0.030340293, -0.003297858, -0.035729133, -3.87893E-4, -0.017611966, 0.017611966, 0.007037769, -0.0023576177, -0.0115635535, 0.009044551, 0.0054519908, 0.0032136573, -0.011353051, -0.019324044, 0.018159268, 0.04330719, -0.010349661, 0.01845397, 0.019253878, 0.012349426, -6.5518613E-4, -0.011402168, 0.017036594, 0.00643784, 0.041595113, 0.003845162, 0.032024305, -0.034971327, -0.017696166, 0.006627291, -0.012945847, 0.011303934, -0.015029812, -0.007055311, 0.0014691255, -0.011135533, -0.030761296, -0.0937995, -0.0041398644, 0.033680253, 0.012012623, -0.014398308, -0.0023067463, 0.008391996, 0.022074599, -0.0091568185, 0.030256093, -0.028010743, -0.010335627, -0.005423924, 0.019253878, 0.011879305, 0.020194117, 0.019239843, -0.035392333, -0.020825623, 0.02824931, -0.025625058, -0.01387907, -0.0065922076, -0.019969583, 0.004459125, -0.005094138, -0.019408245, 0.023744578, 0.024628684, 0.009746223, -3.7342103E-4, -0.0448228, 4.8678488E-4, -0.0047082184, -0.025554892, -0.01126885, -0.01672786, 0.005209914, 0.021639561, -0.0267758, 0.011823172, -0.017780365, 0.010054958, -0.009739206, -0.029807022, -0.009079634, -0.009255053, 0.05734063, -0.017162895, -0.0017392692, -0.02142906, -0.01710676, 0.0034680134, -0.011984556, 0.02615833, -0.004371416, 0.007718391, 0.012749379, -0.0056730174, 0.0015401698, -0.0044731586, 0.018411871, 0.0074026384, -0.0058063352, 0.00887615, 0.006339606, -0.0029277261, 0.028066877, 0.040668905, -0.015731484, 0.0029014132, 0.0150578795, -0.004480175, 0.033175047, -0.027954608, 0.013977304, -0.004185473, -0.023407774, 0.003083848, -0.0024172596, -0.007444739, -0.0118933385, -0.009044551, -0.025063721, 0.020418653, 0.033203114, 0.015801651, -0.01165477, 0.0060519204, -0.036795676, 0.009977775, 0.017120795, 0.059221108, -0.0049538035, -0.012328375, -0.021990398, 0.011605653, 0.013422984, -0.004606476, -0.012335392, -0.04384046, -0.004687168, -0.08588464, 0.028670315, 4.036806E-4, -0.004936262, -0.017022561, -0.011310951, 0.027519573, -0.0050590546, 0.026382864, 0.007192137, -0.019141609, 0.010349661, 0.0051537803, -0.012756395, -0.014538642, 0.005848435, 0.0057045924, -0.001805051, 0.018510105, 0.038395487, -0.017247096, 0.019646814, 0.010356678, 0.023099039, -0.017569864, 0.0020453737, -0.016882226, 9.412271E-5, 0.003599577, -0.019660847, 0.030171892, -8.319198E-4, -0.003268037, 0.016587524, -0.004634543, 0.009016484, 0.018215403, 0.009262069, -0.020306384, -0.026340764, -0.03892876, -0.014398308, 0.0070693446, -0.013121265, -0.005504616, 0.008321829, 0.009781307, 0.011900355, 0.022706103, 0.023744578, 0.01212489, 0.015899885, 0.015703417, -0.017485663, 0.006578174, -0.014987712, -0.008518297, 0.0010630329, 0.009746223, -0.0036416773, 0.07381588, -0.017359363, 0.0013051097, -0.029329887, 0.026663532, -0.007395622, -0.012770428, 0.0073745716, 0.03045256, -0.008258678, -0.026635466, -0.0048555695, -3.0478873E-4, 0.020881755, 0.011058349, 0.021695696, -0.004283707, 0.011128517, -0.03513973, 0.020348486, 0.02204653, -0.015605183, 0.005943161, -0.0069816355, 0.00836393, -0.024797086, -0.029217618, 0.009577822, 0.00534674, 0.019281944, -0.04224065, 0.01195649, -8.696346E-4, 0.0067711337, 0.013345799, -0.004150389, -0.029722823, -0.007942926, 0.030059624, 0.025554892, -0.014608809, 0.0031505069, -0.008314813, 0.010995199, 0.014384274, 0.03665534, -0.0033452208, -0.011823172, 0.016741892, 0.0032732994, -0.00934627, -0.021400994, -0.01163372, 0.02003975, -0.012279258, 0.0027189786, -0.00534674, -0.009051568, -0.005339723, 0.04302652, 0.023898946, -0.009219969, 0.005269556, 0.0049327537, 0.03297858, -0.0022383335, 0.019969583, 0.002057653, -0.012166991, -0.037441213, 0.004329316, -0.026060095, 0.007746458, -0.011037299, -0.034634527, 0.0043398407, -0.0016191079, 0.013037064, 0.014089572, 0.10744, 0.02065722, -0.019211777, 0.011479353, 0.0037714865, 0.014075538, -2.4580443E-4, -0.019015308, -0.011444269, -0.047208484, 0.013065131, -0.0071640704, -0.03971463, -0.011703887, -0.0055081244, 0.025456658, 0.012595011, 0.01345105, -0.01824347, -0.007718391, 0.0150578795, 0.010125126, 0.010925031, -0.0026891576, -0.008272712, 0.014664943, 0.030564828, 0.0077324244, -0.0058203684, -0.02339374, 0.024460282, -0.006613258, -0.028670315, -0.011970523, 0.0060659535, -0.031940106, -0.019941516, 0.005473041, 0.033006646, -0.022930639, 0.01832767, 0.004964329, -0.014454441, -0.0018015426, -0.010419828, -0.0032329534, -0.0022506127, -0.017373396, -0.06472222 ], - "id" : "32c9d201-5476-41a9-97ce-d4eac209c07f", - "metadata" : { - "name" : "E-Adrenaline 8.0 EX1" - }, - "text" : "| F — Bottom bracket height | 32.5 | 32.5 | 32.5 | 32.5 |\r\n| G — Bottom bracket drop | 5.5 | 5.5 | 5.5 | 5.5 |\r\n| H — Chainstay length | 45.0 | 45.0 | 45.0 | 45.0 |\r\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\r\n| J — Trail | 11.0 | 11.0 | 11.0 | 11.0 |\r\n| K — Wheelbase | 113.0 | 117.0 | 120.0 | 123.0 |\r\n| L — Standover | 77.0 | 77.0 | 77.0 | 77.0 |\r\n| M — Frame reach | 41.0 | 44.5 | 47.5 | 50.0 |\r\n| N — Frame stack | 61.0 | 62.0 | 62.5 | 63.0 |\ntags: [bicycle]" - }, - "8bbe96d4-56b8-4632-8b41-30c00c60741b" : { - "embedding" : [ 0.022981644, 0.00690661, -0.045397833, -0.0021658887, 0.011214826, 0.01550958, -0.0014658035, -0.008151954, -0.00408944, -0.043189872, 3.1869864E-4, 2.7241898E-4, 0.0010299331, 0.013099671, -0.013072745, 0.006182964, 0.019400438, -0.0119014485, 0.0026724406, -0.018148363, -0.0022887401, -0.012015886, -0.017515594, 0.003661984, -0.024853025, -0.011066732, 0.031503834, -0.007653816, 0.004439483, -0.009807925, 0.014055557, 0.010905174, -0.019373512, 0.0045202617, 0.0015474239, -0.0029349728, 0.015038369, 0.0020194766, 0.023466319, 1.227463E-4, 0.036539063, 0.012480365, -0.0027414395, 0.023924066, -0.009417493, 0.01995243, 0.016559709, 0.020625588, 0.014230578, -0.004547188, -0.005119373, 0.03516582, -0.008098101, -0.0011687721, -0.0056713633, -0.040281825, 0.011403311, 0.009807925, 0.037104517, 0.038154643, 0.0077480585, 0.026266659, -0.041574292, -0.016115423, -0.032930933, -0.019373512, 0.010999416, 0.022900864, -5.801788E-4, -0.0028053895, 0.016559709, 0.012736166, 0.029484358, 0.011827401, 0.0024149574, -0.008623165, -0.019629313, -0.011228289, 0.015778843, 0.016586635, 0.029484358, 0.004530359, 7.9727254E-4, 0.0019656238, 0.036215946, 0.024812635, -0.0052742, -0.012238028, -0.027303323, 0.0048534754, 0.01686936, -0.0017771394, 0.013934389, 0.006805636, -0.007956738, 0.001054335, -0.033765648, 0.005482879, -0.009686756, -0.009128034, 0.034088764, 0.00995602, -0.00703451, -0.02030247, -0.026805187, -0.029699769, -0.036350578, -0.00497801, 0.0010324575, 0.0019723554, -0.017529057, 0.02563389, -0.008744334, -0.0016374589, 0.024287572, -0.026387827, 0.04092806, 0.003762958, 0.016075034, -0.03398106, 0.020140912, 0.023035496, -0.009309787, -0.019131174, 0.010582058, 0.016290445, -0.0226316, -0.017919488, 0.026535923, -0.0041601215, 0.008044248, 0.009040523, 0.02080061, 0.021971906, -0.020881388, 1.5198665E-4, -0.0089866705, 0.01809451, -0.031476907, -0.010205088, 0.009262666, 0.0048871334, -0.015240316, 0.007815374, -0.01322084, 0.013288156, -0.006092088, -0.004550554, 0.00847507, 0.0024099087, 0.022483505, -0.013988242, 0.012251492, 0.025485795, 0.02910739, 0.0037932503, 0.013752636, 0.035946682, -0.02423372, 0.0010644324, -0.0014447672, 0.0055737556, 0.0059137004, -0.017044382, 0.021675715, 0.028649641, 0.0012840505, 0.0028407304, -0.023708655, -0.025620427, -0.0099627515, 0.014297894, -0.030830676, 0.034546513, -0.0032412598, -0.006105551, 0.025270384, 0.00546605, -0.008495265, 0.0067046625, 0.03538123, 2.3350198E-4, 0.016411614, 0.015294169, 0.0012167346, 0.006384912, 0.010003141, -0.020369787, 0.011033074, -0.019548533, 0.021662252, 0.011248484, 0.0066036885, -0.013732441, -0.6001346, -0.02292779, -0.0022685453, -0.027074449, -0.007828837, 0.03818157, 0.018915763, -0.007936543, 0.006559933, -0.0042745587, -0.015644211, 0.014028631, 0.006041601, -0.009693488, -0.03486963, -0.028945832, 0.0144056, -0.005055423, -0.005863214, -0.022645064, -0.01580577, -0.024422204, -0.019225417, -0.0021389623, 0.008791455, 0.007774985, -0.0051833233, -0.023291297, -0.003322039, 0.011282142, -0.026360901, 0.05724543, 0.018067583, -0.008825113, 0.040335678, -0.047094192, 0.009632903, 0.02080061, 0.043593768, 0.0261051, -0.0053415154, -0.0062536458, -0.010164699, -0.019467754, -0.01021182, 0.01779832, 0.026926355, -0.0070143156, 0.019440828, -0.03101916, 0.0065330067, -0.002635417, 0.019548533, -0.002489005, 0.009848314, 0.004055782, 0.044428486, -0.002091841, 0.0019824528, 0.0060516982, -0.005085715, 0.018458016, -0.0056208763, -0.027222544, -0.010871516, 0.02076022, -0.033011712, -0.02648207, 0.022254633, 0.01152448, 0.020881388, 0.01495759, 0.0037764213, 0.02924202, 0.02123143, 0.024139477, 0.037400708, 0.014499842, -0.015913475, 0.02156801, 0.012904455, 0.010817663, -0.0022533992, -0.03495041, 0.027599514, -8.0884245E-5, 0.008151954, -0.009417493, 0.0053920024, 0.0031806757, 0.026132027, 0.010642641, -0.015024906, -0.024974193, 0.0049207914, 0.044859305, 0.0069671944, 0.02046403, 0.0035711078, -0.03907014, -0.022618137, 0.007525916, 0.01610196, 0.020396713, 0.033334825, -0.0020968898, 0.007566306, -0.044347707, 0.019467754, -0.021716105, 0.001472535, -0.006893147, -0.02770722, 7.8591297E-4, -1.8028036E-4, -0.022523895, 0.015051832, 0.00559395, 0.025472332, -0.052937213, 0.0056478027, -0.013079477, 0.03336175, -0.021971906, -0.01606157, -4.6027236E-4, 0.021581473, -0.003843737, -0.0049712784, -0.020006282, 0.036054388, 0.015590359, 0.027572587, -0.014230578, 0.02190459, 0.017488668, 6.294035E-4, 0.0072229947, 0.016775118, -0.019602386, -0.035111967, -1.717081E-5, -0.011342727, -0.033577163, -0.020019745, -0.0026892696, -0.01152448, 0.025876226, -0.015617286, -1.161199E-4, -1.2327221E-4, -0.021635326, -0.013658393, -0.0028929003, 0.0010669568, -0.016680876, -0.020652514, -0.036296725, -0.039393257, -0.016115423, 0.026051247, 0.0030830675, 0.015469191, -0.0054054656, 0.012271686, 0.011659112, 0.017946415, 0.01847148, -0.016734729, -0.03495041, 0.011093658, 0.007976932, -0.0073374314, 0.01618274, -0.001031616, 0.014634473, -0.03495041, -0.0031015794, 0.0074182106, -0.017475205, 0.0062233536, 0.048198175, -0.039581742, 0.016196202, 0.007135484, 0.006994121, 0.007808643, 0.022389263, -0.01606157, 0.011854327, 0.005311223, 6.344522E-4, -0.019992819, -0.0025091995, -0.021433378, -0.004601041, 0.018821523, 0.0054727816, 7.5225503E-4, 0.010615715, 0.02113719, -0.0085827755, 0.022995107, -0.0027027328, 8.641677E-4, -0.028218819, 0.027599514, -0.005206884, 0.020154376, -0.009107839, 0.011261947, -0.02953821, -0.0063613513, -0.0026606603, -0.0049510836, -0.009269398, 0.0014910469, 0.04313602, 0.0054088314, -0.024597226, -0.011261947, 0.017394425, 0.02080061, -0.0125409495, -0.011309069, 0.015348022, 0.0054054656, 0.041708924, 0.0092559345, -0.007465332, 5.540939E-4, 0.031126866, 0.019858187, -0.01898308, 0.00881165, 0.02228156, 0.026024321, -0.014567158, 0.0218642, -0.012816945, 0.01580577, 0.027182154, 0.018915763, -0.019252343, 0.019790871, 0.028999684, 0.004947718, 0.001031616, 0.014284431, 0.022550821, -4.4807137E-4, 0.010184893, 0.0045034327, -0.010965758, 0.0088856965, -0.0134160565, 0.0011090293, 0.009841583, -0.0120024225, 9.2980066E-5, 0.004994839, 0.026764797, 0.02652246, 0.017354036, 0.01665395, -0.011982228, -0.015751917, -0.025122289, -2.400232E-4, -0.04388996, 0.0013934389, -0.0094242245, 0.020275544, -0.013294888, 0.024166403, 0.012419781, 0.0030527755, -0.019144638, 0.023977919, 0.04165507, -0.0073172366, -0.033227123, 0.0052977605, 0.025203068, -0.022496969, -0.021675715, -0.0089530125, 0.006233451, 0.016680876, 0.036350578, 0.006283938, 0.020962168, -0.005937261, 0.018875375, -0.010359915, 0.009094376, 0.034250323, -0.026926355, 0.0025781984, -0.023022033, -0.0022954717, -0.005240542, -0.0028659739, -0.027559124, 0.03144998, -0.022335412, 0.013759367, -0.0065161777, 0.03271552, -0.013301619, 0.015873086, -0.042732123, -0.010346452, -0.030022886, 0.0055737556, 0.0018596014, 0.0042139743, -0.018202215, 0.010056993, -0.022981644, -0.009249203, -0.015657675, -0.024839561, -0.019938966, 0.06553875, 0.02699367, -0.006139209, 0.021002557, -0.02792263, -0.012291881, -0.027949557, -0.020652514, 0.009000134, 0.0076942057, -0.016586635, 0.011894717, -0.020477492, 0.0033085758, -0.0041904137, -0.025660817, 0.010797468, -0.02792263, 0.01338913, 7.415265E-5, -0.021298746, -0.011255216, 0.0052169813, 0.0014792666, 0.0070008524, 0.0023981284, 0.013826683, 9.6261717E-4, 0.017986804, -0.016371224, -0.010124309, -0.012466902, 0.014971053, -0.013146793, -0.029268946, 0.017152088, -0.009821388, -0.018511869, 0.011107122, 0.008118296, -0.0033001613, 0.0037865187, 0.0041634873, -0.002489005, -0.006694565, -0.009329982, 0.0027936094, 0.0065733963, -0.008246196, -0.02381636, 0.039258625, 0.0028087553, -0.023237444, -0.016075034, 0.004405825, 0.026266659, -0.025835836, -0.031207645, -0.009101108, -0.028972758, -0.004500067, -0.017771393, 0.0026488802, -0.017690616, 6.718967E-4, -0.014836421, 0.004338509, 0.011497553, -0.007674011, -0.009430956, -0.018606111, -0.0218642, -0.015051832, 0.014674863, 8.7678945E-4, 0.0030409952, 0.013066013, -0.041331954, 0.02385675, 0.01987165, -0.012231297, 6.13416E-4, -0.009666561, -0.030319076, 0.003404501, -0.010999416, 0.02496073, -0.025620427, 0.02492034, 0.011261947, 0.008427949, -0.020814072, 0.02770722, 0.011208095, -3.2942713E-4, 0.016048107, 0.029268946, 0.02648207, 0.015967328, -0.020113986, -0.0052506393, -0.005011668, -8.9614274E-4, 0.027060986, 0.014432526, 0.010595521, 0.011827401, 4.7331484E-4, 0.02152762, -0.020881388, -0.01106, -0.0052102497, -0.003635058, 0.003783153, -0.023614412, 0.016734729, 0.014176725, 0.020989094, -0.018161826, -0.016465466, 0.029726695, -0.040820353, 0.031853877, 0.0026051248, -0.01876767, 0.013207377, -0.010689762, -0.004237535, 0.0012243077, 0.021500694, 0.05013687, 0.027976483, 0.015146075, -0.0033355022, -0.014688326, -0.028784273, -0.023762507, -0.004823183, 0.013099671, -0.0075057214, -0.024745319, 0.017232867, 0.021743031, 0.036673695, 0.0039985636, -0.023614412, -0.026495533, -0.0025243456, 0.008340438, 0.028164966, -0.02008706, -0.028030336, -0.029672842, -0.026966743, -0.00421734, -0.00432168, -0.002795292, -0.03072297, 0.0031638467, 0.028488083, 0.005348247, -0.013422788, -0.002699367, 0.014769105, 0.0019757212, 0.00749899, -0.025283847, -0.012621729, -0.031853877, 0.0031352374, 0.031503834, 0.010568595, 0.007323968, -0.029161243, -0.010629178, 0.019710092, -0.022766232, -0.0223758, -0.012958308, -0.032015435, 0.0028895345, -0.016155813, -0.0049712784, -0.014567158, -0.04267827, -0.011955301, 0.048709776, -0.0055266344, 0.033119418, 0.030588338, 0.011618722, -0.021581473, 0.039393257, 0.003712471, 0.02813804, 0.010312794, -0.018040657, -0.029861327, -0.019050395, 0.028972758, -0.005567024, 0.0021473768, -0.0018629672, -0.039500963, -0.008508728, 0.007047973, 0.006973926, -0.010965758, 0.023749044, 0.0062435484, -0.023991382, -0.0066373465, -0.0026000761, -0.038235422, -0.010373378, 0.009457882, -0.030076738, 0.021648789, -0.023829823, -0.0040322216, 0.02334515, 0.013018892, 0.0118004745, -0.0068291966, 0.014809495, 0.021164116, -0.017757932, -0.0060954536, -0.020289008, -0.0047861594, -0.0064555933, 0.023466319, 0.028541936, -0.029134316, -0.0022315215, 0.0017317012, -0.0089193545, -0.0073508946, -0.016761655, -0.0076470845, 0.01606157, 0.029080464, -0.011147511, -0.011591796, 0.004651528, 0.0041163666, -0.005136202, 0.011127316, 0.018444553, -0.011807206, 0.0043418747, 0.015401875, -0.02038325, 0.015698064, 0.006351254, -0.02271238, 0.02924202, -0.0045707487, -0.011194631, 0.0046077725, 0.016425077, 0.049813755, -0.0020497688, 0.01072342, 0.018417627, 0.004143293, -0.0018074316, -0.011147511, 0.018309921, 0.029134316, -0.029484358, 0.012823677, -0.015873086, -0.005694924, -3.784415E-4, -0.007889422, -0.01292465, -0.016128886, 0.01262846, -0.011019611, -0.018107973, -0.008825113, -0.017003993, -0.017690616, -0.016276982, -0.030130591, -0.017017456, -0.011490822, 0.001046762, -0.026455143, 2.4107502E-4, 0.0018444553, 0.02113719, 0.018579185, 0.021500694, -0.012063007, -0.012466902, 0.017098235, -0.0327963, -0.007929811, 0.027141765, -0.0036552525, -0.0070748995, 0.016963603, 0.0034499392, 0.0017788223, 0.025418479, -0.0035004262, -0.026616702, -0.013597809, -0.0047693304, -0.018282995, 0.013947852, -0.017731005, -0.0013648296, 0.01135619, 0.014742179, -0.01732711, -0.016721265, -0.0056006815, -0.012446707, 0.002796975, 0.020181302, -0.03686218, 0.017892562, 0.007566306, 0.003517255, 0.002913095, 0.005567024, -0.02008706, -0.006728223, 4.766806E-4, 0.0049679126, 1.7586275E-4, -0.012534218, 0.00821927, -0.020167839, 0.008878966, -0.021716105, 0.009101108, 0.02567428, -0.018148363, -0.031073013, 0.035354305, -0.028488083, -0.031934656, 0.0045539197, -0.01635776, -0.010528205, -0.030238297, -0.0022029125, 0.032904007, 0.010097383, -0.022739306, 0.00889916, -0.014270968, -0.023277834, 0.004580846, -0.0011224924, 0.016775118, 0.0047222096, 0.023802897, 0.020262081, 0.0045236275, 0.016209666, 0.031503834, -0.0091549605, -0.0025950274, -0.005068886, 0.023883676, 0.013409325, 0.011053269, -0.05021765, -0.033065565, 0.027101375, 0.022914328, 1.894574E-5, 0.010326257, -0.02695328, 0.016317371, 0.029780548, -0.013106403, 0.033415604, 0.026805187, 0.00468182, -0.055145174, -0.006960463, -0.0016509221, -0.010144504, 0.005624242, -0.0134497145, -0.015482654, -0.011113853, 1.3473695E-4, -8.903578E-5, -0.007950006, -0.02271238, 0.003340551, 0.007855764, 0.0047659646, -0.019225417, 0.060961265, 0.004890499, -0.032096215, 0.011160974, 0.01584616, -0.01017143, -0.009605977, 0.0051160073, -0.029080464, -0.018175289, -0.012231297, 0.01017143, 0.0047827936, -0.0024940537, -0.0089530125, 0.0021507426, -0.038881656, 0.03271552, 0.017825246, -0.010306062, -0.036135167, 0.0011477359, -0.0036148631, 0.016250055, 0.010561863, 0.02648207, -0.040416457, 0.025283847, -0.0046380647, -0.030480633, -0.03072297, 0.030346002, 0.017259793, -0.009249203, -0.001104822, 0.20377865, 0.021514157, -0.016963603, 0.055791408, 0.012029349, -0.0031991876, 0.0014716935, 0.007115289, -0.0127092395, -0.008374096, -0.0013606224, 0.009868509, -0.02606471, -0.0011864424, 0.018215679, 0.0042409007, -0.042382084, -0.018740743, 0.011436969, -0.018229142, 0.002470493, -0.0040524164, -0.006893147, -0.025687743, 0.0038841267, 0.013597809, -0.00843468, -0.022698916, 0.005479513, 0.013867073, -0.001751896, -0.0034835972, -0.0025580036, 0.026051247, -0.025876226, 0.006199793, 0.011039806, 0.0043418747, -0.006644078, 0.028272672, -0.016088497, 0.0024755418, 0.010238746, 1.3031934E-4, -0.0043923617, 0.0064454963, -0.028084189, 0.0015356437, -0.013496835, -0.02127182, -0.028084189, 0.0025882958, 0.004580846, 0.024031771, -0.0073508946, -0.021621862, 0.014217115, -0.006771978, 0.005331418, -0.015348022, -0.022295022, 0.028111113, -0.00889916, 0.04143966, -0.004580846, -3.9106322E-4, -0.023870213, -0.011537943, 0.043916885, 0.012998697, -0.03565049, -0.0024940537, 0.0056579, 0.0077951797, -0.007169142, -0.018875375, -0.005223713, -0.0029198267, 3.1827792E-4, 0.019265806, 0.007068168, 0.014432526, 0.0046111383, 0.001054335, 0.014230578, -0.027141765, 0.0015600456, -0.0056309737, -0.001179711, -0.0062098904, -0.0038201765, -0.0012520755, -0.010440694, -0.008044248, -9.802876E-4, -0.023466319, -0.019306196, 0.031800024, -0.013166987, 0.005153031, -0.017407889, 0.054256603, -0.018606111, -0.0120697385, -0.036081314, -0.012251492, -0.010837858, 0.0322847, 0.030184444, -0.034331102, 0.0033270877, -0.033334825, -0.02101602, -0.014284431, 0.007620158, -0.006543104, 0.0013244401, -0.024368351, 0.008926086, -0.029268946, 0.018915763, -0.007889422, 0.0032429427, -0.013537224, 0.018700354, -0.031342275, -0.0121370545, 0.017555984, -0.018027194, -0.017313646, 0.013146793, -0.0034936946, 0.0017300183, 0.0016778485, -0.0062267194, 0.010036798, 0.0041331956, -0.020598661, 0.0035004262, -0.014647936, -0.0010619081, 0.02224117, 0.005937261, 0.0011342727, 0.011665843, -0.037346855, 0.0072970423, -0.017892562, -0.013759367, 0.0010509692, -0.019171564, 0.008979939, -0.012695776, -0.028918905, 0.012736166, 0.0015995938, -0.017986804, -0.020450566, 2.295051E-4, 0.00582619, -0.02356056, 7.1312767E-4, 9.205447E-4, 0.011625454, -0.020706367, -0.024933804, -0.16942063, 0.015496117, 0.04030875, 6.5675064E-4, 0.016532782, -0.00936364, 0.013436251, 0.004271193, -0.004860207, 0.009336714, 0.004863573, -0.016236592, -0.031423055, -0.017394425, 0.006125746, 0.001979087, -0.030669117, 0.019360049, 0.010608983, -0.005449221, -0.0021692545, -0.029457431, 0.017731005, -0.016680876, 0.005287663, -0.0044563115, 0.005139568, 0.039554816, 0.022604674, -0.0119687645, -0.009976215, -0.043539915, 0.030103665, -0.02492034, 0.029699769, -0.017111698, -0.0074855266, -0.011046537, -0.02622627, 0.046151772, 0.0059675532, -0.010905174, 0.0030056543, -0.0067046625, 0.0022786427, 0.008555849, -0.008777992, -0.004961181, -1.3989082E-4, 0.015442264, 0.044051517, -0.023547096, 0.030776823, -0.017313646, 0.03190773, 0.0034280615, -0.006697931, 0.027168691, 0.015119148, -0.022321949, -0.03928555, -0.011955301, -0.0021322307, 0.0062031588, -0.00408944, -0.029780548, 0.009727146, 0.031934656, -0.028245745, 0.004890499, 0.006092088, 5.1664945E-4, 0.0054088314, 9.281178E-4, 0.009276129, 0.010016604, -0.017461741, 0.005072252, 0.0352466, 0.0014826324, -0.0042106085, 0.04448234, -0.001309294, 0.020248618, -0.016627023, 0.0040860744, 0.01766369, 0.011396579, -0.00641857, -0.011470627, -0.011120585, -0.017704079, -0.021042947, -0.002897949, -0.020140912, 0.018902302, -1.0102642E-4, -0.018673427, 0.016802045, -3.8327984E-4, 0.010427231, -0.0043284115, -0.027814925, -0.002308935, 0.06774671, 5.1328365E-4, 0.017421352, 0.015967328, 0.022645064, 0.022227706, -0.032527037, 0.034896556, 0.032850154, 0.033577163, -0.008367364, 0.015374948, -0.034546513, -0.021931516, 0.017852172, -0.019804334, 0.031584613, -0.02685904, -0.01953507, -5.2085664E-4, -0.028972758, -0.041789703, -0.06580801, -0.00902706, 0.04585558, 0.01169277, -0.023950992, -0.00546605, -1.5829751E-4, 0.044374634, -0.020477492, 0.02873042, -0.0011906497, -0.0073508946, -0.008596239, 0.011706233, 0.020504419, 0.0057689715, 0.012063007, -0.008609702, -0.024260646, 0.011396579, -0.02127182, -0.027653366, 0.0013740856, -9.163375E-4, -0.0021053043, -0.012655387, -0.0090876445, 0.0062873038, 0.019413901, 0.017811783, 0.004755867, -0.018067583, 0.02851501, 0.004739038, 0.01106, -0.034761924, -0.01368532, -0.0124736335, -7.3121884E-4, -0.0322847, -0.0026068077, 0.006495983, 0.01610196, -0.017811783, -0.020531345, -0.019104248, 0.0020396714, 0.026212806, 0.0019353317, -0.030103665, 0.0067450516, -0.020854462, 0.002785195, -0.021648789, 0.024691466, -0.009969483, 0.013119866, -0.01699053, -0.013893999, 0.013368935, -0.011403311, 0.008293318, -0.0038336397, 0.020652514, 0.0018225777, -0.018417627, -0.003239577, 0.0022163757, 0.01724633, -0.008495265, -0.0028020237, 0.029726695, -0.014257505, 0.023358613, -0.035058115, 0.001292465, -0.0041500246, -0.026320511, 0.008246196, 0.010285867, -0.035785124, -0.009754072, 0.011679307, -0.035219673, 0.0057555083, 0.025014583, 0.009060718, -0.018498406, 0.021689178, -0.062092174, 0.020773683, 0.02652246, 0.04601714, -0.007990396, -0.012561144, -0.011039806, 0.004439483, 0.004126464, -0.009733877, -0.0011115535, -0.021123726, -0.018848449, -0.08810303, 0.044940084, 0.016936677, -0.018538795, 0.009922362, 0.019171564, 0.026118563, -0.024691466, -7.896995E-4, 0.020140912, -0.016223129, 0.0073374314, -0.0039514424, 0.0046212357, -0.007424942, 0.00965983, 0.00843468, -0.0253377, 0.014876811, 0.0022298386, 0.020289008, 0.009558856, -0.010750347, -0.007788448, -0.017071309, 0.0012276735, -0.012816945, 0.02030247, 0.010999416, 0.004143293, 0.037212223, -0.02334515, -0.0038235423, 0.03686218, -0.013395862, -0.0042981193, -0.0070883627, -0.009545392, -0.028595788, -0.020935241, -0.011544675, 0.001219259, -0.0071893367, -0.005970919, -0.013072745, -0.008226002, 0.003062873, 0.0058699455, 0.0033523312, 0.036215946, 0.0118341325, 0.01606157, -0.0027279763, -0.038800877, 0.0062267194, -0.021675715, -0.0021541084, -0.01495759, 4.2466858E-5, -0.0035711078, 0.06575416, 0.010959026, -0.002717879, -0.019508144, -0.0062570116, -0.012130323, -0.019171564, 0.012143786, -0.0065834937, -0.005462684, -0.020854462, -0.015132612, 0.010629178, 0.01766369, 0.0047053806, 0.0067012967, 0.013496835, -0.026751334, -0.026172416, 0.014553695, 0.018956153, -0.015644211, -0.012170712, -0.0017569446, 0.011995691, -0.021998832, -0.027114838, -0.002731342, -0.012769824, 0.0093569085, -0.026172416, 0.011813938, -0.0032193824, 0.0132814245, 0.019467754, -0.007916348, -0.0014085849, -0.021110263, -0.00792308, 0.02067944, 0.0043486063, 0.0071085575, 0.009706951, 0.007115289, -9.188618E-4, 0.014136336, -0.02415294, -0.02113719, -0.013907462, -0.004166853, -0.004022124, 6.4707396E-4, 0.0023005204, 0.012231297, -0.021083336, -0.0012226248, -0.014190189, -0.0039649056, -0.017744469, 0.01754252, 0.030480633, 0.013012161, 0.013658393, -0.009451151, 0.019548533, 0.0042812903, -0.001506193, -0.002796975, 0.021810347, -0.006647444, 0.019804334, -0.0028929003, -3.645576E-4, -0.016048107, -0.011039806, -0.021716105, 0.012352465, 0.01521339, 0.006920073, 0.09601938, 0.02496073, -0.018000267, -0.012399586, -0.002517614, 0.019790871, 0.01106, -0.004008661, -0.009982946, -0.033550236, 0.010588789, -0.011638917, -0.022698916, -0.006758515, -0.029672842, 0.0074586, 0.016115423, -0.0013362203, -0.01169277, -0.032311626, 0.023641339, -0.019144638, -0.0051833233, -0.010083919, -0.014769105, 0.013651662, 0.023116276, 0.015617286, -0.0032126508, -0.04084728, 0.033334825, -0.01919849, -0.009141497, -0.020989094, -0.0034600366, 0.002046403, -0.017852172, 0.030399853, 0.010797468, 0.0021170846, -0.0060315034, 0.026091637, -0.024314499, -0.018309921, 0.0073845526, -0.016223129, -0.011881254, -0.026333975, -0.05665305 ], - "id" : "8bbe96d4-56b8-4632-8b41-30c00c60741b", - "metadata" : { - "name" : "Blaze X1" - }, - "text" : "price: 799.99\nname: Blaze X1\nshortDescription: Blaze X1 is a high-performance road bike that offers superior speed and agility, making it perfect for competitive racing or fast-paced group rides. The bike features a lightweight carbon frame, aerodynamic tube shapes, a 12-speed Shimano Ultegra drivetrain, and hydraulic disc brakes for precise stopping power. With its sleek design and cutting-edge technology, Blaze X1 is a bike that is built to perform and dominate on any road.\ndescription: ## Overview\nIt's right for you if...\nYou're a competitive road cyclist or an enthusiast who enjoys fast-paced group rides. You want a bike that is lightweight, agile, and delivers exceptional speed.\n\nThe tech you get\nBlaze X1 features a lightweight carbon frame with a tapered head tube and aerodynamic tube shapes for maximum speed and efficiency. The bike is equipped with a 12-speed Shimano Ultegra drivetrain for smooth and precise shifting, Shimano hydraulic disc brakes for powerful and reliable stopping power, and Bontrager Aeolus Elite 35 carbon wheels for increased speed and agility.\n\nThe final word\nBlaze X1 is a high-performance road bike that is designed to deliver exceptional speed and agility. With its cutting-edge technology and top-of-the-line components, it's a bike that is built to perform and dominate on any road.\n\n## Features\nSpeed and efficiency\nBlaze X1's lightweight carbon frame and aerodynamic tube shapes offer maximum speed and efficiency, allowing you to ride faster and farther with ease.\n\nPrecision stopping power\nShimano hydraulic disc brakes provide precise and reliable stopping power, even in wet or muddy conditions.\n\nAgility and control\nBontrager Aeolus Elite 35 carbon wheels make Blaze X1 incredibly agile and responsive, allowing you to navigate tight turns and corners with ease.\n\nSmooth and precise shifting\nThe 12-speed Shimano Ultegra drivetrain offers smooth and precise shifting, so you can easily find the right gear for any terrain.\n\n## Specifications\nFrameset\nFrame\tADV Carbon, tapered head tube, BB90, direct mount rim brakes, internal cable routing, DuoTrap S compatible, 130x9mm QR\nFork\tADV Carbon, tapered steerer, direct mount rim brakes, internal brake routing, 100x9mm QR\n\nWheels\nWheel front\tBontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, 100x9mm QR\nWheel rear\tBontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, Shimano 11-speed freehub, 130x9mm QR\nTire front\tBontrager R3 Hard-Case Lite, aramid bead, 120 tpi, 700x25c\nTire rear\tBontrager R3 Hard-Case Lite, aramid bead, 120 tpi, 700x25c\nMax tire size\t25c Bontrager tires (with at least 4mm of clearance to frame)\n\nDrivetrain\nShifter\tShimano Ultegra R8020, 12 speed\nFront derailleur\tShimano Ultegra R8000, braze-on\nRear derailleur\tShimano Ultegra R8000, short cage, 30T max cog\nCrank\tSize: 50, 52, 54\nShimano Ultegra R8000, 50/34 (compact), 170mm length\nSize: 56, 58, 60, 62\nShimano Ultegra R8000, 50/34 (compact), 172.5mm length\nBottom bracket\tBB90, Shimano press-fit" - }, - "eba449d8-374f-4116-aa6f-238d0deb8035" : { - "embedding" : [ 0.0368195, -8.107723E-4, -0.032040566, 6.3894456E-4, -0.013413593, 0.00525411, -0.003478981, -0.024695674, 0.0056987405, -0.0332353, -0.0065472727, 0.0041408357, -0.029270958, -0.012707614, -0.012171342, 0.013379652, 0.019726671, -0.021030016, 0.016061014, 0.0044293366, 0.014268913, 0.010046618, -0.023202257, -0.00647939, -0.020419072, 2.4289227E-4, 0.029270958, -0.009951583, 0.0015774209, -0.013671547, 0.016210355, 0.00914378, -0.032284945, -0.012890898, -0.0036724464, -0.002044962, 0.008349555, -0.00684935, 0.043879285, -0.001753067, 0.046594586, 0.011682588, -0.007996565, 0.0073652575, -0.0114382105, 0.019468717, 0.0105693145, 0.009279545, 0.016332543, 0.02128797, -0.013257463, 0.03736256, -0.003136174, 0.0017445817, -0.011981271, -0.027859, 0.0014119572, 0.0012566758, 0.032936618, 0.022794962, 0.0063232603, 0.012666885, -0.03926327, -0.0065676374, -0.034077045, -0.025876831, -0.006720373, -2.462864E-4, 0.0056749815, 0.027478859, 0.013719064, 0.012164555, 0.03315384, 0.014431831, 0.0038591232, -0.016101742, -0.0034178868, 0.008125542, 0.017663041, 0.008593932, 0.028184837, -0.0142553365, -0.009551075, 0.020962134, 0.018192526, 0.014377525, 6.38096E-4, 0.015164963, -0.018708432, 0.008111966, 0.0049825795, 0.009204875, 0.0045040078, 0.018572668, 0.03339822, -0.012320684, -0.023609553, -4.951184E-4, -0.013223522, -0.01887135, 0.03972487, 0.005206592, -0.013841254, -0.014391102, -0.03736256, -0.018504785, -0.0108747855, 0.0012312199, 0.0040152534, 0.0023657072, -0.021708842, 0.010732233, 8.9265563E-4, 0.013474687, 0.01272798, -0.019360105, 0.023935389, -0.007426352, 0.031334586, -0.030492844, 0.025618877, 0.016943486, -3.075928E-5, -0.026094055, -0.005172651, 0.018531937, -0.00653709, -0.0076299994, 0.025089392, -0.00739241, -0.004680502, -0.0063843546, 0.017187864, 0.013603664, -0.025591724, -0.0019821706, -0.013359287, 0.0037403288, -0.0199982, -0.026311278, 0.0195366, 5.6300097E-4, -0.0035468636, 0.014879856, -0.017663041, -7.2973745E-4, -0.0152056925, 0.012666885, 0.032447863, -0.011648647, 0.023460211, 0.005542611, 0.012008424, 0.012117037, 0.0044429135, -0.0019499265, -0.0017920994, 9.961765E-4, -0.014241761, -0.018219678, 0.0010886665, 0.0018124642, 0.002997015, -0.008240942, 0.031769037, 0.032556474, 0.005396663, -0.023731742, 0.0035264988, -0.029216653, -0.009361004, 0.021410158, -0.030682916, 0.03361544, -0.008899403, -4.9808825E-4, 0.009252393, -0.011153104, -0.014703361, -0.0069443854, 0.031090211, -0.015558682, 0.021926066, 0.007989777, -0.0037912407, -0.018477632, -0.0024284984, -0.034348574, 0.01147894, 0.003981312, -0.0038625174, 0.009075898, 0.010528585, -0.0035095282, -0.60084206, -0.024261225, -0.009815818, -0.009971947, -0.008390284, 0.018246831, 0.011302446, 0.016074589, 0.0073448927, 0.0067034024, -0.03269224, 0.008207001, -0.015083504, -0.0296511, -0.04366206, -0.02856498, 0.024030425, -0.007786129, -0.003131083, -0.015531529, -0.014404679, -0.003584199, -0.039860636, 0.0069240206, -0.008512473, -0.0026151754, -0.0075281756, -0.01268725, 0.019210763, 0.022659197, -0.033018075, 0.05096622, 0.029976936, -0.016834874, 0.03358829, -0.057455797, 0.0064284783, 0.022604892, 0.02047338, 0.024424143, -0.018803468, 0.0038319703, -0.00875685, -0.009680052, -0.0014009263, -0.013291405, 0.03182334, -2.0842066E-4, 0.0030581092, -0.019740248, 0.016142473, 0.012850168, 0.0035672283, -9.919339E-4, 0.0023962543, -0.0023080069, 0.047517788, -0.005036886, 2.469228E-4, 0.008804368, 0.009014804, 0.006296107, -0.018369019, -0.015925247, -0.017622313, 0.031035906, -0.02556457, -0.028021919, 0.039914943, -0.016766991, 0.011920176, 0.01968594, 0.012890898, 0.032393556, 0.011343176, 0.03736256, 0.042548787, -0.006204466, -0.014689785, 0.025211582, 0.013284616, 0.0075553283, -0.0175137, -0.030194161, 0.019047845, -0.004541343, 0.017663041, -0.0069477796, 0.012327473, 0.00801693, 0.019007117, -0.014730515, 0.009218452, -0.012748344, 6.5421814E-4, 0.018939232, -4.6711683E-4, 0.013671547, 0.0059397235, -0.02646062, -0.011112374, 0.0108747855, 0.0159524, 0.021233663, 0.027967613, -0.003316063, 0.0021433916, -0.011601129, 0.0066457023, -0.025075816, 9.6053816E-4, -0.016794145, -0.027804695, 0.010847633, -0.018396173, -0.023867507, 0.012544696, 0.009428887, 0.015694447, -0.03880167, 0.011750471, -0.0152056925, 0.016142473, -0.030167008, 0.0010182384, 0.015870942, 0.01284338, 0.0076367874, -0.013033451, -0.0097683, 0.011444999, 0.0068629263, 0.043987896, -0.0043037543, 0.014879856, 0.018192526, 0.002309704, 0.013284616, 0.009374581, -0.016142473, -0.03385982, 0.012945203, -8.1204507E-4, -0.048386686, -0.01688918, -0.02829345, -0.011390693, 0.012795862, -0.011044492, 9.376278E-4, -0.015056351, -0.026677845, -0.030411385, 0.007032633, -0.007650364, -0.021070745, -0.0077657644, -0.0099991, -0.020867098, -0.021776725, 0.0102638425, 0.010929092, -0.013712277, -0.0052982336, 0.005172651, 0.0152056925, 0.013630818, 0.029732559, -0.014105995, -0.031334586, -0.0037776642, -0.007908318, -0.017418664, 0.020337613, -0.009075898, 0.012836591, -0.022781385, 0.0096529, 0.006367384, -0.016088165, 0.0039405823, 0.021735994, -0.042250104, 0.017310051, 0.018233255, 0.0022367302, 0.018111067, 0.013610452, -0.015490799, 0.020256154, -0.009320275, 0.006241801, -0.021383006, 0.0015714812, -0.008010142, 0.0033279422, 0.020731334, 0.009978736, 0.013148851, 0.009109839, 0.003954159, -0.013841254, 0.011037704, 0.006713585, 0.012408932, -0.0107458085, 0.032094873, -0.009564652, 0.020609144, 0.018477632, 0.015640141, -0.031850494, -0.013447534, 0.0025337164, -0.020066084, 3.165024E-4, -0.01482555, 0.049988713, -0.011872659, -0.02012039, -0.007439928, 0.025428806, 0.03937188, -0.00961217, 0.0087500615, 0.016712686, 0.010121289, 0.044883948, 0.0030224707, -0.009347428, -0.0019550177, 0.033425372, -4.3423622E-4, -0.016943486, 0.012551485, 0.0182061, 0.014798397, -0.021097898, 0.038747363, -0.0064115073, 0.022794962, 0.0291895, 0.015002045, -0.02191249, 0.012694038, -0.0034603134, -0.00864145, 0.026447045, 0.0399964, 0.027410977, -0.01988959, 0.012809439, -0.0035943813, -0.017296476, -7.670729E-4, 0.007915106, 0.0054543633, -0.008254519, -0.01003983, 1.7087313E-4, 0.002974953, 0.017703772, 0.036276437, 0.0019210763, -0.0045922548, -0.011960906, -0.0065540606, -0.016862027, 0.005223563, -0.045209784, -0.0033058806, -0.005980453, 0.021926066, -0.015477223, 0.01432322, 0.0018956204, 0.020500531, 5.520761E-5, 0.031497505, 0.023609553, -0.005359328, -0.016278237, 0.011302446, 0.007643576, -0.0015163266, -0.006805226, -0.01428249, 0.0069986917, 0.00840386, 0.04176135, 0.017581582, 0.014716938, -0.0051217386, -0.009177722, -0.02681361, 0.0106507735, 0.04197857, -0.0041781715, 0.007066574, -0.014241761, 0.0072566452, -0.0069443854, -0.020011777, -0.0296511, 0.01887135, -0.02435626, -0.002175636, -0.005715711, 0.036439355, 0.006136583, -0.01198806, -0.04070238, -0.01782596, -0.01540934, -0.0021586653, 0.0022435186, -0.0014246851, -0.007243069, 0.006710191, -7.933774E-4, -0.025537418, -0.010888362, -0.014811974, -0.028347755, 0.052785475, 0.019509446, -0.011044492, 0.011689376, -0.037335407, -0.007222704, -0.012660096, -0.02035119, 0.013155639, 0.018369019, 0.013576511, 0.014716938, -0.0071276682, -0.019278646, -0.031307437, -0.023012187, 0.013617241, -0.017622313, 0.018722009, -0.013019875, -0.0070869387, -0.024763556, -5.349994E-4, 0.010229901, 0.021437312, -0.01132281, 0.029623948, 0.006513331, 0.0070529976, -0.016549768, 0.013590088, -0.010555738, 0.026786456, -0.010576102, -0.035081707, 0.021627383, -0.004436125, -0.0052167745, 0.012904474, 0.019332953, -0.011424635, 0.006248589, 0.013678335, 0.0014077146, 0.017961724, -0.012279955, -0.0067373435, -0.0056546167, 0.009890488, -0.026474196, 0.025727488, 0.01428249, -0.011580764, 0.022441974, -0.014852704, 0.016318966, -0.0056953463, -0.04176135, -0.030710068, -0.016536191, 0.0119541185, -0.025944714, 0.011906601, -0.0014832339, -0.013780159, 1.8014731E-6, -0.010942668, 0.0011862477, -0.007141245, -0.024111884, -0.02043265, -0.014703361, -0.0116961645, 0.017092828, -0.0056104935, -0.0035740165, 0.0110037625, -0.026528504, 0.019319376, 0.0159524, -0.0193058, 0.009707206, 0.003794635, -0.0077657644, -0.0101823835, -0.004388607, 0.040322237, -0.0055052754, 0.02389466, -0.0065981844, 0.017024945, -0.015042774, 0.03155181, -0.020256154, -0.035244625, -0.0014442013, 0.014336796, 0.01482555, 0.005474728, -0.0053559337, 0.016427578, -0.021668112, -0.008702544, 0.007114092, 0.03901889, -0.009462829, 0.042195797, -0.0050911917, 0.0064997547, -0.013956654, -0.020446226, -0.012544696, -0.012904474, 0.021966795, -0.023473788, 0.023881083, 0.024396991, 0.0074806577, -0.010949456, -0.006557455, -0.008865462, -0.04518263, 0.038394373, -0.003719964, -0.0038726998, 0.012999509, -0.0037606936, 0.010759385, -0.017052097, 0.026487773, 0.03836722, 0.024912897, 9.376278E-4, 0.007249857, -0.022088984, -0.017065674, -0.007412775, 0.004748385, 0.023161529, -0.006330048, -0.012789073, 0.027329518, -0.004697473, 0.00840386, -0.008838309, -0.015029198, -0.013725853, 0.0035638341, 0.004480249, 0.043607753, -0.02299861, 0.0020279915, -0.02218402, -0.025360923, -0.0072362805, -0.0120830955, -5.324538E-4, -0.019645212, 0.0033584894, 0.0332353, 8.4598636E-4, 0.0033567925, -0.009476405, 0.0042460538, -7.344044E-4, -0.004806085, -0.039752025, -0.020378344, -0.03000409, 0.01868128, 0.04078384, 0.017187864, -0.009150568, -0.047925085, 0.0050334916, 0.024274802, -0.009931218, -0.01688918, -0.012599003, -0.034430034, 0.0040152534, -0.021681689, -0.0045209783, 0.0021892125, -0.043607753, -0.008037294, 0.036520816, -0.010800115, 0.024777133, 0.014567597, -0.0037267522, -0.008974074, 0.037444018, 0.012700826, 0.022048254, 0.01385483, -0.020514108, -0.03160612, -0.024139037, 0.018735586, -0.009713993, 0.007772553, 0.015097081, -0.019292222, 0.0032702421, -0.010257054, 0.009347428, -0.031687576, 0.006611761, 0.0013848041, -6.3512614E-4, -0.030248467, -0.022428397, -0.04121829, -0.008417437, -2.91895E-4, -0.024600638, 0.015898095, -0.036602274, -0.01778523, 0.014201031, 3.691114E-4, 0.014350372, 0.0014951132, 0.016766991, 0.02003893, -0.009680052, 0.009062321, -0.03671089, 0.0048705735, 0.0075621167, 0.034239963, 0.0055052754, -0.015042774, -0.006031365, -2.3042945E-5, -0.014404679, -0.0096529, -0.023392329, 0.0030241678, 0.02195322, 0.014146725, -0.013651182, 0.0010589679, 3.8883978E-4, -0.0061399774, -0.0032023597, 0.006934203, 0.008743273, -5.625767E-4, -0.011112374, 0.026623538, -0.030628609, 0.00488415, 0.010515008, -0.02322941, -0.0106507735, -0.020201849, -0.0047891145, -0.014621902, 0.006903656, 0.057727326, 0.0014009263, 0.017690195, 0.027207328, -0.001435716, -0.020188272, -0.021858184, 0.008777214, 0.02397612, -0.020025354, 8.5574447E-4, -0.0018990145, -0.008505684, -0.020826368, -0.006951174, -0.012368202, -0.014608326, -0.01680772, -0.005820929, -0.0024980782, -0.007752188, -0.024817863, -0.0037301464, -0.008994439, -0.034810174, -0.02187176, -0.013311769, 0.003662264, -0.03619498, -0.019699518, -0.013630818, 0.023826778, 0.020622721, 0.0047619613, -0.0030445326, 0.003662264, 0.030139854, -0.026623538, 0.014567597, 0.019876013, 0.006985115, -0.02545596, 0.024003271, 0.0091845095, -0.012361414, 0.0022757626, -0.007813282, -0.016332543, -0.038937435, -0.021192934, -0.009035168, 0.0028323997, -0.01105128, 0.0029036764, -0.0025320193, 0.0049723973, -0.0028816145, -0.02864644, 0.014676209, 0.009415311, 0.0046261963, 0.021233663, -0.012246014, 0.017459394, -0.02510297, -0.0055392166, 0.011200622, 0.0037165699, -0.013393228, -0.0032244215, 0.0046499553, -0.021206511, 0.0069715385, -0.038068537, 0.0035197106, -0.0314432, 0.009666476, -4.225689E-4, -0.0011209107, 0.024220496, -0.021437312, 0.001963503, 0.024940051, -0.00864145, -0.009320275, -1.8466177E-4, 0.0014391101, -0.010012677, -0.0120830955, -0.00669322, 0.025089392, 0.019590905, -0.013535782, -0.0029291322, 0.005440787, -0.056478288, -0.0108747855, -0.007874376, 0.029216653, 0.020989286, 0.003906641, 0.0027475464, 0.011458576, 0.01782596, 0.034728717, -0.012171342, 0.0015027501, -0.0071208803, 0.024532756, 0.0012787377, -0.012347837, -0.054577574, -0.015667293, 0.028483521, 0.018355444, 0.0276282, -1.576148E-4, -0.021885335, 2.1669385E-4, 0.018966386, -0.013705488, 0.04024078, 0.03090014, -0.009130204, -0.026718574, -0.01210346, -0.009591805, -0.0029834383, 0.0024878958, -0.0021620595, -0.014458984, 0.0062010717, 0.009109839, -0.003183692, 0.008539625, -0.008064448, -0.017771654, 0.0107458085, -0.011010551, -0.025510265, 0.02794046, 0.002657602, -0.03467441, -0.0066355197, 0.024057578, -0.017106405, -0.016142473, -0.0063334424, -0.035543308, -0.0077182464, -0.016509037, 0.01183193, 0.008105177, -9.622352E-4, -0.0011421241, 0.0067373435, -0.023120798, 0.035353236, 0.012714403, -0.026243396, -0.049554266, 0.026867915, 0.007874376, 0.022251902, -0.005335569, 0.0077386117, -0.021097898, 0.027886154, -0.01217813, -0.018246831, -0.035787683, 0.029732559, 0.019957472, 0.003348307, 0.0041612005, 0.20495102, 0.008105177, 9.596896E-4, 0.05210665, 0.019604482, 0.028917968, 0.010732233, 0.009035168, 0.012565061, -0.024424143, 0.008023718, 0.029623948, -0.020188272, -5.3033244E-4, 0.03160612, -0.001912591, -0.04347199, -0.010107713, 0.00790153, 0.0023198863, 0.016712686, -0.0031802978, -0.020133967, -0.037959926, 0.013033451, 0.024451297, -0.035896298, -0.010528585, 0.014988468, 0.00716161, -0.022604892, -0.01634612, 0.009815818, 0.027587472, -0.045236934, 0.0066728555, 0.0055935225, 0.007460293, -0.009293122, 0.035163164, 0.005152286, -0.012483602, 0.0012727979, -6.6609755E-5, -0.0029053735, -8.5362315E-4, -0.027248058, -0.0043648486, -0.016400425, -0.018233255, -0.028347755, -0.008566778, -0.015599412, 0.03752548, -0.0067577083, -0.025727488, 0.014893433, 0.0016139077, 0.016631227, -0.012144189, -0.017703772, 0.031117365, -0.005814141, 0.025320193, -0.026718574, 0.011295658, -0.018776314, -0.0065167253, 0.018192526, 0.020242577, -0.030791527, -0.014336796, -0.007677517, -0.0021552711, -0.015898095, -0.029325264, 0.0042664185, -0.0079762, 0.013372864, 0.03573338, 0.016943486, 0.001129396, 0.007670729, -0.007487446, 0.012463237, -0.041489817, 0.0125175435, -0.0051421034, 0.0025693548, -0.008485319, -0.00647939, 0.007935471, -0.004537949, -0.0182061, -8.952012E-4, -0.0110037625, -0.014092418, 0.029759713, -0.017527277, -0.019346528, -0.026365586, 0.042060032, -0.0024845016, -0.010189172, -0.037579782, -0.005834506, -0.009232027, 0.04249448, 0.011838717, -0.047925085, 0.004931668, -0.025510265, 1.6843359E-4, -0.01855909, 0.028103378, -0.011105586, -0.013576511, -0.0071887625, -0.010257054, -0.013528993, 0.027003681, -0.029515335, 0.0012388567, -0.023256565, 0.0065540606, -0.021383006, -0.01630539, -0.0025897196, 0.001856588, -0.02043265, -0.0021909096, 0.0035502578, 0.018545514, -0.0088790385, -0.0043105423, -0.007487446, 0.0054034516, -0.020283308, 0.014662632, -1.00869234E-4, 0.019115727, 0.018083913, 0.0121306125, 0.005926147, 0.0101823835, -0.032366402, 0.020310462, 0.00653709, -0.018694855, 0.0010343605, -0.025198005, -1.008162E-4, -7.403441E-4, -0.018830622, 0.017839536, 0.012904474, -0.006401325, -0.024098307, 0.013352498, -0.027723236, -0.022686351, -0.023908237, -0.0060008178, 0.005406846, -0.028456368, 0.0030988387, -0.17128126, 0.0057021347, 0.03782416, -0.00840386, 0.019971048, -1.9473808E-4, 0.020595567, 0.0045583136, -0.0095714405, -0.004089924, 0.018884927, -0.0072023394, -0.03339822, -0.032230638, 0.023392329, 0.0054475754, -0.023215834, 0.009293122, 0.01638685, 0.007623211, 4.8493603E-4, -0.036955263, 0.008376707, -0.034701563, 0.015653718, 6.1306433E-4, -6.84341E-4, 0.04724626, -0.00875685, -0.011838717, 0.007507811, -0.04214149, 0.043634906, -0.017581582, 0.020201849, -0.019550176, -0.017853113, 0.00770467, -0.01105128, 0.04268455, 0.0018735585, 0.015273575, 0.026066901, -8.739879E-5, 0.013834465, 3.213815E-5, -0.018124642, -0.01397023, -0.011105586, -0.022985034, 0.043363377, -0.0054781223, -3.1448715E-5, -0.027546741, 0.034131348, 0.004110289, 0.009374581, 0.010990186, 0.028809357, -0.024139037, -0.027329518, -0.009055533, -0.0034399487, -0.009585017, 0.012850168, -0.037769854, -0.016441155, 0.027207328, -0.0253745, 0.0098293945, -0.025320193, 0.00945604, 0.016183201, 0.022251902, 0.026026173, 0.0058480822, -0.019332953, -0.008369919, 0.03630359, -5.8803265E-4, -0.01062362, 0.031497505, 0.010922303, 0.0011955815, -0.025428806, -0.0035027398, 0.0012057639, 0.0074738692, 0.014391102, -0.0050334916, 0.014676209, -0.02591756, -0.006445449, -0.010243477, -0.01428249, 0.010990186, -0.003798029, -0.020310462, 0.008974074, -0.017812382, 0.006744132, -0.005406846, -0.01062362, -0.0215595, 0.046051525, 0.0111327395, 0.028945122, 0.014363949, 0.028483521, 0.0055969167, -0.019794554, 0.007942259, 0.011852294, 0.03899174, -0.0023012187, 0.008098389, -0.02829345, -0.017758077, 0.02673215, 0.012429296, 0.028999427, -0.022862844, -0.008668602, 0.0157216, -0.014689785, -0.02946103, -0.07195551, -0.0117912, 0.038584445, 0.0077182464, -0.02397612, -0.011356751, -0.006564243, 0.02249628, -0.009123416, 0.02264562, 0.004561708, -0.025265887, -0.007806494, 0.021315122, 0.027438128, -0.013026662, 0.021993948, -0.018966386, -0.022469126, 0.018979963, -0.012748344, -0.02829345, -0.007426352, 0.0120830955, -0.011180257, -0.007507811, -0.018857773, 0.012673673, 0.025781795, 0.008044083, -0.0014314734, -0.02447845, 0.014621902, -0.002627055, -0.0020890858, -0.0072837984, -0.013651182, -0.012395355, 0.021749571, -0.042521633, 0.003614746, -0.0070733624, -0.0030309563, -0.004751779, -0.021586653, -0.018029608, 0.009931218, 0.031633273, 0.005634252, -0.011736894, 0.0017080948, -0.026704997, -0.004222295, -0.010548949, 0.01887135, -0.025347346, 0.0023928601, -0.001963503, -0.0014382617, 8.400466E-4, -0.0065710316, -0.003950765, -0.011587553, 0.0069477796, -0.014567597, -0.00472802, 0.01517854, 0.0069443854, 0.020446226, -0.0025031692, -0.018043183, 0.01657692, -0.005179439, 0.024912897, -0.03711818, 0.022197597, 0.0060619125, -0.006078883, 0.025768219, 0.012320684, -0.03576053, -0.014744091, 0.0066728555, -0.027112292, 0.009598593, 0.017798806, 0.024152614, -0.0111327395, 0.013108121, -0.056641206, 0.018165372, 0.020283308, 0.046838965, -0.0041849595, -0.005023309, -0.012884109, -0.0074195634, 0.02883651, -0.011316022, 1.9495022E-4, -0.018219678, -0.007304163, -0.09422099, 0.030302772, 0.013719064, -0.023636706, 0.0062553775, 0.017269323, 0.029732559, -0.016061014, -0.0011998242, 0.02637916, 0.01397023, -0.013447534, -0.0037539054, 0.0041544125, -0.018138219, 0.008302037, 0.014228184, -0.015612988, 0.022156866, 0.042603094, 0.021464465, -0.0049825795, -0.004062771, 0.019007117, -0.026338432, 0.010060195, -0.016061014, 0.015830211, 0.013033451, -0.015504376, 0.031578965, -0.024722828, -0.011397481, 0.03961626, -0.012904474, 0.008838309, -9.622352E-4, 0.015898095, -0.02883651, -0.023881083, -0.017364359, -0.005396663, -0.0031921773, -0.013053816, -0.024736404, 0.0011573976, 0.0065981844, -0.0010946062, -0.0058854176, 0.03573338, -0.007982989, 0.0072566452, -0.010460702, -0.03538039, -0.0010258751, -0.01747297, 0.0055663697, -0.022346938, 0.012850168, 0.016373273, 0.048549604, 0.012341049, -0.0118251415, -0.0076299994, -0.0029919236, -0.0077657644, -0.028021919, 0.013997383, 0.014499714, -0.0049011204, -0.027057987, -0.011804776, 0.017119981, 0.018966386, -0.0047314144, 0.0041272594, 0.014716938, -0.020568414, -0.030194161, 0.021858184, 0.024587061, -0.0037505112, -0.009632534, 0.0013271039, 0.0039236117, 0.004724626, -0.019821707, 0.012768709, -0.011499305, 0.025198005, -0.03171473, 0.022387667, 0.0014043204, 0.0051590744, 0.019604482, -0.0067373435, -0.030519998, 7.089485E-4, 0.018654127, 0.024831438, 0.011920176, 0.0015986342, 0.010996974, 0.0037572994, 0.010304572, 0.0066524907, 0.0028629468, -0.009238816, -0.008994439, -0.0013839556, -0.0023012187, -0.011417846, -0.002336857, 0.016414002, -0.028374908, 0.0149477385, 0.006007606, -0.025741065, -0.026121208, 0.018504785, 0.02116578, 0.0030173797, -0.013535782, -0.0021943036, 0.035407543, 0.010759385, 0.009469616, -0.005013127, 0.003580805, 0.0048230556, -0.0040593767, 0.011811565, 0.021084322, -0.013053816, -0.013780159, -0.010080559, -0.009150568, 0.013651182, -0.0011268505, 0.09851117, 0.04034939, -0.010447126, -0.0064182957, -0.011893024, 0.009150568, 0.004918091, -0.019251494, -0.029542489, -0.024139037, 0.02946103, 0.0021552711, -0.027886154, 0.015870942, -0.038855974, 0.04654028, 0.029895477, 0.0215595, -0.004229083, -0.03676519, 0.01591167, -0.005023309, 0.0121306125, -0.019034268, -0.00659479, 0.017418664, 0.036602274, 0.021532347, -0.005172651, -0.0364122, 0.025537418, 0.0027746996, -0.02556457, -0.008709332, 0.012605791, 0.005763229, -0.020296885, 0.013746218, 0.017024945, -0.0126465205, 0.0039202175, 0.02043265, -0.009055533, -0.0038014231, -0.0018650732, 0.0120830955, -0.013121698, -0.020405496, -0.049038358 ], - "id" : "eba449d8-374f-4116-aa6f-238d0deb8035", - "metadata" : { - "name" : "FastRider X1" - }, - "text" : "price: 5499.99\nname: FastRider X1\nshortDescription: FastRider X1 is a high-performance e-bike designed for riders seeking speed and long-distance capabilities. Equipped with a powerful motor and a high-capacity battery, the FastRider X1 is perfect for daily commuters and e-bike enthusiasts. It boasts a sleek and functional design, making it a great alternative to car transportation. The bike also features a smartphone controller for easy navigation and entertainment options.\ndescription: ## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endurance. The FastRider X1 comes with a high-performance motor and a long-lasting battery, making it ideal for long-distance rides.\n\nThe tech you get\nThe FastRider X1 features a state-of-the-art motor and a spacious battery, ensuring a fast and efficient ride.\n\nThe final word\nWith the powerful motor and long-range battery, the FastRider X1 allows you to cover more distance at higher speeds.\n\n## Features\nConnect Your Ride with the FastRider App\nDownload the FastRider app and transform your smartphone into an on-board computer. Easily dock and charge your phone with the smartphone controller, and use the thumb pad on your handlebar to make calls, listen to music, get turn-by-turn directions, and more. The app also allows you to connect with fitness and health apps, syncing your routes and ride data.\n\nGoodbye, Car. Hello, Extended Range!\nWith the option to add the Range Boost feature, you can attach a second long-range battery to your FastRider X1, doubling the distance and time between charges. This enhancement allows you to ride longer, commute farther, and take on more adventurous routes.\n\nWhat is the range?\nTo estimate the distance you can travel on a single charge, use our range calculator tool. It automatically fills in the variables for this specific bike model and assumes an average rider, but you can adjust the settings to get the most accurate estimate for your needs.\n\n## Specifications\nFrameset\n- Frame: High-performance hydroformed alloy, Removable Integrated Battery, Range Boost-compatible, internal cable routing, Motor Armour, post-mount disc, 135x5 mm QR\n- Fork: FastRider rigid alloy fork, 1-1/8'' steel steerer, 100x15mm thru axle, post mount disc brake\n- Max compatible fork travel: 63mm\n\nWheels\n- Front Hub: FastRider sealed bearing, 32-hole 15mm alloy thru-axle\n- Front Skewer: FastRider Switch thru axle, removable lever\n- Rear Hub: FastRider alloy, sealed bearing, 6-bolt, 135x5mm QR\n- Rear Skewer: 148x5mm bolt-on\n- Rim: FastRider MD35, tubeless compatible, 32-hole, 35mm width, Presta valve\n- Spokes: Size: M, L, XL - 14g stainless steel, black\n- Tire: FastRider E6 Hard-Case Lite, reflective strip, 27.5x2.40''\n- Max tire size: 27.5x2.40\"\n\nDrivetrain\n- Shifter: Shimano Deore M4100, 10 speed\n- Rear derailleur: Size: M, L, XL - Shimano Deore M5120, long cage\n- Crank: Size: M - FastRider alloy, 170mm length / Size: L, XL - FastRider alloy, 175mm length\n- Chainring: FastRider 46T narrow/wide alloy, w/alloy guard\n- Cassette: Size: M, L, XL - Shimano Deore M4100, 11-42, 10 speed" - }, - "4a516767-f0ec-42cc-acab-ea067040f16c" : { - "embedding" : [ 0.005951128, -0.007899852, -0.026743341, 2.0904168E-4, 0.0051604435, 0.012727927, 0.005688733, -0.047581036, 0.0024192857, -0.021537416, -0.011895259, 0.0078718625, -0.029192366, -0.010418847, -0.0066403537, 0.011594379, 0.0021044114, -0.013168751, 0.013133765, -0.002130651, 0.008809489, 0.018332694, 0.0025382384, -0.015435848, 0.0024577705, 0.0033289234, 0.035825722, -0.0065773786, 0.006741813, -2.3221994E-4, 0.018878477, 0.00920833, -0.014484228, -0.03224315, -0.022013227, -0.006279997, 0.011314491, 0.010558791, 0.047888912, 0.0020081997, 0.028968455, 0.012483025, -0.027177168, 0.010509811, -0.0049820147, -2.372492E-4, 0.02323074, -1.17203286E-4, 0.007612966, 0.023832502, -0.015939647, 0.0105797835, 0.0021149071, -2.849177E-4, 0.0026519431, -0.0030350403, 0.0018087791, 0.0034583716, 0.033530638, 0.025175966, 0.0035370903, 0.012056195, -0.045705784, -2.5867816E-4, -0.02423834, -0.02353862, -0.006503908, -0.0078928545, 0.0024682663, 0.024854094, 0.016205542, 0.0031102605, 0.02421035, -0.007354069, 0.008158748, -0.021551412, 0.008438637, -0.0061540473, 0.028072812, -0.014750121, 0.023440657, 0.0053038863, -0.017912861, 0.013133765, 0.022251131, -0.019718142, 0.008200732, -0.008291695, -0.035993654, 0.011020607, -0.009740118, 0.013469632, -0.0075010103, 0.037421085, 0.013042802, -0.0039219367, -0.015169954, 0.009957031, -0.005608265, -0.008816486, -0.0012315091, 0.0033236754, -0.0023178263, -0.015673753, -0.028996443, -0.035741754, -0.022796914, 0.0021866285, 0.016401464, -0.009796096, -0.00757798, 0.006440933, -0.0013670801, -0.007382058, 0.022726942, -0.0036420485, 0.027806917, 0.008438637, 0.02569376, -0.030815719, 0.034986056, 0.007249111, -5.7071005E-4, -0.03520997, -0.014806099, 9.0613886E-4, 0.0015455091, 0.011881265, 0.01613557, -0.0034933577, -0.01465216, -0.0061085653, 0.0106007755, 0.004432733, -0.03299885, 0.0019329796, -0.0063744592, 0.009684141, -0.038204774, -0.03702924, 0.009040397, -0.009551194, -0.006993713, -0.005188432, 0.010327884, 0.004072377, -0.0043872516, -0.0022198653, 0.025050016, -0.022517025, 0.0048735575, 0.011223527, 0.022489037, 0.0059651225, 0.0019137373, -0.019788114, 0.0062869946, 0.032886893, -0.009873065, -0.031011641, 0.006349969, 0.0038729564, -0.002714918, -0.025483843, 0.015337887, 0.019018421, 0.02461619, -0.0068537686, 0.0056747384, -0.022013227, 0.0030227953, 0.02148144, -0.03369857, 0.04170338, -0.010020006, -7.303339E-4, 0.0025050016, -0.023832502, -0.0144142555, -0.0045586834, 0.035070024, -0.024574205, 0.015365876, 0.016597385, -0.011489421, 0.002050183, 0.0061470503, -0.02180331, 0.010677745, 0.017996827, 0.005499808, -0.012133164, -0.002177882, 0.0063394736, -0.5906766, -0.022852892, -0.026813313, -0.014099381, -0.015127971, 0.013763514, 0.0053213793, 0.021117583, -0.0026099598, -0.0144142555, -0.014834088, 0.017702945, -0.015617776, -0.023454653, -0.035181977, -0.020977639, 0.023356691, -0.007689935, 0.01417635, -0.0073330775, -0.042599022, -0.010201934, -0.028996443, 0.011972228, -0.007480019, 0.0020344392, 0.0053108833, 0.0041983267, -0.0034163883, 0.01623353, -0.02775094, 0.03924036, 0.004621658, 0.0020886676, 0.04408243, -0.038568627, -0.0041633407, 0.024644177, 0.01661138, 0.03683332, -0.0077599073, -0.008067785, -0.011237522, -0.003432132, -0.0033831517, 0.0016767067, 0.036245555, -0.00981009, -0.009439238, -0.040611815, 0.016877273, 0.018360682, 0.011384463, -0.011601376, 0.021551412, 0.0078788595, 0.040303938, 0.0052304156, 0.001814027, 0.01139146, 0.0032012241, 0.010145957, -0.017101184, -0.017171156, -0.017059201, 0.01591166, -0.031123595, -0.024882084, 0.021901272, -0.018430654, 0.016891267, 0.012098178, 0.010222926, 0.036217567, 0.029612198, 0.027387084, 0.03246706, 0.0018227735, -0.0069867154, 0.019564202, 0.010383861, 0.034370303, -0.009341277, -0.037449073, 0.009964029, 0.012755916, 0.024350295, -0.0013662055, 0.029948065, 0.01661138, 0.03532192, 0.021411467, -0.004726616, -0.010110971, -0.004131853, 0.026827307, 6.7304424E-4, 0.031151585, 7.605094E-4, -0.028394684, -0.031907283, 0.023440657, 0.014456239, 0.010985621, 0.01964817, 0.009782101, 0.0034216363, -0.032886893, -0.0016819547, -0.012077186, -0.008942436, 0.002795386, -0.014638166, 0.01864057, -0.004534193, -0.03031192, 0.01121653, 2.4861968E-4, 0.023930462, -0.04360662, -0.017395068, -0.012692941, 0.031851307, -0.0060455906, -0.013721531, -0.0011143059, 0.016345486, 0.006556387, -0.013756517, -0.004383753, 0.018276716, 0.016975235, 0.046713382, 5.51905E-4, 0.016331492, 0.004579675, 0.014106378, -0.011496418, 0.011958234, -0.025861694, -0.023594597, 0.005216421, 0.009691138, -0.044726174, -0.0011011861, -0.035937678, 0.010803694, 0.001796534, -0.02167736, -0.006238014, -0.010712731, -0.022950852, -0.026351498, 0.0036840318, -0.009040397, -0.022265127, -0.011048596, -0.017185152, -0.0133016985, -0.020459846, 0.019788114, -0.005660744, -0.026211554, 0.0039079427, 0.009845076, 0.004278795, -5.243535E-4, 0.0042123212, -0.031599406, -0.034790136, -0.0105867805, -0.005615262, -0.008592576, 0.019074397, -0.013679548, 0.0071441527, -0.009292296, 0.0037365109, 0.01746504, -0.004331274, 0.009712129, 0.026911275, -0.036721364, 0.019480236, 0.037756953, 0.015169954, 0.031459462, 0.008942436, -0.011489421, 0.012497019, -0.0045936694, 0.021369483, -0.008501612, -0.008249712, 7.211501E-4, -0.012783905, 0.03227114, 0.011230524, 0.008802492, 0.010796697, 0.016807301, -0.013224729, 0.00263445, -0.002662439, 0.020991635, -0.035433877, 0.011741321, 2.6239542E-4, 0.034118403, 0.011083582, 0.022894876, -0.026939264, -0.0286046, 0.001836768, 7.9505815E-4, 0.009243316, -0.01387547, 0.046433493, -0.025987642, -0.021999232, 0.019676158, 0.015645765, 0.023342697, -0.011979226, 0.011846279, 0.013560596, 0.017185152, 0.036245555, 0.003673536, -0.01708719, 0.018752526, 0.026505437, 0.020795712, -0.0038729564, 9.472475E-4, 0.0052304156, 0.0071791387, -0.021229539, 0.04604165, 0.0017851635, 0.036049634, 0.0418993, 0.026029626, -0.017423056, 0.0064199413, 0.004950527, -0.0043767556, 0.02651943, 0.026225548, 0.0140504, -0.023916468, 0.012098178, -0.010376864, 8.95643E-4, -0.009355271, -0.015715737, 0.0055732788, 0.007361066, 7.7319186E-4, -0.0038729564, 0.011853276, 0.03322276, 0.052507073, -0.010712731, -0.0031155082, -0.019256325, -0.018990431, -0.008585578, 0.0029493247, -0.03316678, -1.08675435E-4, -0.0054508275, -0.002050183, 0.0034128898, -0.004026895, 0.016205542, 0.011307494, 0.014036406, 0.010390859, 0.023804512, -0.0348741, -0.030423874, 0.0044957083, 0.0052129226, -0.011307494, -6.866013E-4, 0.005541791, -0.0026536924, 0.00890745, 0.044446286, 0.016205542, 0.023048814, -0.010831683, 0.0024227845, -0.019676158, -0.0052024266, 0.042655, -0.008592576, 0.004019898, -0.008361667, 4.2223796E-4, 0.0054333345, -0.013000819, -0.016863279, 0.01886448, -0.029052421, 0.019046409, -0.011356474, 0.028380688, 0.004737112, -0.01661138, -0.03520997, -0.007242114, -0.020207945, -0.008753511, -0.009705132, 0.0048840535, -0.026603397, 0.031151585, 0.014092384, -0.010439839, -0.003379653, -0.034454267, 0.012476028, 0.05189132, 0.022321103, -0.004632154, 0.007906849, -0.009173344, -0.0063639637, -0.0346222, -0.029920075, 0.018332694, 0.030339908, 0.016247524, 0.022614988, -0.018178755, -0.018836493, -0.015057999, -9.454982E-4, 0.01216815, -0.011951237, 0.020054007, -0.0363855, -0.013686545, -0.010404853, 0.0030577814, 0.01974613, 0.027834907, 5.278521E-4, 0.025119988, 0.0064094453, 0.009992017, 0.0059301364, -0.002629202, -0.014330288, 0.020515824, -8.501612E-4, -0.027359096, 0.009649155, -0.0022531021, -0.012601977, -8.2260964E-4, 0.0044222376, 0.020389874, 0.03199125, 0.008998414, -0.0024997538, 0.017157162, -0.01563177, 0.012860875, 0.0010364619, 0.025553815, -0.0100549925, 0.028688567, 0.0014239325, -0.024602195, 0.02388848, -0.004418739, 0.019312304, 8.742141E-4, -0.01929831, -0.019592192, -0.008487618, -4.2333128E-4, -0.010677745, 0.023440657, -0.007046192, -0.02714918, 0.0036105611, -0.011923248, 0.0145542, 0.010194937, -0.0061960304, -0.028086806, 0.0069447323, -0.013777509, 0.016835291, -9.997266E-4, 0.00479309, 0.008676542, -0.018458644, 0.0052094236, 0.010558791, -0.019802108, 0.013420652, 0.018178755, -0.013938445, -0.01121653, 0.0026187063, 0.030143986, 0.0089354385, 0.011860273, -0.0063394736, 6.704203E-4, -0.018150765, 0.019802108, -0.012266112, -0.031459462, -7.2596065E-4, 0.011097577, 0.015603781, 0.0035965666, -3.474006E-5, 0.015575793, -0.022139177, 1.680424E-4, 0.03028393, 0.005489312, -0.008326681, 0.010943638, -0.0033953968, 0.015393864, -0.015057999, -0.0028023832, -0.007962827, -0.0013460885, 0.025245938, -0.037001252, 0.016835291, 0.015673753, -0.011496418, -0.0073680636, 0.0055837748, -0.01974613, -0.040555835, 0.048084836, -0.0028373692, -0.012643961, 0.033810526, 0.009964029, 0.009425243, -0.011335482, 0.031879295, 0.033670582, 0.022167165, 0.0143862665, 0.021565406, -0.02775094, -0.029612198, -0.0149320485, -6.052588E-4, 0.002818127, -0.021103589, -0.0056922315, 0.012930847, 0.0048420704, 0.009950034, -0.009138358, -0.017045207, -0.012035203, 0.002263598, -0.014918054, 0.031711362, -0.0040758755, 0.0041038645, -0.036161587, -0.023790518, -0.010551794, -0.018948449, 0.003535341, -0.026617391, 0.008473623, 0.02215317, 0.021551412, -0.016807301, -0.0052094236, -0.0043767556, -4.491335E-4, -0.014344283, -0.017744929, -0.021845294, -0.023300713, 0.018584592, 0.032047227, 0.012343081, -0.025525827, -0.0065179025, -0.019130375, 0.024784122, 0.0019049908, -0.008256709, -0.015365876, -0.048784558, 0.0033149289, -0.021943254, -0.013252718, 0.004166839, -0.035545833, -0.01778691, 0.0421512, 0.011559393, 0.016289508, 0.013805497, 0.011083582, -0.0068537686, 0.03834472, 0.005741212, 0.00745203, -0.0017431802, -0.031431474, -0.028548623, -0.030647786, 0.0039254357, -0.016289508, 0.008144754, -0.014008417, 0.004292789, 0.0020641773, 0.0071371556, -0.0116993375, -0.018570598, 0.009677143, -0.0044222376, 0.0052793957, -0.027457057, -0.0178149, -0.032690972, -0.022852892, -0.0038694579, -0.002599464, 0.011188541, -0.034482256, 1.2890175E-4, 0.010775706, -8.292789E-5, 0.007242114, 0.0023213248, 0.016737329, 0.016373474, -0.007934838, -0.014064395, -0.03227114, -0.0048315744, -0.007976821, 0.01929831, 0.01465216, -0.0041913297, -0.01974613, -0.0026781827, -0.02421035, -0.012546, -0.023552613, 0.024448257, 0.031515438, 0.03252304, -0.0034303828, 0.005030995, 0.010320887, 0.013644562, 0.0032711963, 4.0802488E-4, 0.007431038, -0.005251407, -0.012713933, 0.027121192, -0.008641556, 0.021999232, -6.157546E-4, -0.036441475, 0.0024175365, -0.01851462, -0.019662164, -0.026323508, 0.002900344, 0.046629418, -0.01314776, 0.0031452465, 0.03898846, -2.4184112E-4, -0.028142784, -0.0154638365, 0.004313781, 0.031963263, -0.026715353, -0.014036406, -0.006238014, -0.008116765, -0.008711528, -8.4622524E-4, -0.009726124, 0.012888863, -0.0105797835, -0.0016880772, 0.00469163, -0.008284698, -0.021341495, 0.0089564305, 0.0032187172, -0.02737309, -0.016597385, -0.008949433, 0.009348274, -0.054690205, -0.01465216, -0.042235166, 0.020557806, 0.024854094, 0.02278292, 0.0105797835, 0.0077319182, 0.034258347, -0.022796914, 0.014792104, 0.01696124, 0.03565779, -0.0015446343, 0.0072001303, -0.0019014921, -0.030675774, 0.010950636, 0.0038379703, -0.021271523, -0.04626556, -0.03560181, -0.012154156, 0.0024997538, -0.028114796, 0.0010014758, 0.0133296875, 0.013497621, -0.015659759, -0.01648543, 0.012930847, -0.0071546487, 0.012664952, 0.008186737, -0.012818891, 0.02556781, -0.0017169407, -0.009355271, 0.006405947, -0.012140161, -0.023594597, 0.008543595, 0.0027603998, -0.010278903, -0.0038939482, -0.018710542, 9.2625583E-4, -0.036749355, 0.0014283058, -0.0035370903, 0.0027009235, 0.01768895, -0.014890065, -0.016191548, 0.047944892, -4.7712235E-4, -0.021523422, 0.012203136, 3.207784E-4, -0.020557806, -0.03520997, 0.0074870163, 0.050351933, 0.017199146, -0.015715737, -0.011846279, 0.0072071278, -0.06230317, -0.0036665387, -0.025022028, 0.022978842, 0.01841666, -0.008648553, -0.021313505, 0.019452248, -0.0030945167, 0.0353779, -0.0089774225, -9.778603E-4, 0.0084246425, 0.012839883, -0.008081779, 0.011797299, -0.062023282, -0.009684141, 0.019382276, 0.015659759, 0.025511833, -0.013987426, -0.011650356, -0.020655768, 0.019942053, -0.01186727, 0.031235551, 0.02705122, 4.814956E-4, -0.054158416, -0.045006063, -0.0059476295, -0.0055487887, -0.009306291, -0.007249111, -0.011783304, -1.5951454E-4, -0.013357677, -0.025959654, 0.00732608, -0.008613567, -0.010621767, 0.035797734, 0.005891652, -0.010166948, 0.03224315, 0.0025329904, -0.0286046, -0.0046006665, 0.007647952, -0.0038729564, -0.014848082, -0.010621767, -0.039660193, -0.02085169, -0.01626152, 0.0133296875, 0.007070682, -0.0034478758, 0.0122101335, -0.007249111, -0.028492644, 0.03495807, 0.014288305, -0.029584209, -0.02569376, -0.010278903, -0.020557806, 0.018178755, -0.0040688785, 3.4920458E-4, -0.014708138, 0.0032746948, -0.031683374, -0.03708522, -0.03221516, 0.01442825, 0.0029248344, 0.0024420267, -0.0025137481, 0.19491431, 0.0053283763, 1.2046957E-5, 0.037896898, 0.016387468, 0.007906849, 0.022447053, 0.011594379, -0.01503001, -0.010299895, 0.0033866502, 0.03053583, -0.0154638365, -0.0065353955, 0.03274695, 0.0021026619, -0.04752506, 1.3830425E-4, -0.010551794, 0.010082982, 0.0074380357, -0.0059301364, -0.017101184, -0.018570598, 0.018822499, 0.0021463945, -0.024182362, -0.0021358987, 0.017409062, -5.890777E-4, -0.018164761, -0.0063219806, -0.006440933, 0.004257803, -0.009404252, -0.006003607, 0.024560211, -2.2150547E-4, -0.002529492, 0.034986056, -0.009999015, -0.0065353955, 0.0036000651, -0.026337503, -0.024448257, -0.018262722, -0.031123595, 0.0019347289, -0.014792104, -0.023174765, -0.026085604, -0.0012866122, 0.025511833, 0.036945276, -0.014750121, -0.024812112, 0.0041213576, 0.013042802, 0.017604984, 0.010173945, -0.03532192, 0.037505053, -0.008676542, 0.02639348, -0.02857661, 0.020907667, -0.014680149, -0.00479309, 0.023454653, 0.013392663, -0.03341868, -0.016527412, 0.0010399605, -0.014211336, -0.0075569884, -0.030032031, 0.01851462, 0.009348274, 0.025707753, 0.024910072, 0.0068432726, 0.004331274, 6.3762086E-4, 0.0031365, 0.013630567, -0.013812495, 0.018010821, -0.01074072, 0.0024035422, 0.015561798, -5.287268E-4, 0.00943224, 0.010208931, 0.003656043, 0.022405071, -0.0084246425, -0.020361885, 0.019340292, -9.75783E-5, 0.0019382276, -0.042319134, 0.046713382, -0.008263706, -0.0060106046, -0.026659375, -0.004047887, -0.011573387, 0.042738967, 0.023146775, -0.05110763, 0.02290887, -0.039884105, 0.016303502, -0.011174547, 0.01866856, -0.014568194, 0.008697534, -0.007976821, -0.012636963, -0.010656753, 0.026841303, -0.021439455, -0.024140378, -0.026617391, 0.01074072, -0.004079374, -0.011174547, -0.007927841, -0.015855681, -0.016625375, 0.0127909025, 0.012175147, 0.012252117, -4.5219477E-4, -0.017143168, -0.006059585, -0.006262504, -0.0145542, 0.021775322, 0.010474825, 0.005317881, 0.016163558, 0.0029790627, 0.0061050667, 0.024392279, -0.032103207, 0.026771331, 0.0034111405, -0.03876455, 0.010320887, -0.020837694, 9.017656E-4, -0.0045726774, -0.014141364, 0.009817087, 0.0019382276, -0.008753511, -0.026995242, -0.010299895, -0.0180668, -0.04027595, -0.0014781608, -0.015995625, 0.025231944, -0.032103207, -0.0011519159, -0.17800905, 0.0030437869, 0.024224345, -0.0063534677, 0.019550208, 0.016737329, 0.0243363, -0.0090334, -0.024350295, -0.002079921, 0.0208237, 0.00687476, -0.05888853, -0.010327884, 0.013441643, -0.009446235, -0.021719344, 0.012203136, 0.013903459, 0.019340292, 0.0033026838, -0.035237957, 0.0037505052, -0.012056195, -0.0077459128, 0.009572185, -0.008928441, 0.017674956, 0.008585578, -0.011601376, 0.005601268, -0.042766955, 0.029276332, -0.0052619027, 0.005643251, -0.027093202, -0.015449842, 0.025427867, -0.0033744052, 0.04411042, 0.0019172359, 0.01648543, 0.027107196, 0.009110369, 0.027806917, -2.9825614E-4, -0.022642976, 0.005216421, -0.014722132, -0.009110369, 0.0356298, 0.008879461, 0.002674684, -0.016919257, 0.024602195, -0.009019406, 7.159022E-4, 0.012734924, 0.01503001, -0.021999232, -0.019340292, -0.029500242, -0.0011108073, -0.017255124, -0.012028206, -0.04752506, -0.014470233, 0.012755916, -0.03397846, -0.0022845895, -0.0138824675, -0.010034001, 0.014078389, 1.3513364E-4, 0.022377081, -0.0019487233, -0.017409062, 0.019004425, 0.005615262, -0.0043942486, -0.004222817, 0.046181593, -0.025553815, 0.018304706, -0.022209149, -0.012587983, -5.8426714E-4, 0.021061607, -0.0017449296, -0.0061295573, -0.0111255655, -0.026939264, -0.0033586614, 0.0018647568, -0.0063009886, 0.010754714, -0.0056817355, -0.01537987, -0.015002021, -8.064286E-4, -0.0052793957, 0.005765702, -0.021985238, -0.015253921, 0.04313081, 0.009607171, 0.013917454, 0.029668177, 0.029724153, -0.0023790519, -0.021243533, 0.013392663, 0.016597385, 0.02449024, -0.005489312, 0.0033779037, -0.029528232, -0.015687747, 0.008795494, 0.006486415, 0.034790136, -0.030143986, -0.014344283, 0.008242715, -0.0014947793, -0.032634992, -0.07590575, -0.019578198, 0.0283527, 0.003645547, -0.020235935, -0.007689935, -0.009026403, 0.035769746, -0.011230524, 0.034734156, -0.0014344283, -0.01537987, 0.0028163774, 0.019424258, 0.04287891, 0.009908051, 0.028772533, -0.028058818, -0.016723335, 0.028534628, -0.022992836, -0.03199125, -0.0029440767, 0.0029020933, -0.023216747, 8.151751E-4, -0.023580601, 0.018934453, -8.9739234E-4, 0.016765319, 0.0031522438, -0.014484228, 0.0133296875, 0.015925653, -0.0077459128, 0.0111185685, -0.018962443, -0.013847481, 0.027163174, -0.039436284, 0.0015848684, -0.0018227735, 0.0060700807, -0.011916251, -0.019116381, -0.021761328, -0.01588367, 0.026715353, -0.001447548, -0.001814027, -0.0042123212, -0.01121653, 0.0015122723, -0.025092, 0.029528232, -0.012657955, -0.005331875, -0.0063534677, -0.014750121, 0.023832502, 0.0015848684, 0.024098396, 0.003715519, 0.01194424, 0.004810583, -0.026827307, -0.013462635, 0.030143986, 0.03778494, -0.004257803, -0.010446836, 0.0039709173, -6.503033E-4, 0.034202367, -0.037505053, 0.026995242, 0.004194828, -0.014323291, 0.0248401, -0.0024892578, -0.028366694, -0.009887059, 0.019788114, -0.049008466, 0.019676158, 0.0122101335, 0.03006002, -0.002004701, 0.0051219584, -0.064094454, 0.03532192, 0.010866669, 0.03344667, 0.002818127, 0.0036840318, -0.00933428, -0.016919257, 0.012385064, -0.0029528232, 0.008746514, -0.010705734, -7.9462084E-4, -0.08698933, 0.02727513, -0.0065528885, -0.027135186, -0.0089354385, 0.020977639, 0.03291488, -0.0127979, 0.01036287, 0.009957031, 0.013959437, 0.0057796966, -0.0052898917, -0.0021236537, -0.026113592, 0.017199146, 0.0019907067, -0.031235551, 0.028940465, 0.018696548, 0.017730933, 0.012077186, -0.0084246425, 0.02373454, -0.014736127, -0.0010662001, 0.0022653472, 0.027457057, -0.001011097, -0.010341878, 0.04094768, -0.017730933, -0.016751323, 0.044278353, -0.0025959653, -0.008802492, 0.011573387, 0.015771715, 0.004950527, -0.016555402, -0.040779747, -0.00976111, -0.019858086, -0.01490406, -0.011286502, 0.0011632864, 0.017269118, -0.017996827, 0.008039796, 0.04296288, -0.010936641, 0.0095092105, 0.009866068, -0.03800885, 0.01121653, -0.0025539822, 0.01778691, -0.010649756, 0.009054392, 0.0013565844, 0.057013277, 0.023342697, 0.0024245337, 0.001608484, -0.0037644997, -0.004915541, -0.03397846, 1.0818345E-4, -0.0030420376, -0.018850487, -0.021607388, -0.013560596, 9.3587703E-4, 0.014722132, -0.016933251, 0.01036287, -0.0013863224, -0.015869675, -0.046601426, 0.00830569, 0.019424258, -0.002200623, -0.013791503, 0.010887661, 0.011573387, 0.0034531238, -0.005758705, 0.009649155, -0.0028915976, 0.0078718625, -0.035181977, 0.016471436, 2.0936968E-4, 0.0036700373, 0.026015632, 0.0065353955, -0.0061155627, -0.01997004, 0.024042418, -0.0033324219, 0.005615262, 0.009306291, -0.0047126217, -0.021691356, -0.017982833, 0.011349477, -0.009964029, -0.013084785, -0.0030018035, 0.0032379595, 0.011405454, -0.019690152, 0.012608975, 0.030563818, -0.014358277, 0.006279997, -0.009754113, -0.014057398, -0.03733712, 0.02541387, 0.011468429, 0.011776307, -8.567211E-4, 0.022866886, 0.0133296875, 0.0075010103, 0.0012717431, -0.0056922315, -0.0045656804, -0.014792104, -7.4301637E-4, -0.0051674405, 0.009922045, -0.008165746, -0.008165746, -0.0145542, -0.008711528, -2.6633136E-4, 0.009369266, 0.10473426, 0.038400695, -0.0052828947, -0.0034268843, -0.0105937775, 0.004597168, 0.0154778315, -0.01186727, -0.013819492, -0.02762499, 0.010271906, -0.0140504, -0.022838898, 0.016331492, -0.03252304, 0.034202367, 0.017828895, 0.023342697, -0.009649155, -0.024798118, 0.028660577, -0.011370468, 0.016205542, 0.008186737, -0.009649155, 0.0058706603, 0.029220354, 0.020235935, 0.0014361776, -0.037449073, 0.008088776, 0.007424041, -0.046685394, -0.01766096, 0.0017877875, -0.008060788, -0.016863279, 0.008396653, 0.042990867, -7.5132557E-4, 0.015127971, 0.0031767339, -0.009390257, -0.026687363, 0.010831683, 0.0033201769, -0.018486632, -0.027289124, -0.034986056 ], - "id" : "4a516767-f0ec-42cc-acab-ea067040f16c", - "metadata" : { - "name" : "RoadRunner E-Speed Lowstep" - }, - "text" : "price: 4999.99\nname: RoadRunner E-Speed Lowstep\nshortDescription: RoadRunner E-Speed Lowstep is a high-performance electric hybrid designed for riders seeking speed and excitement on their daily rides. It is equipped with a powerful and reliable ThunderBolt drive unit that offers exceptional acceleration. The bike features a fully-integrated 500Wh battery, allowing riders to cover longer distances on a single charge. With its comfortable and safe components, including a suspension seatpost, wide and stable tires, and integrated lights, the RoadRunner E-Speed Lowstep ensures a smooth and enjoyable ride.\ndescription: ## Overview\n\nIt's right for you if...\nYou're looking for an e-bike that provides an extra boost to reach your destination quickly and effortlessly. You prioritize durability and want a bike with one of the fastest motors available.\n\nThe tech you get\nA lightweight and sturdy ThunderBolt aluminum frame with a lowstep geometry. The bike is equipped with a ThunderBolt Performance Sport (250W, 65Nm) drive unit capable of reaching speeds up to 28 mph. It features a long-range 500Wh battery fully integrated into the frame and a ThunderBolt controller. Additionally, the bike has a 10-speed Shimano drivetrain, hydraulic disc brakes for reliable stopping power in all weather conditions, a suspension seatpost, wide puncture-resistant tires for stability, ergonomic grips, a kickstand, lights, and a rack and fenders.\n\nThe final word\nThe RoadRunner E-Speed Lowstep is designed to provide enjoyment and ease of use on longer commutes, recreational rides, and adventurous journeys. Its long-range battery, fast ThunderBolt motor, intuitive controller, and road-smoothing suspension seatpost make it the perfect choice for riders seeking both comfort and speed.\n\n## Features\n\nSuper speedy assist\n\nThe ThunderBolt Performance Sport drive unit allows you to accelerate up to 28mph, making errands, commutes, and joyrides a breeze.\n\n## Specs\n\nFrameset\n- Frame: ThunderBolt Smooth Aluminum, Removable Integrated Battery (RIB), sleek welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR\n- Fork: RoadRunner Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR\n- Max compatible fork travel: 50mm\n\nWheels\n- Hub front: ThunderBolt DC-20, alloy, 6-bolt, 5x100mm QR\n- Skewer front: 132x5mm QR, ThruSkew\n- Hub rear: ThunderBolt DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR\n- Skewer rear: 153x5mm bolt-on\n- Rim: ThunderBolt Connection, double-wall, 32-hole, 20 mm width, Schrader valve\n- Tire: ThunderBolt E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c\n- Max tire size: 700x50mm with or without fenders\n\nDrivetrain\n- Shifter: Shimano Deore M4100, 10 speed\n- Rear derailleur: Shimano Deore M5120, long cage\n- Crank: ProWheel alloy, 170mm length\n- Chainring: FSA, 42T, steel w/guard\n- Cassette: Shimano Deore M4100, 11-42, 10 speed\n- Chain: KMC E10\n- Pedal: RoadRunner City pedals\n\nComponents\n- Saddle: RoadRunner Boulevard\n- Seatpost: Alloy, suspension, 31.6mm, 300mm length\n- Handlebar:" - }, - "cdc4af3f-dfce-46cc-8d17-d784604eccb6" : { - "embedding" : [ 0.009841266, 0.0028075385, -0.014920629, -0.0018419304, -0.004841268, 0.0019328695, -0.020264542, -0.033042315, -0.015039676, -0.029153427, 0.022129621, 0.012334651, -0.007850526, -7.7194905E-5, 0.007275129, 0.022195758, -0.004573411, -0.013544968, 0.011468249, -0.038571414, 0.02378306, 0.0050363736, -0.024298932, -0.018531738, -0.021111103, -7.729825E-4, 0.0429894, -0.008769837, 0.016018512, -0.029285703, 0.016071422, 0.02753967, -0.0048015853, -0.0074470867, -0.006560844, -8.8376284E-4, 0.017949728, -0.026335968, 0.023227504, 0.022910044, 0.021746023, -0.0038392842, -0.010363752, -0.01772486, -0.02075396, 0.039735433, 0.028783057, -0.012916661, 0.013716926, 0.008207669, 0.0033515198, 0.029074062, -0.009027774, 0.011547614, 0.001760912, -0.018664014, -8.5730787E-4, 0.019708987, 0.018082002, -0.0017493379, 0.0035648134, -0.0061706323, -0.021746023, 0.005449733, -0.026084645, -0.029497342, 0.012083328, 0.02547618, -0.010615075, 0.03195766, 0.028756602, 0.030132262, 0.01167989, -1.3568529E-4, 0.013505286, -0.018981474, -0.0032638875, -0.009993382, -0.003368054, -2.56903E-4, 0.018214278, -0.015793644, -0.004623014, 0.0064087277, 0.01809523, 0.008432536, 0.0061706323, 0.0061739394, -0.0035383583, 0.0014178235, -0.004675924, 0.015145496, -0.008445764, 0.010006609, -0.005906082, -0.023597874, -0.0043220883, -0.007149468, -9.978501E-4, -0.029973533, -0.0014790007, 0.019616393, -0.0047784373, -0.013082005, -0.0038095221, -0.030238083, -0.0337566, -0.0015682864, 0.0036607129, -0.020066129, -0.00566468, 0.011064811, -0.0010003303, 0.018148141, 0.023703694, -0.01830687, 0.030132262, 0.02589946, 0.0068849176, -0.029232793, 0.012658725, 0.01090608, 0.011931212, -0.03259258, -0.0050925906, 0.0059755268, 0.0014070761, -0.017156078, -0.0056779077, -0.010317456, 0.013677243, -0.006937828, 0.006964283, 0.009034388, -0.013465603, 0.022129621, 5.629958E-4, 0.01703703, -0.028306866, -0.0111044925, -0.0023412688, 0.029338611, -0.010773805, 0.003951718, 7.973707E-4, -0.012162694, 9.1269804E-4, 0.026415333, -0.0010085974, -0.019986764, 0.019272478, 2.8893838E-4, 0.024193112, 0.018809516, 0.01164682, -0.0128637515, -0.02165343, 0.015290999, -0.010939149, -0.009781742, -0.027089937, 0.020013219, 0.014034386, -0.0047056857, 0.032830674, 0.008690473, 0.008941796, -0.041534375, -0.0056283046, 0.0023330017, -0.020873006, 0.026997343, -0.03354496, 0.015370364, 0.001389715, 0.0374603, 0.017579358, -0.005641532, -0.037275117, 0.015119041, -0.010496028, 0.017169304, 0.011316133, 0.019722214, -0.026309513, 0.004751982, 0.0037566123, -0.016309517, 0.011064811, -0.018637558, 0.027724857, 0.0045568766, -0.008452377, -0.013181211, -0.5934389, -0.042804215, -0.007546293, 0.0037499985, 1.3609865E-4, 0.015687823, 3.2221383E-4, 0.029629618, -0.017658724, -0.0010152112, -0.016785707, 0.034259245, -0.0060317437, -0.004318781, -0.03666665, -0.024960307, 0.018068776, 9.821424E-4, -0.0054034367, -0.0022288351, -0.024126975, -0.013062164, -0.022354487, 0.036296282, 0.02584655, 0.007876981, 0.012175921, -0.0060879607, 0.008921954, -0.0022751314, -0.032619033, 0.050872996, -0.013875656, -0.012387561, 0.029682528, -0.03174602, 0.001006944, 0.00591931, 0.007169309, 0.015119041, -0.02297618, 0.00497685, -0.013809518, 4.5237044E-5, -0.0032473532, 0.009133594, 0.039973527, -0.018492056, 0.008055552, -0.042486753, 0.009067456, 0.0056051565, 0.026349196, 0.008974864, 0.0039682523, -0.04198411, 0.014775126, -0.0041699717, 0.017539674, -0.0020932532, -0.0013401118, 0.020476183, -0.002579364, -1.3899217E-4, -0.0054662675, 0.016917983, -0.0374603, -0.0011020168, 0.008710314, -0.0070767165, -0.011362429, 0.026931206, -0.0038260566, 0.010310843, 0.030555543, 0.015621686, 0.043121677, -0.0026306205, 0.016838618, 0.01724867, 0.0068386216, 7.857966E-4, -0.0053869025, -0.009841266, 0.035767183, -0.012572746, -0.0075595207, -0.0083663985, 0.0220238, 0.010357139, 0.045740724, 0.009867721, 0.01587301, -0.022169303, -0.014338618, 0.0424603, 0.0010077708, 0.02191798, 0.002576057, -0.029814802, -0.004355157, 0.011746027, 0.014947084, 0.005767193, 0.029788347, 0.02181216, -0.015939146, -0.0037235434, 0.015582005, -0.035158716, 0.030132262, -0.017076712, -0.028386232, 0.00933862, -0.003657406, -0.037328027, 0.022870362, -0.0010582006, 0.008214282, -0.019656077, 0.0076719546, 0.0051190457, 0.016388882, 0.0114947045, -0.014748671, 0.013716926, 0.012215603, 0.015939146, -0.011408726, -0.008763224, 0.027486762, 0.031349193, 0.04674601, -0.004864416, 0.03455025, 0.009107139, 0.011137562, 0.009616398, -0.014391528, -0.029761892, -0.029761892, -0.0069907377, -0.010052906, -0.015251316, 0.0046031727, -0.012447085, -0.0024404752, 0.025806868, -0.0028869035, -0.014775126, -0.031481467, -0.020462954, -0.0071560815, 0.0033118373, -0.008313488, -0.016097877, -0.019272478, -0.037063476, -0.011316133, -0.014973539, -0.0016534384, -0.0049074055, -0.013445762, -0.024854487, 0.016904755, 3.4350183E-4, 0.01640211, 0.012354492, -0.001922949, -0.0495767, -0.025343904, -0.014576714, -0.0057374313, 0.00859788, -0.018108457, 0.004920633, -0.027301576, 3.1849358E-4, -0.009675922, -0.026283057, 0.009966927, 0.016746026, -0.051957652, 0.023597874, 0.03190475, 0.036375646, 0.03174602, 0.01916666, -0.015238089, 0.019060839, -0.016177243, -0.01347883, -0.013300259, 0.0030687817, 0.008531743, 0.011712958, 0.019523801, -0.01597883, 0.012169307, 0.008187828, 0.032037023, 0.011917984, 0.019126976, 0.015132269, 0.012010577, -0.0075595207, 0.00429894, -0.0030026443, 0.023941789, 0.025449725, 0.029576708, -0.03433861, -0.007149468, -0.004861109, -0.0060317437, -0.021798933, 0.013207667, 0.018253962, -0.008167986, -0.011435181, -0.02101851, 0.013611105, 0.04515871, 0.009470896, -0.018214278, 0.02547618, 0.011210313, 0.021997346, -0.004732141, -0.02621692, -0.015899464, 0.020211631, 0.02691798, -0.021111103, 0.0057870345, 0.0029778427, 0.025238086, -0.009477509, 0.039126966, -0.0066203675, 0.048624318, 0.041851833, 0.020608457, -0.024761895, 0.026944432, 0.00958333, 0.027433852, 0.030396814, 0.022089938, 0.006537696, 0.009292324, 0.011216926, -0.020145494, 0.015939146, -0.0052215587, -0.022724858, 0.0032225517, 0.014457666, -0.010998673, 0.013968248, 0.025343904, 0.019193113, 0.0035912683, 0.01640211, 0.019722214, -0.0209656, -0.03232803, 0.003710316, -0.022526445, -0.016521158, 7.109785E-4, -0.02218253, -0.0081746, -0.010383594, -0.0028158056, -0.022261895, 0.012665339, -9.5692754E-5, 0.026230147, 0.053968232, -0.0011350855, -0.020952372, 0.012215603, 0.028888877, -0.0075925896, -0.005591929, 0.028253956, -1.3764875E-4, 0.0110119, 0.02048941, 0.01005952, 0.016230153, -0.018399464, 4.4890854E-4, -0.023267185, 0.0038194428, 0.025925916, -0.01242063, -0.008253965, 0.030767184, -0.019682532, 0.0035085964, 0.0037533054, -0.014589941, 0.03624337, -0.021084648, 0.0077843885, -0.030052898, 0.010912694, 0.009292324, 0.0042030406, -0.03338623, -0.020013219, -0.016653432, -0.006041664, -0.0030605146, 0.013439148, -0.015145496, 0.030449722, -0.05121691, -0.009285711, -0.0063558174, -0.025912687, -0.026203692, 0.017275125, 0.009252641, -0.0028869035, 0.015992057, -0.019656077, -0.0071097855, -0.014708988, -0.0042096544, 6.039184E-4, 0.014708988, -0.0050826697, -2.8542482E-4, -0.0068650767, -0.0051785694, -0.012910048, -0.011514545, 0.001557539, -0.024113746, -0.0031101177, 0.008994705, -0.02059523, -0.015396819, -0.0037632259, 0.018399464, 0.01619047, -5.0512544E-4, 0.008558198, 0.025595227, 0.018439146, -0.01671957, 0.0065079336, 0.004996691, 0.02128306, 0.02170634, -0.0073412666, 0.0046891514, 0.0046395482, -0.008908726, 0.04309522, -0.0118584605, -0.008743383, 0.014497348, -0.013558196, 0.020978827, 0.013141529, 0.0053604473, 0.0065178545, 0.015290999, 0.01619047, -0.01358465, 0.028835967, -0.0068915314, -0.025396815, 0.0026984117, -0.010337297, 0.024378296, -0.016600523, -0.013009254, -0.010985445, -0.037010565, -0.0106481435, -0.031216918, 0.02080687, -0.008141531, -0.00429894, -0.006144177, -0.019074066, 0.021521155, 0.0015525788, -0.021931209, -0.01756613, -0.01916666, -0.020211631, 0.007043648, 0.0062698387, -0.003869046, 0.029338611, -0.044497337, -0.009715605, -0.0042625642, -0.028809512, -5.311671E-4, -0.014206343, -0.0034490726, -0.0010582006, 0.019933853, 0.03190475, 0.009054229, 0.017288353, -0.0040244693, 0.031190462, -0.0107407365, 0.015277771, -0.03253967, 0.017275125, -0.019087294, -0.0014475854, 0.0053604473, 0.013756608, -0.020727504, 0.013082005, -0.0037797603, 0.014748671, 0.017883591, 0.017182533, -0.0035714272, 0.017208988, -0.007665341, -0.0019196421, -0.036005277, -0.022883588, -0.015992057, -0.0021180548, -0.0037962948, -0.027619036, -0.017711634, 0.019708987, -0.0051951036, 0.017103167, -0.029391522, 0.014047613, -0.032460306, 0.026772475, 0.002126322, -0.015079359, 0.03116401, 0.010403435, 0.009603171, -0.007810843, 0.026719566, 0.059894156, 0.030502632, -0.011190471, 3.3502796E-4, -0.03687829, -0.025582, -0.019126976, -0.0131613705, 0.019576712, -0.02117724, -0.018822743, 0.0052414, 0.01830687, -5.0636556E-4, -0.027883586, -0.018108457, -0.008710314, 0.017208988, -0.009457668, 0.026732793, -0.012162694, 0.010125658, -6.5062806E-4, -0.022526445, -0.045820087, -0.019074066, -0.03248676, -0.0014831343, 0.009252641, 0.014589941, 0.023227504, 0.039232787, -0.0025099197, 0.006286373, 3.490822E-4, -0.0038359773, -0.020145494, 0.0064616376, -0.046984106, 0.022460308, 0.032169297, 0.0020568774, -0.01974867, -0.013439148, -0.0023048932, 0.013260577, -0.0073412666, 0.0010251319, -0.017288353, -0.03730157, -0.010462958, -0.03597882, -0.01640211, -0.02441798, -0.025542317, -0.016640205, 0.02138888, -0.0013301913, 0.006663357, -0.002953041, -0.008531743, -0.008769837, 0.029814802, -0.0038822736, 0.01310846, -0.0025661364, -0.019656077, -0.019669304, -0.013009254, 0.016335972, -0.029894168, 0.018320099, 0.012857137, -0.017817453, -0.0029216257, -0.0046428554, -0.016865073, -0.011964281, 0.035052896, -0.0064616376, -0.013187826, -0.036693107, -0.024933852, -0.018333325, -0.009431213, 0.010132271, -0.015939146, 0.028730147, -0.04515871, -0.019603167, 0.022195758, 0.0056812144, 0.018664014, 3.2366058E-4, 0.02537036, 2.3830181E-4, -0.0052050245, -0.019153431, -0.013167984, 0.0023693773, 0.0019725522, 0.017169304, 0.028333321, -0.0052910033, -0.004216268, 0.016415337, -0.0031729485, -0.028439142, -0.037910037, 0.008710314, 0.022420626, 0.013293645, -0.03126983, 0.0039947075, -0.02648147, 0.007830685, 0.005641532, 0.012658725, 0.010383594, -0.01916666, -0.001693121, 0.024272477, -0.004599866, 0.01037698, 0.010634916, -0.013505286, 0.0065079336, 0.0054596537, -0.01714285, -0.0044279085, -4.890044E-4, 0.054232784, -0.001410383, -0.003389549, 0.03232803, 0.0062037013, -0.0044742045, -0.0070039653, -0.016746026, 0.02722221, -0.024867715, 3.2676078E-4, -0.011746027, -0.022857133, -0.003288689, 0.0037533054, -0.001089616, -0.025290994, 0.010886239, -0.004037697, 0.0021048272, 9.862761E-4, -0.023968244, -0.004927247, -0.02468253, -0.022328032, -0.027433852, 4.1728653E-4, 0.0035846545, -0.041058183, -0.03439152, -0.022433853, 0.01767195, 0.040952366, -4.9344803E-6, -0.017711634, 0.0037764534, 0.03402115, -0.018386235, 0.0036210301, -2.87905E-4, -5.642359E-5, -0.033888876, -0.0033531731, 8.341597E-4, -0.008002643, -0.0015352176, 0.014404756, -0.007810843, -0.011137562, 0.022275124, -0.0047486755, -0.0010077708, -2.783977E-4, -5.8852074E-5, 0.016812162, 0.009047615, -0.008802907, -0.00644841, 0.015026449, 1.9975603E-4, -0.010390207, -0.01199735, -0.021150785, 0.024484117, -0.012037032, -0.013571423, 0.0059160027, -0.010509255, -0.030105807, 0.0057341247, 0.012559518, -0.006200394, -0.012387561, -0.02753967, -0.03523808, -0.012671952, 0.00970899, -0.025555545, -0.0036210301, 0.016177243, -0.0027860438, -0.022142848, 0.036296282, -0.026653428, -0.036111098, 0.018531738, -0.02117724, -0.029894168, -0.023253959, 0.0073015844, 0.04399469, 0.024828032, -0.012519836, -0.01242063, -0.006898145, -0.04293649, -0.010667985, 0.006319442, 0.028386232, 0.010542324, 0.021005282, -0.012235445, 0.01761904, 0.012473539, 0.04542326, -0.018267188, -0.011428567, 0.017843908, 0.030317448, 0.016838618, -0.0081613725, -0.02378306, -0.01284391, 0.0042261886, 0.01358465, 0.011593911, -0.0056349183, -0.0014541991, -0.011157403, 0.008551584, -0.011911371, 0.0088227475, 0.01058862, 0.00902116, -0.038677234, -0.02791004, -0.006722881, -0.0040476173, 0.0020651447, 0.0021164012, -0.036375646, -0.01379629, 0.005267855, -0.0013417653, -0.008657404, -0.014034386, -0.010224864, 0.03275131, -8.7797584E-4, -0.015912691, 0.053888865, 0.003468914, -0.0023197741, -8.7218876E-5, 0.04224866, -0.0050992044, -0.0018518511, 0.01095899, -0.020290997, 0.011018514, 0.008657404, 0.01916666, 0.0052248654, -0.0065806853, 0.005863093, -0.015992057, -0.013015867, 0.040079348, 0.005830024, -0.03492062, -0.005158728, 0.013134915, -0.012791, -1.4963618E-4, 0.017314808, -0.0093716895, -0.019510575, -0.005238093, -0.007850526, -0.021798933, -0.0046428554, 0.03243385, -0.0138227455, 9.465935E-4, -0.0076190443, 0.1972486, 0.010806873, -0.009325393, 0.034841254, -0.008683858, -0.012076715, 0.023743376, 0.008392854, 0.0020982134, -0.012341265, 0.0015955681, 0.020820098, 0.011216926, 0.0059325374, 0.023888879, -0.02759258, -0.052619025, -0.022857133, -0.003336639, 0.0044742045, -0.013406079, 0.012698407, -0.03301586, -0.02367724, 0.016574068, 0.007228833, -0.035634905, -0.009451054, 0.014828037, 0.008644177, 0.014312163, -0.012149466, -0.0014451052, 0.0132275075, -0.010396821, -0.0035548927, 0.012943116, -0.007506611, -0.004434522, 0.053386223, 0.004057538, -0.012751318, 0.012513222, -0.027433852, -0.009325393, 0.021402108, -0.0048776437, 0.014007931, -0.038571414, -0.007572748, -0.01080026, 0.008293647, 0.0047883578, 0.045714267, -0.00833333, -0.015753962, 0.02478835, -0.011779096, 3.7781068E-4, -0.0038227497, -0.021137558, 0.015145496, 5.9937144E-4, 0.021481473, 7.5892825E-4, 0.014060841, -0.016375655, -0.0466931, 0.00502976, -0.010522482, -0.013597878, -0.002590938, 0.0058432515, 0.006798939, -0.039920617, -0.027962951, -0.001504629, 0.017222214, -0.018981474, 0.01111772, 8.945102E-4, -0.024338614, 0.0070039653, -0.007652113, -0.01189153, -0.023902107, 0.0045866384, 0.008882271, 0.012698407, 0.0021015203, -0.007235447, -0.0081613725, -0.014087296, 0.027989406, -0.0063260556, 0.007685182, -0.029259248, 0.023306869, -0.013650788, 0.012248673, -0.014603169, 0.037989404, 0.014708988, -0.009034388, -0.008485447, -0.0018650786, 0.0010664678, 0.008141531, 3.4536197E-4, -0.058730133, -0.029206337, -0.031507924, 0.010383594, 0.0020337293, 0.0080687795, 8.457338E-4, 0.009788356, -0.008842589, -0.013167984, -0.0053372993, 0.0148941735, -0.011904757, 0.034153424, 0.0139814755, 0.028068772, -0.017328035, -0.04309522, 0.006736108, -0.010257932, -0.028148137, 0.0023296948, -0.009821424, 0.009940472, -0.009126981, -0.012288354, 0.0079100495, -0.010205022, 0.006904759, 0.012341265, -0.012235445, 0.0018998008, -0.010006609, 0.012804228, -0.009517192, 0.03685184, -0.015992057, 0.009722218, -0.012962958, -0.02727512, -0.010244705, -0.02107142, -0.021984117, 0.022314806, 0.0033267182, 0.033359773, 0.02626983, -0.013174598, -0.051719554, -0.03518517, 0.014801581, -0.031084644, 0.005158728, 0.018346554, -0.0071428544, -0.014616396, -0.015290999, -0.16486765, 0.016600523, 0.026746022, -0.01661375, 0.008730155, 0.014259254, 0.035529085, 0.0024371683, -0.030211627, -0.005062829, 0.025595227, -0.0039120354, -0.029312158, -0.007089944, 0.007738092, -3.1249988E-4, -0.011990736, -0.0020238087, 0.02378306, 0.019669304, 0.0038326704, -0.01916666, 0.013650788, 0.016005285, -0.03544972, 0.020357134, -0.015701052, 0.037777763, 0.022301579, 0.0118584605, -0.018703695, -0.032883584, 0.020608457, -0.02154761, 0.014206343, 0.002499999, -0.013465603, 0.018941792, -0.012070101, 0.02642856, 0.02335978, 0.0016311171, 0.013339941, 0.00681878, 0.011785709, 0.019470891, -0.006832008, 0.005535712, 0.007195764, -0.012910048, 0.04055554, -0.021587294, 0.02415343, -0.02304232, 0.018399464, 0.008095235, -0.019193113, 0.0065674577, 0.01830687, -0.03685184, -0.03238094, -2.9410535E-4, 0.008445764, -0.011931212, -0.014828037, -0.022870362, -0.020290997, 0.023809513, -0.022050256, -0.012453699, -0.006904759, -0.023981472, 0.0049007917, -0.008293647, 0.032619033, 0.014457666, -0.034365065, -0.013664016, 0.039206333, -0.009814811, -0.0015980483, 0.03666665, 0.008849203, -0.003525131, -0.015264544, 0.010291001, -0.008201055, 0.0030158719, 0.016428564, -0.019179886, -0.02574073, -0.010039679, -0.0064451033, -0.010859784, 0.015343909, 0.016322745, 0.0072420603, -0.0135251265, 0.012255286, -0.0043915324, 0.0049470877, -0.015013222, -0.032777764, 0.02022486, 0.03248676, 1.996527E-4, -0.0047122994, 0.017063485, -0.004550263, 0.04203702, -0.018835971, 0.0029083982, 0.018849198, 0.018267188, -0.012023805, 0.009001319, -0.03970898, -0.0250529, 0.024232794, -0.0025496022, 0.024656074, 0.007830685, -0.012791, 0.0024371683, 0.013115074, -9.755287E-4, -0.06518516, -0.0013409386, 0.018055549, 0.031560834, -0.0021213617, 0.008240737, -0.009510578, 0.014219571, 0.014960311, 0.014642851, -0.016891528, -0.021785704, -0.004718913, 0.046455007, 0.005062829, 7.262729E-4, -3.685101E-4, -0.016534384, -0.025582, 0.017328035, -0.028915333, -0.029550252, -0.01236772, 0.009424599, -0.023240732, -0.010099202, -0.033994693, 0.028386232, 0.018121686, -0.003865739, 0.008353171, -0.021415334, -0.013220894, 0.014391528, -0.030211627, -0.010079361, -0.009636239, -0.0033068769, 0.025026444, -0.030079352, 0.016283061, 0.004083993, -0.0018253961, -0.014682533, -0.029999988, -0.015039676, -0.0086177215, 0.043015856, -0.0069708964, -0.0057638865, 0.011845233, -0.0031894827, -4.3774783E-4, -0.0026818772, 0.011481477, 1.02203165E-4, 0.007771161, -0.01772486, -0.01798941, 0.0131613705, -0.021666657, 0.038306862, -0.006474865, 0.012433858, 0.022116393, 0.002843914, -0.0049040983, 0.018492056, 0.031190462, -0.011673275, -0.009041001, 0.0041236756, -0.0039285696, 0.03248676, -0.030555543, 0.014457666, -0.020687822, -0.0036739402, 0.012533064, -5.133926E-4, -0.011461635, -0.02117724, 0.0080687795, -0.01978835, 0.01953703, 0.056931194, 0.02499999, -0.008062166, 0.011210313, -0.0116534345, 0.016230153, 0.01021825, 0.059047595, -0.009914017, 4.4105473E-4, -0.008214282, -0.0060846535, -0.0064087277, -0.007314812, -0.009100526, -0.062010556, 0.0076454994, -0.07238092, 0.037328027, 0.012142852, -0.011541001, -0.014933856, -0.008313488, 0.032275118, -0.028439142, 7.3743355E-4, 0.01873015, -0.015462956, 0.014880946, -0.013379624, -0.0013616065, -0.0109457625, 0.004841268, 0.018253962, 0.0016476514, 0.008253965, 0.022738086, 0.014259254, 0.008035711, 7.614084E-4, 0.011541001, -0.03206348, 0.02123015, -0.010403435, 0.011746027, 0.0028869035, 0.0038789667, 0.033412684, -0.010595234, 0.03555554, 0.0395767, 0.0061904737, -0.0046990723, 0.006154098, -0.006931214, -0.0014599862, -0.054047596, -0.023333324, -0.019867716, -0.025132265, -9.829692E-4, -0.00591931, -0.0024768508, 0.027037026, 0.0030572077, 0.01263227, 0.05137564, 0.0074074045, 0.0023412688, -2.0812657E-4, -0.03354496, 0.0060284366, -0.023306869, 0.010304228, -0.0028158056, 0.020701049, -0.0033118373, 0.064444415, -0.009464282, 0.014113751, -0.030370358, 0.01693121, -0.039682522, -0.026693111, 0.012817455, 0.01242063, 0.011064811, -0.025820095, -0.014828037, -0.0037632259, 0.024510572, -0.0118584605, 0.0124074025, 0.023108456, 0.0028042316, -0.014431211, 0.012718249, 0.022645494, -0.007175923, 0.0088227475, 0.010099202, 0.0042261886, -0.0061144154, -0.018055549, 0.022592584, -0.006878304, 0.019775124, -0.0440476, 0.01724867, 0.0040972205, -0.010456345, 0.017433856, 0.0045535695, -0.006021823, -0.007334653, 0.032619033, 0.027195755, -0.026732793, 0.0039054216, -0.014999994, -0.00618386, 0.00833333, 0.021878298, -0.009007933, -0.019232797, 0.007361108, -0.0054596537, 0.0023280415, -0.0017691791, -0.008921954, 0.010925922, -0.02579364, 0.0028670623, -0.016084649, -0.010820101, -0.047910035, 0.035423268, 0.024550254, 0.024060836, 0.008591266, 0.0011830352, 0.018915337, -0.006471558, 0.0067493357, -0.004573411, 0.0038888874, -0.023108456, -0.006441796, -0.027023798, 3.9036648E-5, -0.003865739, -0.036640197, 0.005965606, 0.0024570096, 0.004804892, 0.022486763, 0.10481477, -0.004649469, -0.010515869, -0.0030257923, -0.00974206, 0.014391528, 0.024656074, -0.008458992, -0.00477513, -0.04399469, -1.9820593E-4, 0.0058597857, -0.0332275, -0.009193118, -0.011640207, 0.024695758, -0.0057903416, 0.017552903, 0.0015071091, -0.009047615, 0.02260581, -0.029232793, 0.016216924, -0.012056873, 0.008961637, 0.013544968, 0.028306866, 0.03195766, 0.002323081, -0.042275116, 0.008115076, 0.017843908, -0.025753958, -0.008677245, -0.0102843875, -0.02154761, -0.007837298, 0.00660714, 0.015052903, -0.024986763, -0.0017443775, 0.007063489, -0.0220238, -0.032037023, 0.0052017174, -0.030581998, -0.0028587952, -0.027301576, -0.05513225 ], - "id" : "cdc4af3f-dfce-46cc-8d17-d784604eccb6", - "metadata" : { - "name" : "Velocity V8" - }, - "text" : "| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| 49 | 155 - 162 cm 5'1\" - 5'4\" | 71 - 76 cm 28\" - 30\" |\n| 52 | 162 - 170 cm 5'4\" - 5'7\" | 74 - 79 cm 29\" - 31\" |\n| 54 | 170 - 178 cm 5'7\" - 5'10\" | 77 - 83 cm 30\" - 32\" |\n| 56 | 178 - 185 cm 5'10\" - 6'1\" | 82 - 88 cm 32\" - 34\" |\n| 58 | 185 - 193 cm 6'1\" - 6'4\" | 86 - 92 cm 34\" - 36\" |\n| 61 | 193 - 200 cm 6'4\" - 6'7\" | 90 - 95 cm 35\" - 37\" |\n\n## Geometry \n| Frame size number | 49 cm | 52 cm | 54 cm | 56 cm | 58 cm | 61 cm |\n|---------------------------------------|-------|-------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c |\n| A — Seat tube | 47.5 | 50.0 | 52.0 | 54.0 | 56.0 | 58.5 |\n| B — Seat tube angle | 75.0° | 74.5° | 74.0° | 73.5° | 73.0° | 72.5° |\n| C — Head tube length | 12.0 | 14.5 | 16.5 | 18.5 | 20.5 | 23.5 |\n| D — Head angle | 70.0° | 71.0° | 71.5° | 72.0° | 72.5° | 72.5° |\n| E — Effective top tube | 52.5 | 53.5 | 54.5 | 56.0 | 57.5 | 59.5 |\n| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 |\n| H — Chainstay length | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 |\n| K — Wheelbase | 98.4 | 98.9 | 99.8 | 100.8 | 101.7 | 103.6 |\n| L — Standover | 72.0 | 74.0 | 76.0 | 78.0 | 80.0 | 82.0 |\n| M — Frame reach | 36.2 | 36.8 | 37.3 | 38.1 | 38.6 | 39.4 |\n| N — Frame stack | 52.0 | 54.3 | 56." - }, - "b059f3c6-cb38-4a15-99e0-93c0fdad7007" : { - "embedding" : [ -0.0015354125, 0.010814201, -0.020227317, -0.006814987, -0.0106713725, 0.012181279, -0.006029427, -0.017302722, 0.0035775283, -0.046249412, 0.025369164, 0.01193643, -0.0100252405, -0.005702961, -0.012174478, 0.0033530826, 0.0021628402, 0.0028412782, 0.0049684113, -1.6302068E-4, 0.004927603, 0.0054105013, -8.4464694E-4, -0.012881822, -0.008678567, 0.027069509, 0.035530433, 0.009243081, -0.01862219, -0.0074747214, 0.007590345, 0.026865467, -0.016976256, -0.0065361303, -0.0074611185, -0.0095151365, 0.007481523, -0.023886463, 0.018363738, 0.022866255, 0.028212143, -7.66431E-4, -0.020512976, 0.011310702, -0.017942052, 0.00791001, 0.009535541, -0.010079652, 0.011494339, 0.031803273, -0.008358901, 0.001577071, 7.3412445E-4, -0.012188081, 0.021206716, -0.019397547, 0.0058797966, 0.009222677, 0.022186115, 0.007699167, -0.007291084, 9.045841E-4, -0.027885675, 0.018526971, -0.009984433, -0.023274338, 0.0010287093, 0.0050772335, 0.004264468, 0.014146879, 0.020621797, 0.036482625, 0.021791635, 0.011344709, 0.01154195, -0.025994891, -0.013398727, -0.01257576, -0.010392515, 0.007882805, 0.02009129, -0.025546, -0.012793404, -0.005315282, 0.01124949, -0.0011800402, -0.008821395, 0.005842389, -0.0145549625, 3.1902743E-4, -0.012181279, 0.013181083, -0.0011290298, 0.021846047, 0.015112676, -0.007950818, 0.006294681, -0.020580988, 7.1116973E-4, -0.03939362, 6.308284E-4, 0.0024144915, -8.688769E-4, -0.01783323, -0.016173692, -0.034741472, -0.009385911, 0.013813612, -4.977763E-4, -0.00682859, -0.013766002, 0.0314496, -0.002132234, -0.005709762, 0.024838656, -0.017329928, 0.030225351, 0.027736045, 0.010916222, -6.155253E-4, 0.011977238, 0.03506794, -0.003006212, -0.032864287, 0.0027494596, 0.02215891, -0.009453924, -0.01685383, -0.001311817, -0.0038019738, 0.03449662, -0.008685368, 0.020553784, 0.003999214, -0.02740958, 0.020186508, 0.009868809, 0.0260357, -0.030633435, -0.019615192, -0.0014571967, 0.0032731663, -0.008426915, 0.00903904, -0.013786406, -0.010032042, -0.0058899987, 0.0106101595, 0.016391337, -0.023968078, 0.028837869, 0.018907849, 0.041434035, 0.034551032, 9.326398E-4, 0.0045229206, -0.0073999064, 0.011507942, -0.019764824, -2.169004E-4, -0.019683206, 0.0020217116, 0.011922827, -0.018241312, 0.012630171, 0.024063298, 0.006410305, -0.026919879, 0.0025607212, -0.012235691, -0.03463265, 0.02913713, -0.035095144, -0.00451952, -0.0049344045, 0.035693664, 0.017112283, -0.0030861283, -0.008834998, 0.016187295, 0.007916812, 0.008386107, 0.029055513, 0.011433127, -0.022063691, -0.0040672277, 0.0025539198, -0.014677388, 0.004131841, -0.011297099, 0.033490017, 0.005424104, -0.0062062633, -0.00579818, -0.6011336, -0.036727477, 0.0032646644, -0.005447909, -0.005784577, 6.2487717E-4, -0.0022036484, 0.015058265, -0.020036878, 0.018758219, -0.027028702, 0.027259948, -0.014133276, -0.0020557183, -0.012807007, -0.017601984, 0.020580988, -0.0033921904, 0.011453532, -0.0034278978, -0.031014312, -0.01601046, -0.022907063, 0.011895621, 0.006219866, 0.019179905, 0.017357133, -0.024253737, 2.0457289E-4, 0.013344316, -0.020308934, 0.04426341, -7.2392233E-4, -0.011943231, 0.0358569, -0.033054728, -6.746123E-4, 0.022988679, -0.002982407, 0.033925306, -0.034115743, 3.36456E-4, -0.009494732, -0.002132234, 0.010752989, 0.02402249, 0.031966507, -0.011480737, 0.014378127, -0.038142163, 0.0047133593, -0.005546529, 0.027355168, -0.025124313, 0.021165907, -0.005726766, 0.021043483, -0.0034006923, 0.0053322855, -0.0041046357, 0.006111044, 0.027191935, -0.010984235, -0.009562747, -0.0049888156, 0.02102988, -0.021900458, -0.010957031, 0.013942838, -0.026253344, -0.002657641, 0.014269304, -0.007508728, 0.02932757, 0.017982861, 0.023696024, 0.033217963, -0.0053934976, 0.004706558, 0.026470987, 0.0032408596, 0.005770975, 0.009644363, -0.020512976, 0.024580203, -0.01173919, -0.0054309056, -0.01248054, 0.016527364, 0.012929432, 0.031612836, -0.0021628402, 0.0041692485, -0.014187688, -0.0015303115, 0.020077687, -7.821592E-4, 0.0049208016, 0.009277089, -0.024240134, -0.0141196735, -6.550583E-4, 0.01100464, -0.0055533303, 0.022199718, 0.023546392, -0.017003462, -0.009331499, 0.014174085, -0.024036093, -0.020580988, -0.027776854, -0.020444961, -0.009392712, -0.0138340155, -0.028701842, 0.014174085, 0.020744223, 0.011181476, -0.017506763, -0.0054649124, -0.0055227242, 0.014310113, -0.005526125, 0.002038715, 0.0055227242, 0.019492768, 0.0022138506, -0.019737618, 0.012419328, 0.01896226, 0.0038155767, 0.01758838, 0.0043120775, 0.024906669, 0.0022478576, 0.015262307, 0.014092469, 0.010290494, -0.04091713, -0.046548676, 0.01694905, -0.00407743, -0.0037373607, -0.008324894, -0.012072457, -0.010426522, 0.015112676, -0.0032544625, -0.0181733, -0.014486949, -0.00879419, -0.0018805828, 0.013126672, -0.0049105994, -0.025124313, -0.02712392, -0.02657981, -0.014174085, -0.023818448, 0.023791242, 0.011711984, -0.019329535, -0.019928057, 0.0071006455, 0.00363534, 0.017874038, 0.018132491, 0.0026389372, -0.039801702, -0.0117799975, -6.933161E-4, -0.01169158, -0.0010788696, -0.029926091, 0.008644559, -0.009657966, -0.018390944, -0.0011842911, -0.01709868, 0.011344709, 0.009998035, -0.037842903, 0.021165907, 0.0270151, 0.0128750205, 0.015942445, 0.0117051825, 0.005801581, 0.035339992, -0.033136345, 0.0035231172, -0.011229086, -0.007814791, -0.01321509, -0.005825386, 0.009331499, -0.0067469734, -0.012888623, 0.014881429, 0.018608587, 0.0058933995, 0.027504798, 0.007637955, 0.019615192, -0.027382374, 0.029953297, -0.008923416, 0.00682859, 0.04200535, 0.017017065, -0.022907063, 0.002785167, 0.013283104, -4.4336525E-4, -0.012058854, 0.025913274, 0.0388223, -0.019832836, -0.019479165, -0.008834998, 0.019220712, 0.033653248, 0.020023275, -0.0043222797, 0.027790457, 0.03248341, 0.022526186, -0.0039958134, -0.012487342, -0.010038843, 0.01994166, 0.009957227, -0.008304491, 0.026158124, 0.01901667, 0.022471774, -0.024049696, 0.039175972, -0.026130918, 0.039366413, 0.021152306, 0.019152699, -0.026144521, 0.021369949, 0.010270091, 0.042576667, 0.013942838, 0.01493584, 0.014364524, -0.015860828, 0.010623762, 0.008086846, 0.021084292, 0.03218415, -0.016813023, 0.008760183, 0.027096715, -0.013589166, 0.017329928, 0.015112676, 0.008236476, 0.025872467, 0.012514547, 0.014745401, -0.009603554, -0.042522255, 5.6919083E-4, -0.011038647, -0.0181733, 0.009848405, -6.542082E-4, -0.006893203, -0.010650968, 0.014772607, -0.016867433, -0.0072162687, 0.004165848, 0.011086256, 0.029735653, -0.0048663905, -0.03808775, 2.4399966E-4, 0.020036878, -0.008093648, -0.0077943867, 0.002863383, -0.0013092665, 0.00658374, 0.035258375, 0.006529329, 0.006495322, -0.012256094, -0.0049956166, -0.009902815, -0.018010065, 0.008413312, -0.0025267142, -0.010249686, 0.009664767, -0.023600804, 0.009896014, -0.0023447773, -0.009372308, 0.028130526, -0.007325091, 0.0033071733, -0.031857684, 0.03517676, -0.01065777, 0.0055941385, -0.030334175, -0.022417363, -0.025015492, -0.007753578, 0.0032051525, -0.013847618, -0.03759805, 0.02648459, -0.03743482, -0.03011653, -0.014269304, -0.035149556, -0.008535737, 0.025532397, 0.025614014, -0.007257077, 0.012630171, 0.001267608, 0.022594199, -0.0044515063, -0.022730226, -0.0054649124, 0.035530433, -0.033027522, 0.016595379, -0.008372504, -0.022607801, -0.0012710087, -0.015956048, -0.02687907, -0.018363738, 0.016513761, 0.0035367198, -0.013446337, 0.0034091938, 0.013813612, -4.6653247E-5, 0.020417755, -0.0025165123, 0.0073182895, 0.020689812, 0.014922237, 5.0840346E-4, -0.015833624, -0.0011290298, 0.01655457, -0.009202273, -0.029953297, 0.011025044, 0.014527757, -0.025178725, 0.022934267, 0.005114641, -0.0018924852, 0.029381981, 0.0034432008, 0.005260871, 0.0059376084, -0.016200898, 0.0056519504, 0.009889212, 0.0047337636, -0.010929825, 0.0019724015, -0.024512189, -0.019043876, -0.003591131, -0.0023447773, 0.0029449994, -8.2764344E-4, -0.013045055, 0.0013432734, -0.028729048, -0.008080045, -0.020077687, 0.0141196735, 1.0510264E-4, -0.003183048, -0.003625138, 0.011113462, -7.8130903E-4, -0.024158517, -0.019152699, -0.025736438, -0.009270287, -0.03248341, 0.023097502, -5.398599E-4, 0.0039516045, 0.033299576, -0.018608587, 0.03297311, -0.0036931518, -0.031123135, -0.0049378052, -0.018853437, -0.018350136, 0.010950229, 0.0066755586, 0.028239347, 0.013187884, 0.033571634, 0.004359687, 0.018486163, -0.0036387406, 0.016935447, -0.01405166, 0.018853437, -0.0062334687, 0.009079848, -0.0017513565, 0.002878686, 0.0067571755, 0.015738403, -0.017411545, 0.004063827, -1.1116012E-4, -0.0070462343, 0.016921844, 0.0015158586, -0.009644363, -0.016785817, -0.016785817, -0.01926152, -0.028973898, -0.017506763, -0.010358509, -0.017561175, 0.004726962, 0.018554177, -0.002693348, -0.010834605, -0.019792028, 0.007454317, -0.04110757, 0.03419736, 0.0031422395, 0.0022342547, 0.035095144, -0.0027426581, 0.01144673, -0.013847618, 0.036754683, 0.01645935, 0.027994499, 0.0037407614, 0.02417212, -0.00746792, -0.030089324, -0.027232744, -0.008780587, 0.0065021235, -0.01758838, -0.03041579, 0.022458171, 0.018690204, 0.010433324, -0.016731406, -0.021533184, -0.023750434, 0.027790457, -0.0033003718, 0.012773, -0.016377734, 0.014527757, -0.0077059683, -0.034251772, -0.03476868, -0.023124706, 7.2902336E-4, -0.026171727, -0.004441304, 0.03395251, 0.021437963, 0.005427505, -0.0015362627, 0.023900066, -0.017751614, 0.008583347, -0.015888033, 0.005954612, -0.058818374, 0.019819234, 0.014078866, -0.022730226, -0.031993713, -0.0363466, -0.014772607, 0.0013764302, -0.00839971, 0.003989012, -0.021886855, -0.05626105, -0.004108036, -0.024063298, -0.0068353913, -0.006284479, -0.033571634, -0.0145549625, 0.038060546, 0.0023464777, 0.01051494, 0.0067741787, 0.007889606, -0.03354443, 0.050139807, -0.012643773, 0.029273158, -0.0053050797, -0.015167087, -0.025546, -0.026865467, -0.004318879, -0.002353279, 0.034714267, -0.006913607, -0.003788371, 0.016472952, 0.006566737, 0.012405725, -0.021233922, 0.0043358826, -0.019587986, -0.015289512, -0.035312787, -0.0020472168, -0.017397942, -0.004774572, -0.0036047336, 0.0038257786, 0.027613621, -0.01493584, 0.0023855856, 0.025409972, 0.0028225745, 0.03999214, -0.003723758, 0.021587593, 0.02334235, -0.019683206, -0.0013602768, -0.017601984, 0.0016289316, 0.009093451, 0.0041692485, 0.028375376, 0.0027103517, 0.0038869912, 0.0038631863, -9.947025E-5, -0.012936234, -0.0016748409, 0.01090942, 0.021750826, 0.015031059, -0.009487932, 1.1286047E-4, -0.0141196735, 0.010419721, 0.010957031, 0.0040264195, 0.0036931518, -0.011841211, 0.009889212, 0.022988679, -0.0034125946, 0.0058593927, 0.012807007, 0.02009129, 0.015588773, -0.0014206391, -0.023900066, 0.016649788, -0.008664964, 0.04918761, -0.010861811, -0.008712573, 0.015738403, -0.004407297, -0.0048901956, -0.017411545, -0.0010159567, 0.03153122, -0.014106072, -0.015656786, -0.011956833, -0.013568762, -0.003989012, -0.00471676, -0.0078351945, 0.011786799, -0.007195865, -0.018118888, -0.0023260734, -0.027491195, -0.019098287, -0.024253737, -0.026634222, -0.02834817, -0.017397942, -0.0045807324, 0.0122901015, -0.042903133, 0.0074407146, -0.022430966, 0.0106713725, 0.037516437, 0.010480933, -0.03055182, -0.007134652, 0.019778425, -0.017914847, 0.011331107, 0.004499116, 3.8300295E-4, -0.023029488, 0.0022087495, 0.0036523435, -0.014228496, 0.006298082, -0.011371914, -0.001763259, -0.051744934, 0.030034913, 0.013276302, 0.016078472, -0.0037305593, 0.0015702696, 0.007678763, 0.011807203, -0.02196847, -0.017969258, 0.011412723, 0.010841407, -0.0033819883, 0.020064084, -0.03406133, 0.013242295, -0.009841603, -0.009447123, 0.012208485, -0.016717803, -0.021383552, 0.0024246934, -6.9544156E-4, -0.013405529, 0.010134063, -0.023723228, -0.027736045, -0.017874038, 0.02594048, 5.330585E-4, 0.008984629, -0.0065191267, -0.018676601, -0.0138204135, 0.0550368, -0.001827872, -0.020825839, 0.011344709, -0.035965722, -0.05250669, -0.019343138, 0.013378323, 0.031667247, 0.02142436, -0.018935055, -0.016350528, -0.018486163, -0.04809939, -0.012473739, -0.023138309, 0.028701842, 0.0151398815, 0.0121404715, -0.02878346, 0.01734353, 0.019873645, 0.03808775, -0.029055513, -0.024797847, 0.007950818, 0.01645935, -0.0065463325, 0.010242885, -0.046058975, -0.010555749, 0.020553784, 0.024621012, 0.017819626, 0.00722307, 0.017561175, 0.004101235, 0.014282907, -0.005260871, 0.011229086, 0.0064035035, 0.0053356863, -0.045922946, -0.023968078, 0.01036531, 6.8779E-4, 2.8778356E-4, 0.009916418, -0.020009672, -0.028293759, -0.006175657, -0.019179905, -0.0030946299, -0.0076039475, 0.0068353913, 0.028484197, 0.011337908, -0.006243671, 0.041842118, 0.0072638784, -0.006427308, -0.010800598, 0.03482309, -0.027450386, -0.009535541, 0.024648217, -0.03232018, 0.0031813476, -0.013548357, 0.008236476, -0.012841013, -0.013929235, -0.01591524, -0.04314798, -0.01954718, 0.03444221, 0.019275123, -0.03237459, -0.027246347, 0.019057479, -0.026647825, 0.011351511, 0.012895425, -0.008447319, -0.052996386, -0.008148058, -0.0046011363, -0.010814201, -0.032456208, 0.029245952, -0.002982407, 0.003370086, 0.002672944, 0.17465955, 0.004397095, 5.8874484E-5, 0.03041579, -0.0012837613, -0.02255339, 0.013439535, 0.0023192721, -0.0032527621, 0.008284086, -0.007624352, 0.022390157, 0.0029688042, -0.0020846243, 0.021206716, -0.024444176, -0.03498632, -0.0051520485, -0.019383945, -0.0022325544, 0.018336533, 0.0031660444, -0.016364131, -0.008508532, 0.03555764, -0.0070190285, -0.019860042, -0.009127458, -0.0020710216, 0.012841013, -0.0077059683, 0.010440125, 0.001203845, 0.007950818, -0.04695676, -0.0072774813, 0.020798633, 0.005046627, 0.021002674, 0.018513368, 0.008039236, -0.018608587, 0.016867433, -0.02511071, 3.8746637E-4, -0.012990644, -0.019275123, 0.010202076, -0.022934267, -0.010188473, -0.03640101, 0.01803727, 0.01709868, 0.040155374, 0.0018006666, -0.021696417, 0.03517676, -0.018200506, 0.017860435, -0.0072842827, -0.013119871, 0.045351632, -0.012385321, 0.039230384, 3.6796553E-6, 0.0022563592, -0.016078472, -0.023274338, 0.030715052, -0.0017139489, -0.006570137, -0.002574324, -0.0034125946, 0.0085561415, -0.035965722, -0.027776854, 0.03528558, 0.0052302647, 0.009249883, 0.006284479, 0.008100449, -0.006563336, 0.016826624, 0.020376947, -0.0026151324, -0.03852304, 0.02151958, 0.009889212, 0.0063048834, 0.0012582561, 0.004199855, 0.019275123, 0.0030912291, 0.0052234633, 0.007182262, -0.0026882472, -0.020866647, 0.041978143, -0.00550232, 0.024280943, -0.012854616, 0.06023306, -0.015847225, -0.010433324, -0.009474329, 0.006029427, 0.010004836, 0.005658752, -0.0013033153, -0.030769464, -0.009073047, -0.042739898, 0.008624155, -0.010793797, 0.023124706, -0.0017216004, 0.019098287, -0.009705575, 0.0040944335, -0.014078866, 0.010596557, -0.015262307, 0.029708447, 0.0031762465, 0.012514547, -0.03566646, -0.03066064, 0.018010065, -0.012099663, -0.035938516, 0.022294939, -0.009317896, 0.003846183, -0.008338497, -0.023396762, -0.011875217, -0.018635793, 0.018921452, 0.014949443, -0.008610552, 0.0044821124, 0.0068115867, 0.009161465, 0.0023328748, 0.028946692, -0.011378716, 0.015860828, -0.017425146, -0.034659855, -0.018105285, -0.03253782, -0.0055839363, 0.020295331, 0.008712573, 0.0358569, 0.015860828, -0.013079062, -0.04347445, -0.0036591447, 0.005148648, -0.030823873, 0.0083521, 5.9427094E-4, -0.011827608, -0.010079652, -0.006294681, -0.17204782, -0.004505917, 0.022907063, -0.022934267, 0.007182262, 0.019982466, 0.049350847, -0.012344513, -0.015099074, 0.0047541675, 0.04235902, 0.005679156, -0.038441423, 0.00363534, 0.0028956893, -0.01051494, -0.017656393, 0.0024535994, 0.03376207, 0.024226531, -0.005182655, -0.018159697, 0.0056315465, 0.01807808, 0.011535148, 0.02932757, -0.007134652, 0.027477592, 0.0017199, -0.0052744737, -0.009147862, -0.01154195, 0.051527288, -0.006219866, -0.0019400949, -0.008875807, -0.008542539, 0.0071210493, -0.01173919, 0.051554494, 0.0063626952, -0.024552997, 0.014282907, -0.008869005, 0.021478772, -7.961871E-4, -0.022335745, 0.006372897, 0.0012982142, -0.007950818, 0.03838701, -0.024906669, 0.015085471, -0.012568958, 0.010589755, 0.005570334, -0.014432537, -0.020948265, 0.009073047, -0.016377734, 0.0055329264, -0.013582365, 0.009467527, -0.026457386, 0.014568565, -0.019914454, -0.013140274, 0.023369556, -0.029245952, 0.0015337121, 0.010440125, -4.3996455E-4, 0.020444961, -0.01257576, 0.03555764, 0.01724831, -0.030306969, -0.013113069, 0.037625257, -0.0020472168, -0.0074951258, 0.035829693, -0.01591524, 5.186056E-4, 0.0011698381, -0.008195668, -0.009487932, -0.010528543, 0.0058525912, -0.021941265, 0.0065463325, -0.019043876, -0.014378127, 0.011562353, 0.018390944, 4.0744542E-4, -0.0054377066, -0.011657573, -0.0036285385, 0.013650378, -0.001066117, -8.688769E-4, -0.041352417, 0.014228496, 0.036754683, 0.0017853634, 0.008583347, 0.03202092, 0.010603358, 0.023206323, -0.015888033, 0.017302722, 0.022920666, 0.02697429, 0.0018822831, 0.018812628, -0.016146487, -0.01734353, 0.021696417, 0.0040842313, 0.025981288, -0.0032612637, -0.009188671, 0.0088554025, -0.029273158, -0.030252557, -0.07209467, -0.013582365, 0.02215891, 0.021900458, -0.013228693, -0.0057913787, 0.0048357844, 0.00928389, -0.031912096, 0.030252557, -0.0025828257, -0.041869324, -0.007447516, 0.0062334687, 0.02127473, 0.007291084, 0.004839185, -0.03729879, -0.018839834, 0.02736877, -0.0072842827, -0.012956637, -0.009011834, 0.0046453457, -6.1042426E-4, -0.013861221, -0.023573598, 0.022022882, 0.032646645, 0.008025633, 0.019560782, -0.026960688, -0.0029347974, -0.00943352, -0.057512507, -0.024240134, 0.009372308, -0.022294939, 0.040862717, -0.030062119, 5.5431284E-4, -0.0042372625, 0.018295724, -0.030524613, -0.02657981, -0.020322537, -0.02127473, 0.044970755, -0.009664767, -0.0033037725, -0.0063490923, -0.009739582, -0.006029427, 9.453924E-4, 0.03359884, 0.0034738071, -0.008732977, 0.013745598, -0.0099504255, -0.021628402, -0.007998428, 0.015602375, 0.013997249, 0.0047099586, 0.008182066, 0.005002418, -0.014092469, 8.1829156E-4, 0.03120475, -0.035503227, -7.264729E-4, 0.031041518, -0.0149902515, 0.03640101, -0.039856113, 0.0078964075, -0.016636185, -0.012228889, 0.034551032, -0.013140274, -0.018880643, -0.022308541, 0.031259164, -0.026117316, 0.027477592, 0.039230384, 0.01518069, -0.014133276, 0.0074067074, -0.024539394, -6.546333E-4, -4.952258E-4, 0.02957242, 8.35295E-4, -0.030579025, -0.027355168, 0.0031915496, -0.0068115867, -0.023791242, -0.004747366, -0.031041518, 0.008569744, -0.079331346, 0.022934267, 0.008270483, -0.017302722, -0.015942445, -0.009406314, 0.03041579, -0.006230068, 0.015235101, 0.004958209, -0.011868415, 0.015507156, -0.018050874, -0.015711198, -0.0042780708, -0.010725783, 0.018662998, -0.0023515786, 0.035639253, 0.015629582, 0.0051520485, 0.010338104, -0.010698577, 0.036917914, -0.050765533, 0.0054853163, -0.004941206, 0.006610946, -5.615393E-4, -0.012092861, 0.038196575, -0.0049242023, 0.0137592, 0.04986775, 0.0044821124, -0.0176836, 0.009317896, -0.001763259, 2.2444568E-4, -0.021451566, -0.024784245, -0.00963076, 0.013004247, -0.0045331228, 0.0046453457, 0.0059512113, 0.024376161, 0.010263289, 0.012317307, 0.03036138, -0.0045229206, 0.0075699408, 0.0069986247, -0.033190757, 0.0057947794, -0.023600804, 0.014133276, -0.021642005, 0.019247917, -0.019030273, 0.048616294, 0.010399316, 0.013140274, -0.040753894, 0.008583347, -0.017697202, -0.025450781, 0.0015456146, 0.0015039562, -0.026620619, -0.038795095, -0.010528543, -0.017329928, 0.031776067, 0.0066551547, 0.0155751705, 0.0121404715, 0.010977434, -0.019479165, 0.0075019267, 0.026511796, -0.019125493, -0.0073590977, -0.00948113, 0.0026474388, -0.02387286, -0.016636185, -0.009324698, -0.010106857, 0.024036093, -0.028729048, 0.026756646, 0.0057301666, 0.0065191267, 0.033789277, 0.011956833, -0.034006923, -0.01390203, 0.025477987, 0.029245952, -0.033081934, 0.0077943867, -0.0017615586, -0.005345888, -0.0038699878, 0.011671175, -0.0092158755, -0.037897315, -8.361452E-4, 0.010487734, -0.0018261718, -0.0019196908, -3.090379E-4, -0.0016051267, 0.001665489, 0.01777882, -0.0128002055, -0.019710412, -0.031123135, 0.045569275, 0.012616568, 0.0023362755, -0.006566737, -0.006328688, 0.0235872, -0.0127253905, 0.021111498, 0.009195472, -0.016445747, -0.021220319, 0.007134652, 0.0034738071, 4.726962E-4, -0.00722307, -0.023097502, -0.0014163883, -0.003846183, 0.014731798, 0.014282907, 0.10343546, 0.008216072, -0.0029245953, 0.004359687, -0.016540967, 0.023519186, 9.13936E-4, -0.0066211475, 0.00839971, -0.046249412, -9.3349E-4, -0.0103177, -0.04192373, 0.008848601, -0.015058265, 0.006230068, 0.010528543, 0.0054513095, 0.005379895, -0.0048663905, 0.02785847, -0.0050330246, 0.024212928, -0.009413116, -0.020458564, 0.0062334687, 0.033381194, 0.012847815, 0.0020183108, -0.022240527, 0.006066835, -0.0018295724, -0.01994166, -0.015398334, -0.007005426, -0.015602375, -0.015588773, 0.0013398727, 0.024648217, -0.009277089, 0.011882018, 0.012432931, -0.0117051825, -0.011650772, 0.014922237, -0.013888427, 0.0074407146, -0.03109593, -0.0751961 ], - "id" : "b059f3c6-cb38-4a15-99e0-93c0fdad7007", - "metadata" : { - "name" : "Zephyr 8.8 GX Eagle AXS Gen 3" - }, - "text" : "| A — Seat tube | 39.4 | 41.9 | 44.5 | 47.6 |\n| B — Seat tube angle | 76.1° | 76.1° | 76.1° | 76.1° |\n| C — Head tube length | 9.6 | 10.5 | 11.5 | 12.5 |\n| D — Head angle | 65.5° | 65.5° | 65.5° | 65.5° |\n| E — Effective top tube | 58.6 | 61.3 | 64.0 | 66.7 |\n| F — Bottom bracket height | 34.0 | 34.0 | 34.0 | 34.0 |\n| G — Bottom bracket drop | 1.0 | 1.0 | 1.0 | 1.0 |\n| H — Chainstay length | 45.0 | 45.0 | 45.0 | 45.0 |\n| I — Offset | 4.6 | 4.6 | 4.6 | 4.6 |\n| J — Trail | 10.5 | 10.5 | 10.5 | 10.5 |\n| K — Wheelbase | 119.5 | 122.3 | 125.0 | 127.8 |\n| L — Standover | 72.7 | 74.7 | 77.6 | 81.0 |\n|\ntags: [bicycle, electric bike, city bike]" - }, - "25834666-4bc3-4528-970d-ac7a26818bf6" : { - "embedding" : [ -0.0015784885, -0.0039287563, -0.020212637, -0.012142219, 0.015182763, -0.0040019425, -0.009421031, -0.0029573787, 0.004727149, -0.03331958, 0.017098906, 0.026759455, -0.02077151, -0.008622639, 4.6131077E-5, -0.014929939, 0.014251306, -5.7758705E-4, 0.006839562, -0.026706228, 0.0072121453, 0.029380843, -0.004999933, -0.0015435588, 4.578282E-4, -0.022168698, 0.02469694, -0.02451065, 0.03228167, -0.0066632507, 0.037843805, 0.007498236, -0.035102658, -0.003649319, -0.016806161, -0.025681624, 0.012108953, -0.022980398, 0.013599285, -0.015102925, 0.017058985, 0.0033216453, 0.0025648358, 0.0071921856, -0.018203348, 0.0347833, -0.004224827, 0.0141049335, 0.028422773, -6.16675E-4, -0.0017049006, 0.021490064, -0.018469479, 0.013106943, 0.020146104, -0.013193436, -0.0010936314, 0.014091628, 6.628321E-4, -0.015209377, -0.008389775, 0.011609958, -0.021782808, -0.022714267, -0.030338915, -0.031110695, -0.01411824, 0.017338423, -0.016606564, 0.014291226, 0.00884885, 0.032574415, 0.032760706, 0.014264612, 0.009101674, -0.013865416, -0.016114222, 0.011902701, 0.0067297835, 0.010006519, 0.02900826, -0.006277361, -0.033772003, 0.015462201, 0.009900067, 0.043964814, -0.0012100636, -0.0056419736, -0.01700576, -0.010392409, -0.0045109177, 7.572254E-4, 0.008875463, 0.023525964, 0.0016882675, 0.007877473, 0.009068408, 0.03305345, -0.0027760773, -0.0010204454, -0.0018446193, -1.3784746E-4, 0.003958696, -0.018988434, -0.061156865, -0.0027411475, 8.9735986E-4, -0.0034048113, 0.0068595223, -0.024657022, -0.025907837, 0.018908596, 0.01800375, -0.011583344, -0.002920786, -0.014597276, 0.021450145, -0.012541415, 0.0011069379, -0.03797687, 0.0017215338, 0.046333376, 0.01059866, -0.009467605, -0.0068994416, -0.029753426, -0.022394909, -0.0032451327, 0.022474749, 0.01761786, 0.019041661, 0.008862156, 8.4454956E-4, -0.021796115, -0.03651315, 0.022394909, -0.02327314, -0.019534003, 0.011283947, 0.025109444, 0.0013389707, 0.026253806, -0.034038134, 0.0077710203, -0.0061542755, 0.00318858, -0.022873946, 0.035874438, 0.012208751, -0.012521455, -0.015462201, -0.036034115, 0.023565885, 0.043246258, -6.7904947E-4, -0.019414244, -0.023113463, 9.1399305E-4, -0.0048835007, -0.010206117, -0.015448894, -0.0077577136, 0.016220674, -0.01204242, -0.004673923, 0.015834784, 0.002067504, -0.021862648, 0.012075686, 0.024949765, -0.008489573, 0.023206608, -0.039121233, 0.01677955, 0.022940477, 0.029913105, 0.017711006, 5.1646016E-4, -0.011749676, -0.022381602, 0.01135048, 0.008948649, 0.009401072, 0.032228444, -0.022288457, -0.017098906, 0.012195446, -0.02978004, 0.03374539, -0.02288725, 0.010458942, 0.028609063, 0.0050431793, 0.040797856, -0.6101848, -0.016087608, -0.0048369276, -0.015142844, 0.010059745, 0.022674346, -0.006111029, 0.013027104, -0.0015992799, 0.022022326, -0.0037557713, 0.015568653, -0.036566377, -0.006167582, -0.022368297, -0.02077151, 0.010625273, -0.0053791692, -0.0027444742, -0.028795356, -0.028635677, 0.01896182, -0.02150337, 0.027810672, 0.022048939, 0.0019893278, 0.023645723, -0.0041017416, -0.013233355, 0.0134263, -0.031456664, 0.023299754, 0.0031802633, 0.018136816, 0.043831747, -0.01739165, 0.035342176, 0.020851351, 0.0036360126, 0.028688904, -0.03850913, -0.020665059, -0.003649319, 0.016486805, -0.011323866, -0.0010246037, 0.019866666, 0.014357758, -0.021423532, -0.006769703, 0.009826881, 0.0035362134, 0.019999731, 0.01600777, -0.0035328867, -0.016992453, 0.02962036, 0.008476267, 0.022009019, 0.0050398526, -0.00813695, 0.02058522, 0.0043745255, -0.019746907, -0.022714267, 0.024484036, -0.042421255, -0.024963072, 0.021942487, 7.09405E-4, 0.0010553751, -4.0085957E-4, -6.395457E-4, 0.023233222, 0.0043346058, 0.006979281, 0.049500335, 0.012993838, 0.021090869, 0.023060236, 0.030152623, 0.011543425, -0.0045208973, -0.022567894, 0.033798616, -0.004660616, 0.022035632, -0.023965081, 0.01481018, 0.0032384796, 0.0014445914, 0.014091628, -0.002004298, -0.022235231, -0.017404957, 0.022035632, -0.021077562, 0.022780798, 0.014730342, -0.018296495, -0.01657995, 0.005608707, 0.0019294485, 0.0023236547, 0.017058985, 0.0071855322, -0.0013938602, -0.015728332, 0.039653495, -0.0024550569, 0.007957311, -0.0018712324, -0.011643223, -0.0054623354, -0.015302523, -0.025335655, 0.024843313, 0.0135261, 0.010951283, -0.01920134, -5.838245E-4, -0.010232731, 0.01800375, 0.0151162315, -0.009653896, 0.0051163654, 0.01025269, 0.0098734535, -0.03459701, -0.04055834, 0.05274713, 0.043805134, 0.022381602, -0.0026213888, 0.027544541, 0.010059745, 0.0047670687, -0.0054756417, 0.018469479, -0.047610804, -0.029221166, -0.008110337, -0.023166688, -0.029114712, -0.009640589, 0.0012890712, -0.0145307435, 0.008170216, 0.0022537955, -1.5666374E-4, -0.01450413, -0.008369815, -0.01661987, 0.012514803, -0.0058615315, -0.010132931, 0.01938763, -0.006866175, -0.0034164544, -0.025974369, 0.0098202275, 0.0075315023, -0.011150882, -0.01454405, -0.0102992635, -0.0073185978, 0.009387765, -0.011749676, -0.025255816, -0.04404465, 0.0034696807, -0.0133265015, -0.018176736, 0.003403148, -0.010239383, 0.018589238, -0.030152623, 0.017271891, 0.018669078, -0.009101674, 0.005152958, 0.0115035055, -0.025309041, 0.025402188, 0.05274713, 0.009188167, 0.011689797, 0.0290881, -0.015156151, 0.008256709, 0.01063858, 0.0033432685, 0.014211386, 0.003156977, -0.020851351, -0.02723849, -0.0074649695, -0.0043911585, 0.009527484, 0.010931324, 0.038642198, -0.005775039, 0.019706989, -0.026719535, 0.01877553, -0.019480776, 0.0042813797, 0.0017548002, 0.03443733, 0.01127064, 0.018842062, -0.016500112, -0.016872695, -0.028183255, -0.008343201, -0.0060910694, -0.0025365595, 0.038722035, -0.008496227, -0.009141594, -0.015023085, 5.397466E-4, 0.032414734, -0.015888011, -0.01692592, -0.003220183, 0.004956687, 0.01381219, 0.010645233, -0.013665818, 0.019454164, 0.036459923, 0.018136816, -0.0045142444, 0.009700469, 0.0151694575, 0.0037191783, -0.018722303, 0.01842956, -0.0042481134, 0.04681241, 0.015076311, 0.047690645, -0.021942487, 0.016433578, -0.008689172, 0.018682385, -0.0045175706, -0.008862156, 0.027571155, -0.0023752176, 0.0017248604, -0.011250681, -0.0054989285, 0.006200848, -0.011629918, 0.0057151597, -0.012055727, -0.010904711, 0.009673855, 1.7558398E-4, 0.029540522, -0.0075581158, -0.0037923644, 0.016646484, -0.0070923865, -0.025708238, -0.0063638533, -0.0027045545, -0.007498236, -0.011443625, -0.024138067, -0.005701853, 0.016247287, 0.019068275, -0.011224068, 0.011816209, 0.030179236, 0.0065401653, 0.030764723, -0.016540032, -0.01735173, -0.019028354, 0.024657022, 0.0024500669, 4.0252288E-4, 0.008223442, 0.017444875, 0.005059812, 0.025788078, 0.016207367, -0.004723822, -0.008423041, -6.054476E-4, -0.014277919, 0.004138334, 0.03978656, -0.033772003, -0.01954731, 0.023486046, -0.026812682, 0.015821477, -0.019254565, 0.0069992407, 0.027810672, 0.0037391381, -0.003083791, -0.0022504688, 0.015076311, 0.010359143, -0.0037457915, -0.019840054, -0.023565885, -0.007764367, 0.010399062, -0.017724313, 0.01094463, -0.015715025, 0.015342442, -0.0044277515, -0.008762358, 0.0104922075, -0.04662612, -0.020758204, 0.06333914, 0.0051962044, 0.01519607, 0.04212851, 0.0073119444, -0.019706989, -0.009673855, -0.028156642, 0.0034164544, -0.0057151597, -8.932016E-4, 0.007617995, -0.016713016, -0.0040385355, -0.015249296, -0.016526725, 0.014517437, -0.034064747, -0.015728332, -0.03451717, -0.0051030586, -0.016287208, 0.007724447, 0.013180129, 0.010838178, -0.0022920517, 0.023073543, 0.037311543, -0.0070657735, -0.0027877204, -0.02166305, -0.0027394842, -4.0460203E-4, -0.013918642, -0.026040902, 0.008782317, 0.0052228174, -0.0070923865, 0.0473979, 0.015395668, 0.014983166, 0.022754187, -0.018243268, 0.010332529, 0.0023469413, -0.0028342933, 0.007910739, 0.016673096, 0.020146104, -0.02270096, 0.025681624, 0.0047936817, -0.035262335, 0.0018862023, 0.0015685086, 0.02524251, -0.029460683, -0.012774279, -0.017112212, -0.02701228, -0.0038555705, -0.019494083, 0.034171198, -0.008902077, -0.0027128712, 0.01954731, 0.0039387364, 0.011150882, -0.010093012, -0.014464211, -0.03150989, 0.01381219, -0.01063858, -8.549453E-4, 0.017977137, 0.014663809, -0.010146238, -0.03382523, -0.0035096004, -0.011749676, 0.020452155, 0.0026480018, -0.0033715449, -0.020851351, -0.014078321, 0.00123335, 0.022248538, 0.024590489, 0.00707908, -0.00247668, 0.015408975, 0.003948716, 0.03097763, -0.016939227, -0.015715025, 0.008742398, 0.021490064, -0.0025382228, 0.01757794, 0.001733177, 0.033958293, 0.008875463, 0.0018363027, -0.0019394284, 0.02027917, -0.012002501, -0.013639205, 0.0039387364, -0.008416387, 0.016979147, 0.009700469, -0.008968609, 0.006979281, -0.012681134, -0.018682385, 0.010997857, -0.017085599, -0.012568029, 0.014184773, -0.032840542, -0.0013173476, -0.048222907, 0.028103415, -0.019267872, -0.0015136191, 0.011556732, 0.011796249, -0.012787586, -0.006250748, 0.005226144, 0.031057468, 0.021942487, -0.018908596, 0.008529493, -0.03813655, -0.034650233, -0.011609958, -0.012029113, -0.0013289908, -0.025907837, -0.009700469, -0.01731181, 0.018722303, 0.0058615315, 0.014570663, -0.021649742, 0.012162179, -0.004727149, -0.003413128, 0.015488815, -0.020092878, -0.009048448, -0.024164679, -0.011057736, -0.010339183, -0.030525206, -0.020877963, -0.0044543645, 0.0015402322, 0.019015048, 0.012627908, 0.0065168785, -0.026998973, 0.022754187, -0.009514177, 0.0042580934, -0.019001741, -0.0063904664, -0.022714267, 0.02192918, 0.04290029, -8.956966E-4, 0.018442867, -0.01419808, -0.0014570663, 0.022621121, 0.014078321, -0.033026837, -0.016074302, -0.007963965, 0.0030987607, -0.005691873, 0.0040185754, -0.019001741, -0.028635677, -0.018682385, 0.017498102, 0.010565394, 0.01055874, -0.0025315695, 0.003848917, -0.01283416, 0.014956553, -0.009101674, 0.008336548, 0.004624023, 0.014171466, -0.020079572, -0.019613842, 0.03840268, -0.012874079, 0.0049334, -0.0037624247, -0.01312025, -0.005958004, 0.0032185197, -0.03047198, -0.0085627595, 0.030365527, -0.019041661, -0.01519607, -0.0123883905, -0.031270374, -0.048462424, -0.004354566, 0.010771645, -0.013745657, 0.015715025, -0.032840542, 0.010844831, 0.011164188, -0.008057111, 0.033213127, 0.010691806, 0.04220835, 0.019959813, -0.0036227058, -0.029460683, -0.030871175, -0.006420406, 0.0032584392, 0.002701228, 0.029859878, -0.0047304756, -0.014663809, -0.012794239, -0.0023153382, 0.0017631167, -0.02520259, 0.007005894, 0.025109444, 0.015435588, -0.018895289, -0.023406206, -0.023446126, 0.00886881, -0.009347846, -0.0060544764, 0.01175633, -0.015342442, -0.01562188, 0.061582673, -7.019201E-4, 0.013539406, 0.026440097, -0.020186024, 0.02550864, 0.006466979, -0.016806161, -0.015941236, 0.0053758426, 0.03012601, -0.011436973, -7.4017636E-4, 0.01104443, -0.009381112, -0.018602544, 0.012029113, 0.00917486, 0.026879214, -0.010073052, -0.015262603, -5.530531E-4, -0.017325116, -0.011922661, -0.034490556, -0.029646974, -0.008010538, 0.013007144, 0.015462201, 0.026732842, -0.015608573, -0.019560616, -0.008622639, -0.0031769369, -0.010718419, -0.03504943, 0.0010420685, -0.019321099, -0.014677115, -0.014038402, -0.009727082, 0.021476759, -0.018416254, 0.0059713107, -0.026692921, 0.00429136, 0.02978004, -0.04063818, -0.008735744, 0.0069726277, 0.011463585, -0.035954274, 0.0051429784, 3.432672E-4, -0.0077776737, 0.011430319, 0.01893521, -0.03135021, -0.0031985599, -0.014171466, 0.0028442733, 0.021370305, -0.017857378, 0.012574682, 0.009301272, 0.013878723, -0.019879973, -0.007611342, 0.0060012504, -0.019134806, -0.009374458, 0.046306763, -0.041622862, -4.1749273E-4, -0.0037690778, 0.006187542, -0.0028043536, 0.014410985, -0.01489002, -0.0059979237, 0.0023319714, 0.005202858, -0.015994463, 0.009201474, -0.013892029, -0.014450904, -0.019840054, -0.033612322, 3.2289154E-4, 0.018748917, 0.020412235, -0.012980531, -0.006576758, -0.020758204, -0.032068767, -0.018190043, 9.813574E-4, -0.0030305649, -0.008655905, 0.020106183, 0.04050511, -0.002293715, -0.0049334, -0.019534003, 1.7080194E-4, -0.014916633, 0.0036027462, 0.010665193, 0.017684394, 0.016726322, 0.022993704, -0.00954079, 0.02943407, 0.019760214, 0.03909462, 0.0045674704, -0.01881545, 0.015023085, 0.015675105, 0.013133557, -0.004806988, -0.029141326, -0.031057468, 0.0033133288, 0.017231971, 0.017883992, 1.3192189E-4, -9.655559E-4, 0.009268006, 0.0032684193, -0.004916767, -7.4142386E-4, 0.024603795, 0.033000223, -0.038748648, -0.0290881, -0.00954079, 0.010212771, -0.014876713, -0.0047570886, -0.008682518, -0.0021922528, 0.0033998212, -0.0100331325, -0.034756687, 8.41015E-5, -0.0062540746, 0.01350614, -0.0123883905, 9.4226946E-4, 0.025974369, 0.006150949, -0.021569904, 0.01877553, 0.026014289, -0.029913105, -0.0056885467, 0.0014412648, 0.005608707, -0.002005961, -0.0069859345, 0.04590757, 0.011244028, -0.0047837016, 0.008103684, -0.0047338023, -0.026839294, 0.034676846, 0.009720429, -0.019973118, -0.020957803, -0.006906095, 0.012940612, -0.013838803, 0.016939227, -0.015315829, -0.03792364, -0.016606564, -0.0039520427, -0.014557356, -0.02620058, 0.0028293033, 0.004304666, 0.014211386, 0.015222684, 0.20108846, -0.0062540746, -0.014344452, 0.06621335, 0.011397053, 0.009427684, 0.012933958, 0.0012957244, 0.012514803, 0.014038402, 0.02027917, 0.013572672, -0.02123724, -0.0021955792, 0.009387765, -0.0012948929, -0.04894146, -0.008742398, 0.0057051796, -0.005874838, -0.042980127, -0.017484795, 0.009999866, -0.009081715, 0.019361017, -0.010751685, -0.007977271, -1.2318947E-4, 0.016673096, 0.013213396, 0.0045940834, -0.030711498, 0.016553337, 0.018762223, -0.0041316813, -0.015941236, 0.012894039, -0.024390891, 0.007571422, 0.018243268, -0.009055101, 0.005572114, 0.0014628879, -0.004480978, -7.676211E-4, 0.024297744, -0.024909846, -0.0034231078, -0.013852109, 0.0070125475, -0.01454405, -0.004341259, -0.017591247, 0.030871175, 0.0030821278, 0.0017913932, 0.008323242, -0.009168207, -0.008250056, -0.0020026346, -0.011071042, 0.037710737, -0.008928689, 0.018456172, -0.0010229404, 0.01025269, -0.017511409, -0.01700576, 0.0055122348, 0.0063339137, -0.01175633, -0.020372314, -0.01419808, 0.030764723, -0.01411824, -0.0072121453, -0.0014495814, 0.03685912, -0.00744501, 0.03143005, -0.002172293, -0.0040651485, 0.013785577, -0.037258316, 0.0015485488, -0.039254297, -6.865344E-4, -0.00990672, 0.012341817, 0.015608573, -3.4659382E-4, -0.024909846, 0.0032068766, 0.0065933913, 0.0024018306, -0.0033515852, -0.02654655, -0.0038788568, -0.01350614, 0.006111029, -0.024843313, 0.052481, 0.0039387364, 0.016686402, -0.025681624, -0.007471623, -0.0025698259, 0.046572894, -0.004135008, -0.044310782, -0.01661987, -0.038722035, 0.013705738, -0.009520831, 0.006806296, 0.008183523, -0.012554722, -0.019906586, -3.9961206E-4, 0.0015044708, 0.020172717, -0.0054756417, 0.033798616, -0.014091628, 0.006184215, -0.0025565194, -0.029221166, 0.04239464, -0.0058715115, -0.022182005, -0.0025681625, 0.014770261, 0.024005001, -0.034916364, 0.0015743301, 0.01673963, 0.009813574, -0.011982541, -0.012328511, -0.02550864, -0.010066398, 0.011224068, 0.01163657, 0.013439607, 0.04255432, -0.046839025, -0.002811007, -0.01716544, 0.015994463, -0.025189282, -0.01834972, 0.023938468, 0.0061642556, -0.019906586, 0.013186783, 0.0016059332, -0.021862648, -0.04463014, -0.004610717, 0.0077843266, -0.03797687, 0.019959813, 0.0019976445, -0.004673923, -0.018150123, 0.015688412, -0.16723661, 0.0035362134, 0.003403148, -0.020412235, 0.0056186873, -0.0020408907, 0.01373235, 8.3997543E-4, -0.008941996, 0.024444116, 0.016207367, -0.0057683857, -0.01035249, 0.0069859345, 0.0010162871, 0.01098455, -0.020265862, 0.010392409, 0.026746148, -0.006094396, 0.042926904, -0.016952533, 0.010525474, 0.020106183, -0.01450413, 0.0044011385, -0.013133557, 0.0185094, 0.008363161, -0.0133797275, -0.005878165, -0.023645723, 0.024657022, -0.015901318, 0.031882472, -0.011969234, -0.0011235711, 0.017897299, 0.012142219, 0.043805134, 0.020092878, 0.036459923, 0.0070923865, 0.01373235, -0.004058495, -0.0036193794, -0.012182139, -0.0072321054, 0.019840054, -0.013306541, 0.045561597, -0.029274391, -0.021836035, -0.011616611, 0.018908596, 0.0060511497, -0.0043578926, 0.014823487, 0.021250546, -0.016633177, -0.0268526, -0.004461018, 0.013406341, -0.022341684, -0.014663809, -0.022394909, -0.015528734, 0.012381737, -0.0133265015, -0.0019194686, 0.015448894, 0.0015535387, -0.008443001, 0.028156642, 0.01977352, -5.821612E-5, -0.024750168, -0.004916767, 0.029939719, -0.010179504, -0.008043804, 0.039893012, -0.031563118, -0.008309935, -0.015821477, -0.00458743, -0.016154142, 0.01550212, 0.007278678, 0.0043346058, -0.009008529, -0.025295734, -0.0026679616, 0.019440858, -0.008655905, 0.0047038626, 0.0045375307, -0.014557356, 0.012701094, 0.003639339, 0.012202099, -0.019720294, -0.028981647, 0.03385184, 0.0022022326, 0.011769636, 0.010858138, 0.02292717, -0.012055727, -0.022647733, 0.011137575, 0.015435588, 0.020651752, 0.019241259, -0.00528935, 0.0078907795, 0.015994463, -0.019188033, 0.017178744, -0.020758204, 0.019001741, 4.6448148E-4, -0.010572047, 0.024244519, -0.0071655726, -0.0134263, -0.0695666, -0.015728332, 0.036885735, 0.022261843, -0.010864791, 0.005891471, -0.010698459, 0.04327287, -0.0028908462, 0.005728466, 0.01275432, -0.0041815806, 0.0036792587, 0.012687787, 0.029700201, -0.0035694798, 0.01743157, -0.028103415, -0.021942487, 0.016021077, -0.010246037, -0.022474749, -0.037950255, -0.0014903327, -0.029859878, -0.019148113, -0.036726054, 0.022408215, 0.019281179, 0.0012990511, 0.0145307435, 0.0012799229, 0.0036726054, -0.0058881445, -0.030658271, 0.004673923, -0.013126903, -0.0010013173, 0.021862648, -0.05482295, -0.0016109232, 0.015901318, 0.028342932, -0.013419647, -0.031483278, -0.024670327, -0.0042481134, 6.740595E-4, 0.0054523554, -0.022368297, -0.0043745255, -0.0021074235, 0.0034696807, -0.008263363, 0.023153381, -0.005033199, 8.6742017E-4, -0.023033623, -0.028422773, 0.017631168, -0.004048515, 0.037178475, -0.02089127, 0.031962313, -0.006932708, -0.01481018, -0.003948716, 0.009733735, 4.114632E-4, -0.019720294, 0.0033632284, 0.022421522, -9.356162E-4, 0.020052958, -0.019613842, 3.2185199E-4, 2.6322002E-4, 0.0014861743, 0.008742398, 0.0014420964, -0.013665818, -0.030578433, -0.0017764233, -0.025974369, 0.028369546, 0.015901318, 0.020784818, 0.011263987, 0.028795356, -0.037790578, 0.010319223, 0.02089127, 0.038296226, -0.02408484, -0.02566832, 0.014384371, -0.011616611, -2.1155321E-4, 0.0060345167, 0.018416254, -0.026679616, -0.020518687, -0.080371514, 0.030152623, 0.036619604, -0.022501362, -0.0010221087, 0.013652512, 0.010345836, 0.001628388, 0.0063272603, 1.01722275E-4, -0.011430319, -0.001974358, -0.0145839695, -0.028981647, -0.0033083388, -0.022341684, -0.0024583836, 0.01236843, 0.011456932, 0.031217147, -0.008542799, 0.025788078, -0.014663809, 0.009959946, -0.006879482, 0.010977897, 0.004999933, 0.008003885, 7.1262766E-5, 0.0036260325, 0.00960067, -0.028981647, 0.0031104041, 0.023193302, -0.021476759, -0.003722505, -9.489227E-4, 0.00850288, -0.0010611967, -0.06200848, -0.019986425, -0.008489573, -0.0036459924, -0.020252556, -0.026799375, -0.00601123, 0.01025269, -0.0019726949, 0.011629918, 0.020026345, 0.010226077, 0.023725564, -0.0088821165, -0.05466327, -0.0015127874, 0.012967224, -0.007298638, 6.5077306E-4, -0.006613351, -4.2102727E-4, 0.052640676, 0.029513909, 0.029327618, -0.04005269, 0.023007011, 0.008063764, -0.03928091, -0.0053791692, 0.016154142, -0.014131547, 1.1404122E-4, -0.021024335, 0.028076803, 0.003759098, 0.009733735, -0.02504291, 0.005226144, 0.010771645, -0.013459567, 0.03419781, 0.011889394, -0.016100915, -0.029806653, 0.0047936817, 0.015395668, -0.0056319935, -0.025641706, 0.026573163, -0.016247287, 0.008163563, -0.03451717, 0.0056186873, -0.036912344, -0.019573923, 0.0410906, 0.0040285555, -0.02512275, -0.01896182, -0.005226144, 0.0067563965, -0.01700576, 0.017790847, -2.5495541E-5, 0.012568029, -0.00531929, 0.01600777, 7.763535E-4, -0.036273632, -0.01061862, 0.010718419, 0.0026263786, -0.010425676, -0.008057111, 0.01631382, -0.038216386, 0.00960067, -0.005818285, -0.015528734, -0.029593749, 0.0032334896, 0.012248672, 0.02701228, -0.0017464836, -0.007817593, 0.008569413, 0.013679124, -4.5616488E-4, -0.0075381557, 0.015488815, 0.016060995, 0.006187542, 0.0100863585, 3.463859E-4, -0.011323866, 6.466147E-5, -0.013679124, 6.689656E-5, -0.0012009153, 0.013153516, 0.07318598, 0.0135926325, -0.011769636, 9.722092E-4, -0.008476267, 0.004497611, 0.02369895, 0.011975887, -0.030764723, -0.03978656, 0.011124269, 0.0073119444, -5.4931064E-4, -8.948649E-4, -0.034809913, 0.019786827, 0.004690556, -0.023525964, -0.016167447, 0.008682518, 0.021569904, -0.011064389, -0.015475508, -0.0010320887, -0.0019144786, -6.9235597E-4, 0.02805019, 0.0016857724, -1.2955686E-5, -0.039068006, 0.0020292476, 0.005429069, -0.032414734, -0.016872695, 0.010239383, -0.01027265, -0.02662639, -0.0045208973, -0.0017947197, 0.008216789, -0.006380487, 0.019986425, -0.009148248, -0.02443081, 0.011935968, 0.021410225, -0.025748158, -0.02789051, -0.016792856 ], - "id" : "25834666-4bc3-4528-970d-ac7a26818bf6", - "metadata" : { - "name" : "Velocity Frost 32oz Insulated Water Bottle" - }, - "text" : "price: 18.99\nname: Velocity Frost 32oz Insulated Water Bottle\nshortDescription: \ndescription: ## Overview\nThe Velocity Frost is a high-performance insulated water bottle designed to keep your drinks cold and refreshing on long bike rides. With its generous 32-ounce capacity, you can carry more hydration with you to stay hydrated for longer. The bottle features a secure screw cap and a sleek design that ensures a leak-free closure and a comfortable grip.\n\n## Product Details\n- Premium insulated bottle that keeps your drinks cold for extended periods and provides leak-free closure\n- Form-fitting insulation layer keeps your drinks cold twice as long as traditional bottles\n- Screw cap with a secure thread-on design ensures no leaks and easy access\n- Lightweight and durable construction for long-lasting use\n- Tethered cap for convenient handling and no risk of misplacement\n- BPA-free and phthalate-free, ensuring safe and healthy hydration\n- Dishwasher safe for easy cleaning and maintenance\n- Fits securely in most standard bottle cages for hassle-free transport\n- Dimensions: 32oz (946ml) capacity, 11.5\" (29cm) height, weight: 150g\n\n## Features\n1. Insulation Performance: The Velocity Frost is designed to keep your drinks icy cold for longer, allowing you to enjoy refreshing hydration throughout your ride.\n2. Leak-Proof Design: The screw cap ensures a secure and leak-free closure, giving you peace of mind when carrying the bottle in your bag or cage.\n3. Ergonomic Grip: The bottle's sleek design and textured surface provide a comfortable and secure grip, even when your hands are wet.\n4. Easy Access: The screw cap allows for easy access to your drinks, so you can stay hydrated on the go without any hassle.\n5. Durable Construction: Made from high-quality materials, the Velocity Frost is built to withstand the rigors of cycling and keep up with your active lifestyle.\n6. Generous Capacity: With its 32-ounce capacity, the bottle lets you carry more hydration, reducing the need for frequent refills on long rides.\n7. Stylish Design: The Velocity Frost features a sleek and modern design with vibrant colors that will make you stand out on the road.\n8. Versatile Compatibility: The bottle fits securely in most standard bottle cages, ensuring a stable and reliable attachment to your bike.\n\n## Conclusion\nThe Velocity Frost 32oz Insulated Water Bottle combines performance, durability, and style to provide cyclists with a reliable hydration solution. With its exceptional insulation capabilities, leak-proof design, and ergonomic grip, this bottle is a must-have accessory for any avid cyclist. Stay refreshed and hydrated on your rides with the Velocity Frost.\ntags: [bottle]" - }, - "4049ede1-899d-4872-98be-1458556f2cc7" : { - "embedding" : [ 0.0064720344, -0.002867293, -0.030171398, -9.3443785E-4, -0.0016087483, 0.02600936, -0.017712226, -0.036448125, -0.012021416, -0.026386503, 0.0067111156, 0.0128295785, -0.018816715, -0.0118530495, 0.01172509, 0.012162845, 0.017402431, -0.01893794, 7.976395E-4, -0.043748528, 0.0068121357, 0.0077516246, -0.011321009, -0.014722026, -0.028905276, 0.0047210157, 0.03959996, -0.004128363, 0.013051824, -0.0040711183, 0.014816311, 0.029174665, -0.0106744785, -0.0024850995, -0.010916928, 0.0060241777, 0.023059567, 0.013098966, 0.035639964, 0.0060915244, 0.02712732, -0.009980806, -0.018574268, -0.008007543, -0.014493046, 0.01918039, 0.026804054, -0.007832441, 0.011805906, 6.608412E-4, -0.002118059, 0.03634037, -0.02538977, 0.010539785, 0.0036737719, -0.016217126, 0.020486917, 0.016392227, 0.032164864, 0.022844058, 0.0013250497, 0.008249992, -0.031518336, -0.017321615, -0.04091996, -0.03418527, -0.0052597905, 0.024204465, 0.009011012, 0.004313567, 0.007906523, 0.020688958, 0.032622825, 0.004236118, 0.0044078524, -0.019220797, 0.007711217, -0.0021315285, 0.0022594875, 0.0017897431, 0.03270364, -0.0024749974, -0.0063306056, 0.005343974, 0.03359262, 0.016904064, 0.004835505, -0.021241203, -0.0014908913, -0.012883456, 0.009374685, 0.020190591, 0.0122706, 0.024568139, -0.002533926, -0.0013561976, -0.019638347, 0.011314274, 0.0011465804, -0.015018352, 7.286089E-4, 0.016728962, -0.013186517, -0.023786914, -0.026170993, -0.034346905, -0.019436307, -0.011058356, 0.012398559, -0.005350709, -0.020769775, 0.029955888, 0.01570529, -8.830858E-4, 0.01377917, -0.01107856, 0.023113446, 0.007832441, 0.022345692, -0.017550595, 0.014883658, 0.021874264, 0.0060982592, -0.022978753, 0.0018436206, 0.0012972691, 0.003744486, 8.0184866E-5, 0.016702024, -0.021133447, -0.011509581, 0.015853453, 0.020109775, 0.01020305, -0.03340405, 0.010869785, -0.019934673, 0.012398559, -0.027612217, -0.024150588, -0.0031080581, 0.0223861, -0.016540391, 0.009711418, -3.1716167E-4, -0.004471832, -0.007980604, 0.022628548, 0.017362023, 9.647439E-4, 0.012223457, -0.0065764217, -0.0015355087, 0.028097114, 0.009374685, -0.009543052, -0.0090446845, 0.0027309156, -0.004667138, -0.010916928, -0.017308146, 0.00683234, -0.0019985184, -4.832664E-5, 0.021119978, 0.0023958648, -0.0059703, -0.033511803, -0.0010320907, -0.029982826, -0.022628548, 0.029928949, -0.033619557, 0.025645688, 0.007482237, 0.0029430583, 0.020891, -0.019288143, -0.03297303, -0.00489275, 0.02925548, 0.011859784, 0.012688151, 0.024702832, -0.013913863, 0.0062161162, 1.1976431E-5, -0.034804862, 0.011145907, -0.016728962, 0.020540796, -3.9755699E-4, 0.011442233, -0.010815907, -0.6021349, -0.026575075, -0.0122706, -0.0037175473, -0.0094555, 0.022399569, 0.0036535678, 0.016459575, -0.0016011718, 0.007576523, -0.010007745, 0.010741826, -0.016163249, -6.1622384E-4, -0.04541873, -0.02755834, 0.0134087615, -0.018116308, -0.005128464, -0.01676937, -0.03485874, -0.00651581, -0.022184059, 0.0043236692, 0.005498872, 0.0050510154, 0.02606324, 0.0014100751, -0.0051554027, 0.012937333, -0.031706907, 0.051318314, 0.002969997, -0.001513621, 0.034508538, -0.014870189, 0.01935549, 0.014506516, 0.020971816, 0.014560393, -0.012735293, -0.004158669, -0.0012425497, -3.8871772E-4, -0.020500388, 0.004980301, 0.04760077, 8.544634E-5, 0.005354076, -0.03836078, 0.014964474, -0.006138667, 0.0134828435, 0.011651008, -9.328594E-5, -0.029174665, 0.03528976, -0.011098764, -0.0070444825, 0.018466512, 0.0141697815, 0.023288548, 0.012944069, -0.00880897, -0.01678284, 0.0065932586, -0.02432569, -0.022062834, 0.015382025, -0.010741826, 0.004636832, 0.028797522, 0.0075293803, -0.0039061185, 0.026534667, 0.013597333, 0.061420344, -0.0025372934, -8.662491E-4, 0.017267738, 0.023692628, 0.012580396, -0.0047950973, -0.03572078, 0.03854935, 0.0037276493, -0.001985049, -0.004636832, 0.024473853, 0.013361619, 0.013859985, 0.012964273, -0.005216015, -0.029902011, -0.014722026, 0.040596694, -0.002980099, 0.02711385, 0.024877934, -0.034104455, -0.017254269, 0.008202849, 0.014237128, 0.009637337, -0.0023655589, 0.0071118297, -0.0028757113, -0.022736304, 0.012694885, -0.027585277, 0.014708556, -0.031895477, -0.026332626, 0.009590195, -0.013381823, -0.03211099, 0.016607739, 0.012539987, 0.006266626, -0.030494662, 0.003138364, -0.022830589, 0.021779979, -0.015126107, -0.011260397, 0.005569586, 0.013220191, 0.0029632624, -0.032784455, -0.016850187, 0.031922415, 0.039896287, 0.04062363, -0.0045829546, 0.03138364, 1.5337197E-5, 0.012304273, 0.0053001987, 0.002133212, -0.033269353, -0.013684884, 0.005862545, -0.014008149, -0.041782, 3.0158772E-4, -0.021766508, -0.012445701, 0.01462774, -0.018062431, -0.013718558, -0.02431222, -0.014102435, -0.01913998, -0.006428259, -0.018304879, -0.021793447, 2.0140923E-4, -0.011657743, -0.033188537, -0.027073441, 0.020756306, -0.023827322, -0.012465905, -0.012095498, 0.018237533, 0.011994477, 0.002626528, 0.011489376, -0.016877126, -0.027477523, -0.018143246, -5.682392E-4, -0.015233862, 0.00570428, 0.0037781594, 0.01850692, -0.03157221, -0.0039802, 0.0038993838, -0.022924874, 0.021631815, 0.014317945, -0.051614642, 0.02195508, 0.033026904, 4.0344984E-4, 0.026965687, 0.037579555, -0.0031316294, 0.023328956, 0.0104455, -0.0038488735, -0.015449372, -0.0032797926, -0.01590733, -0.01913998, 0.018682022, -0.016836718, -8.212109E-4, 0.019059164, 0.032649763, -4.6385158E-4, 0.003215813, 0.006556218, -0.0068087685, -0.016109372, -0.004539179, -0.0038993838, 0.019395899, 0.022103243, 0.021200795, -0.026224872, -0.0010708153, -0.014668148, -0.009913459, -0.0034582617, -0.0036131595, 0.038818736, -0.012061824, -0.0152203925, -0.017900798, 0.0136444755, 0.036986902, -0.017577533, -0.0024345894, 0.013738762, -0.0011204835, 0.0434522, -0.0027022932, -0.024500791, 9.596929E-4, 0.046038322, 0.01334815, -0.007637135, 0.003842139, 0.008748358, 0.022184059, -0.016459575, 0.035451394, -0.007233054, 0.040381182, 0.03959996, 0.014870189, -0.017779574, 0.025470586, 0.031356703, 0.021214264, 0.008849379, -0.0090446845, 0.017981615, -0.0050543826, 0.006273361, -0.0035929554, 0.008283665, 3.7209145E-4, -0.010324275, 0.01280264, 7.601778E-4, 0.009798969, 0.0044853017, 0.007105095, 0.027383238, 0.017819982, 0.012284069, 0.008566522, -0.008263461, -0.02064855, -0.007105095, -0.004609893, -0.032515068, 0.010519581, -0.02107957, 0.005566219, 0.0037175473, 0.008115298, -0.0018402532, 0.008209583, -0.0065528504, 0.012566926, 0.03981547, -0.0022830588, -0.039222818, 0.003395966, 0.021618346, -0.008835909, -0.0029632624, 0.009320807, -0.009691214, 0.019032225, 0.054093007, 0.008741624, 0.022992222, -0.014466108, 0.007973869, -0.035020374, 0.0105128465, 0.04307506, -0.005556117, 0.0028319359, 0.012849783, -0.021093039, 0.005599892, -0.002020406, -0.03593629, 0.03335017, -0.020729367, 0.019220797, -0.034319963, 0.02627875, 0.002764589, -2.8475097E-4, -0.019530592, -0.019463245, -0.030306092, -0.012533252, 0.0024598443, 0.008674277, -6.9535646E-4, 0.019638347, -0.049163215, 0.0038286697, -0.0014176517, 0.007037748, -0.023126915, 0.06179749, 0.010236724, -0.012620804, 0.026426911, -0.031518336, -0.027854666, -0.027059972, -0.0069569317, 0.018143246, 0.016809778, 0.0045627505, -0.011159376, -0.0059905043, -0.022736304, -0.023099976, -0.024864465, 0.015799576, -0.025282014, 0.0045425463, 0.007677543, -0.020581203, -0.016728962, 0.022399569, 7.8669563E-4, 0.021577938, 0.0079604, 0.027800787, 0.026736706, 0.023692628, -0.011448968, -0.0062093814, -0.001379769, 0.010209786, 0.007677543, -0.020123245, 0.011422029, -0.0054955045, -0.015988147, 0.012405293, 0.018560797, -8.5067516E-4, 0.013886925, -0.00807489, 0.0060746875, 0.004882648, 0.002020406, 0.0073946863, 0.0066201976, 0.017550595, -0.023342425, 0.03310772, -0.010297337, -0.019490184, -0.009011012, -0.0032360172, 0.0072195847, -0.0039734654, -0.021389365, -0.016742432, -0.03768731, -0.009145705, -0.021982018, 0.016311413, -0.007482237, 0.011967539, -0.012923865, -0.0030710173, 0.015880393, 0.007549584, -0.012620804, -0.054739535, -5.1730813E-4, -0.016931003, 0.0023571404, 0.0012231875, 0.008728154, 0.0026837727, -0.038872615, 0.0041620363, 0.011543253, -0.025457118, 0.016688554, 0.001564131, -0.008761828, 4.6848165E-4, -0.00125181, 0.018762838, 0.0070310133, 0.033646498, -0.0016474728, 0.01721386, -0.014291006, 0.019678755, -0.0013216824, 0.003072701, 0.0040744855, 0.02579385, 0.017186921, 0.024406506, -0.012768966, 0.008249992, -0.009644072, 0.007589992, 0.017335085, 0.004643567, -0.0024093343, 0.007118564, 0.007381217, 0.015759168, -0.021375896, -0.001887396, 0.004050914, -0.002759538, 0.006064586, -0.02582079, 0.009334276, 0.016971411, 0.0071522375, 0.0057547903, -0.0056504025, 0.01874937, -0.036609758, 0.023557935, -0.0035996903, -0.017766105, 0.030952621, 0.011058356, -0.0064619323, 0.019301614, 0.034750983, 0.07354278, 0.042536285, -9.403307E-4, -0.0027090278, -0.018345287, -0.036286492, -0.00860693, -1.2666999E-5, 0.010162642, -0.023988955, -0.005586423, 7.8248646E-4, 0.017685289, 0.008270196, -0.0043506077, -0.022938345, -0.02409671, 0.012331212, -0.016042024, 0.023086507, -0.016634677, -0.020055898, -0.018426104, -0.032838333, -0.029363235, -0.019530592, -0.006950197, -0.022520794, 0.018089369, 0.024864465, 0.009341011, 0.012694885, 0.0030036704, 0.0031585682, -9.0749905E-4, -0.0066033606, -0.015799576, -0.002235916, -0.023126915, 0.04086608, 0.05872647, 0.012971007, -0.014964474, -0.0030609153, 0.004980301, 0.036744453, -0.0025322423, -0.025430178, -0.031653028, -0.020069368, 0.00860693, -0.03485874, -0.010950601, -0.01527427, -0.039034247, -0.0141159035, 0.028016297, 7.74489E-4, 0.014129373, 0.0150587605, 0.005556117, -0.0010724989, 0.037902817, 0.0074148905, 0.028043237, 0.015408964, -0.005714382, -0.029417112, -0.0065764217, 0.029928949, -0.018197125, 0.011038152, 0.022857528, -0.025160791, -0.006724585, 0.016136311, -0.01162407, -0.01570529, 0.007569788, -8.8561134E-4, -0.01590733, -0.04366771, -0.014924066, -0.036421187, -0.009011012, 0.02258814, -0.021914672, 0.018924471, -0.032353435, -0.0033639763, 0.037822, 0.022992222, 0.017173452, -0.0014908913, 0.016001616, 0.0015616056, -0.015866922, -0.015476311, -0.029794255, -0.008579991, 0.005697545, 0.024204465, 0.01913998, -0.013536721, -0.008532848, 0.013792639, -0.012048355, -0.018830186, -0.022911405, 0.005774994, 0.018789778, 0.033484865, -0.018655082, -0.0057312185, -0.0075630536, 0.010061623, -0.013631007, 0.020042429, 0.021564467, -0.00903795, 0.0062161162, 0.021564467, -0.025376301, 0.016486514, 0.0063676466, -0.044826075, -0.0046772403, 0.0061925445, -0.0204061, 0.017819982, 0.009576725, 0.046038322, -0.006909789, 0.0038758123, 0.025524464, -0.004599791, -0.021591406, 0.0018789776, 4.761634E-6, 0.028150992, -0.011502845, -6.701014E-4, 0.004771526, -0.012715089, -0.004754689, 0.0054854024, -0.017968144, -0.024783649, -0.011657743, 0.0010876519, -0.007361013, 0.012849783, -0.014533455, -0.0077852984, -0.002528875, -0.03205711, -0.026507728, -0.003606425, 0.0074283597, -0.02452773, -0.02734283, -0.018116308, 0.017065696, 0.028447319, 0.0032696906, -0.011219989, -0.0038354043, 0.039653838, -0.03523588, -0.008977338, 0.02258814, 0.00699734, -0.008559788, 0.016136311, -0.008162441, -0.0030238745, 0.023328956, -7.698589E-4, -0.019692225, -0.02300569, -0.003303364, -0.019086104, 0.009832643, -0.018358756, -0.004364077, 0.0052698925, 0.0122503955, -0.021254672, -0.005842341, 0.009112031, -0.0010211469, -0.006647136, 2.8096273E-4, -0.03141058, 0.018641613, -0.005343974, -0.012715089, -0.0165808, 0.0029514765, -0.042536285, 0.001969896, 0.015260801, 0.00827693, -0.010708152, -0.024581607, -0.016715493, -0.01281611, 0.006990605, -0.008155706, -0.0055830553, 0.0013553557, -0.0146412095, -0.029390175, 0.030117521, -0.0041923425, -0.031518336, 0.0063339733, -0.024945281, -0.01742937, -0.03739098, -0.0019968348, 0.03507425, 0.010283867, -0.01699835, 0.00948244, -0.016042024, -0.041701183, -0.017927736, 0.005579688, 0.018156717, 0.014008149, 0.004754689, 0.007361013, -9.765296E-4, 0.028528133, 0.03167997, -0.018062431, -0.0027612217, -7.660706E-4, 0.014223659, 0.020850591, 0.0064147892, -0.046415463, -0.018183654, 0.03138364, 0.017725697, 0.019490184, -0.01783345, -0.0031770887, 0.014398761, 0.03695996, -0.023611812, 0.020715898, 0.027612217, 0.024824057, -0.039923225, -0.022062834, -0.030413847, 0.005636933, 0.0028504562, -0.002508671, -0.039034247, -0.015193454, -0.0011238509, -0.00956999, -0.0077785635, -0.017469779, -9.2349394E-4, 0.0045593833, 0.013570394, -0.02132202, 0.044179548, 0.0064484626, -0.007684278, 0.020284878, 0.030036705, 0.01893794, -0.001769539, 0.0096979495, -0.014439169, 0.019018756, 0.003092905, 0.027167728, -0.0010590295, -0.011785702, 0.0038320369, -0.014722026, -0.021618346, 0.013671415, -0.002082702, -0.018224062, -0.008128767, -0.0045728525, -0.0051520355, 0.010176112, 0.009502644, 0.004724383, -0.018170185, 0.0019177021, -0.007017544, -0.021793447, -0.020123245, 0.024581607, 0.004751322, -0.007185911, 0.0033488232, 0.19589858, 0.031922415, 0.008249992, 0.03359262, 0.026979156, -0.0059568305, 0.01913998, -0.00250362, 0.016728962, -0.020365693, 0.010452234, 0.006892952, -8.351012E-4, -0.0070916256, 0.02498569, -0.014924066, -0.051910967, -0.018870592, -0.014668148, -0.016931003, -0.025093444, -0.016890595, -0.016297942, -0.0383069, 0.010304071, 0.015301209, -0.011927131, -0.015584066, 0.035370577, 0.017321615, 0.012236927, -0.026090177, -0.015260801, 0.013691619, -0.0056638718, -0.0071118297, 0.016661616, -0.019571, -0.027827727, 0.039222818, -1.1648904E-4, 0.0049028522, -0.0022864263, -0.023800384, -0.016634677, 0.014573863, -0.017739166, 0.015018352, -0.029740378, -0.013671415, -0.023773445, 0.014735495, -0.013758966, 0.02280365, -0.009603663, -0.005175607, 0.009374685, -0.0029043339, -0.0016441054, -0.01763141, -0.020715898, 0.030871805, 0.008229787, 0.02689834, -0.005923157, 0.002794895, -0.014802842, -0.04369465, 0.019476715, 0.0073677474, -0.008829175, 0.011711621, 0.009246726, 0.007852645, -0.011657743, -0.024904873, 0.011597131, 0.015139576, 0.001323366, 0.015206924, 0.003912853, -0.0064821364, 0.00591979, -0.009825909, 0.0067313197, -0.031706907, 0.0118530495, -0.014991413, 0.012351416, 2.3276762E-4, -0.0083577465, 0.0069434624, -0.031949356, -0.021901201, -0.0029430583, -0.003338721, -0.028474256, 0.01421019, 0.0054180557, 0.004855709, -0.017725697, 0.03359262, -0.0026433647, -0.002799946, -0.032353435, -0.0039768326, 0.0015759168, 0.017052228, 0.005135199, -0.02750446, 4.1313097E-4, -0.033942822, -0.010378153, -0.01139509, 0.01570529, 0.018857123, -0.006067953, -0.028932216, 0.027154258, -0.034562413, 0.020567734, -0.010667744, 0.0062228506, -0.0035256087, 0.03440078, -0.014560393, -0.017900798, 0.009233256, -0.017335085, -0.03270364, 0.021012224, 0.014304475, 0.019099573, 5.4193184E-5, -0.012991211, -0.0052564233, -0.008748358, -0.017375492, -0.02541671, -0.008923461, -0.008101828, 0.0025423444, 0.019705694, 0.006519177, 0.03211099, -0.013543456, 0.016702024, -0.019261206, -0.0151665155, -0.0047950973, -0.007973869, 0.0027410176, -0.006903054, -0.01742937, 0.012048355, 0.0104455, -0.031141194, -0.02839344, -0.023908138, 0.00925346, -0.03959996, -0.005212648, 0.0046705054, 0.012398559, -0.035020374, -0.019597938, -0.16949861, 0.004020608, 0.01893794, -0.011246927, 0.0083038695, 0.010162642, 0.011954069, 0.0031972926, -0.018466512, 0.0150587605, 5.7777565E-6, -0.02538977, -0.020635081, -0.023342425, 0.010728356, 0.014021618, -0.021416305, -0.0013040038, 0.005114995, 0.0010859682, 0.010849581, -0.015314679, 0.002113008, -0.030171398, -0.007185911, -0.0038488735, -0.0049095866, 0.02798936, 0.008478971, 0.005943361, 0.0047681583, -0.036124863, 0.027881604, -0.005913055, 0.014331414, -4.339664E-4, -0.0067111156, 0.018170185, 0.010667744, 0.039653838, 0.02517426, 0.013772435, 0.020123245, 0.009825909, 0.018587736, 0.025780382, -0.018197125, 0.0072397883, -0.0015784423, -0.0070646866, 0.045122404, -0.012890191, 0.026197933, -0.002426171, 0.023126915, -0.006903054, -0.009947132, 0.015382025, 0.02863589, -0.021402836, -0.037417922, -0.006168973, -0.0088830525, -0.009489174, -0.01765835, -0.035182007, -0.018493451, 0.02623834, -0.02452773, -0.012311008, -0.004832138, -0.020567734, 0.0025271913, 0.017375492, 0.01912651, 0.0127757015, -0.028366502, -0.0068087685, 0.04816648, -0.010384887, 0.0032393844, 0.038145266, -0.013422231, 0.007616931, -0.009563255, 0.004394383, 9.6558576E-4, 0.0038219348, -0.01172509, -0.0014319628, -0.03418527, -0.010344479, 0.007509176, -0.0035660167, -0.0102771325, 0.0075630536, 0.0050510154, -0.0053103007, 0.015799576, -0.0015085699, 0.013785904, -0.006498973, -0.039088123, 0.022251407, 0.042105265, -4.0092433E-5, 0.020581203, 0.03186854, 0.024662424, -0.00474122, -0.02110651, 0.021348957, 0.024204465, 0.028905276, -0.002323467, 0.016836718, -0.0079604, -0.014452638, 0.017766105, -0.007913257, 0.028070176, -0.007872849, -0.021402836, 0.0017863758, -0.020190591, -0.039707713, -0.0701485, -0.003990302, 0.02475671, 0.017914267, -0.027854666, 0.011374886, -0.0064484626, 0.03620568, 5.824452E-5, 0.018830186, -0.0011061723, -0.015772637, 0.003559282, 0.024622016, 0.02648079, 0.00903795, 0.004391016, -0.005293464, -0.033808127, 0.0137657, -0.0326767, -0.0238812, -0.02260161, -0.010108765, -0.021604875, -0.00666734, -0.02498569, 0.027585277, 0.012742028, -0.0034111189, 0.014722026, -0.021214264, 0.0041115265, 0.0075428495, -0.011300805, -0.014802842, -0.013758966, -0.011361417, 0.031464458, -0.043613832, -0.0072397883, -0.00709836, -0.010310805, -0.015530189, -0.006061218, -0.0041216286, -0.0106744785, 0.018991817, 0.0040340777, -0.004983668, -0.008930195, -0.009435296, 0.014223659, -0.017564064, 0.0071993805, -0.031599153, 0.0034784658, -0.017671818, -0.03340405, 0.02536283, -0.011334478, 0.01633835, -0.0075832577, 0.0150587605, 0.011960804, -0.028016297, 0.004633465, -6.802034E-4, 0.030036705, -0.011011213, -0.0031518335, 0.029902011, -0.017254269, 0.018426104, -0.0066909115, 0.014991413, -0.031329762, -0.0038825471, 0.008364481, 0.0060814223, -0.031545274, -0.0105667235, 0.005411321, -0.034939557, 0.0053473413, 0.049459543, 0.020231, -0.0050745867, 0.009812439, -0.038199145, 0.017267738, 0.020958345, 0.04822036, 0.0062161162, -0.0039465264, -0.013684884, -0.01022999, -0.008148971, -0.009772031, 0.009758562, -0.039653838, -0.010809173, -0.07596727, 0.02000202, 0.0057985657, -0.026992625, -0.009138971, 0.0075428495, 0.028474256, -0.017079167, 0.014304475, 0.0058591776, -0.013092232, -0.0024749974, -0.011812641, -0.004976934, -0.014546924, 0.01636529, 0.021429773, -0.012539987, 0.01698488, 0.019099573, 0.011334478, 0.005734586, -0.009724888, 0.019571, -0.03981547, 0.018426104, -0.025497526, 0.02175304, 0.014924066, -7.74489E-4, 0.032784455, -0.021173855, 0.028339563, 0.044071794, -0.0090446845, -0.0034717312, -0.01569182, -0.010714887, 2.2982119E-4, -0.031275887, -0.0288514, -0.028124053, -0.03243425, -0.011172846, -0.015247331, 0.008761828, 0.020729367, 0.0021012223, 0.0015380342, 0.034050576, 0.008115298, 0.004865811, -0.013570394, -0.03224568, 0.0025625485, -0.02260161, 0.006748156, -0.0017308146, 0.009691214, -0.015435902, 0.052665252, 0.011422029, 0.018062431, -0.0069299927, 0.003774792, -0.033215478, -0.021241203, 0.012634273, 0.020554265, -0.01934202, -0.009913459, -0.004657036, 0.020338755, 0.027423646, -0.019449776, 0.011536519, 0.003734384, -0.0044583627, -0.014816311, 0.01571876, 0.02175304, 5.79604E-4, -0.010182846, 0.0033404047, 0.011233458, -0.0076640737, -0.020109775, 0.016055495, 0.0030760684, 0.025106912, -0.032137927, 0.029363235, -0.001692932, -0.003421221, 0.030925682, 6.894636E-4, -0.010506112, -0.008532848, 0.014183251, 0.026090177, -0.007105095, 0.011334478, -0.010937132, 0.003872445, -7.955349E-4, 0.0016036973, -0.020527326, -0.015260801, -0.005913055, 0.010391622, -0.002097855, 0.00522275, -0.007576523, 0.0047950973, -0.01001448, 0.006879483, -8.346803E-4, -0.021712631, -0.040084857, 0.020136714, 0.024217935, 0.011805906, 0.015516719, -3.6998687E-4, 0.03682527, -0.011496111, 0.014506516, -0.009825909, 0.018022023, -0.0036299962, 0.018641613, -0.0047917296, 0.0020321917, -0.010425296, -0.014560393, -0.021362428, -0.010889989, 0.0051924437, 0.011644274, 0.093692966, 0.0223861, 0.004717648, -0.009947132, -0.011812641, 0.006017443, 0.017819982, 0.007354278, -0.029713439, -0.037579555, 0.01872243, -0.009233256, -0.0068256054, 0.0048994846, -0.029767316, 0.025713036, 0.0034229048, 2.6728289E-5, -0.011954069, -0.001328417, 0.027612217, -0.024460383, 0.0046806075, -0.013038354, 0.0011937233, -0.014654679, 0.026049769, 0.02409671, 0.0017341819, -0.05996565, 0.008990807, 0.014142843, -0.013105701, -0.019826919, -0.00926693, -0.013435701, -0.003801731, 0.012977742, 0.002143314, 0.017927736, 0.0057379534, 0.010889989, -0.024689363, -0.04086608, -0.0022712732, -0.0024345894, -0.02237263, -0.028986093, -0.038791798 ], - "id" : "4049ede1-899d-4872-98be-1458556f2cc7", - "metadata" : { - "name" : "Velocity V9" - }, - "text" : "price: 2199.99\nname: Velocity V9\nshortDescription: Velocity V9 is a high-performance hybrid bike that combines speed and comfort for riders who demand the best of both worlds. The lightweight aluminum frame, along with the carbon fork and seat post, provide optimal stiffness and absorption to tackle any terrain. A 2x Shimano Deore drivetrain, hydraulic disc brakes, and 700c wheels with high-quality tires make it a versatile ride for commuters, fitness riders, and weekend adventurers alike.\ndescription: ## Overview\nIt's right for you if...\nYou want a fast, versatile bike that can handle anything from commuting to weekend adventures. You value comfort as much as speed and performance. You want a reliable and durable bike that will last for years to come.\n\nThe tech you get\nA lightweight aluminum frame with a carbon fork and seat post, a 2x Shimano Deore drivetrain with a wide range of gearing, hydraulic disc brakes, and 700c wheels with high-quality tires. The Velocity V9 is designed for riders who demand both performance and comfort in one package.\n\nThe final word\nThe Velocity V9 is the perfect bike for riders who want speed and performance without sacrificing comfort. The lightweight aluminum frame and carbon components provide optimal stiffness and absorption, while the 2x Shimano Deore drivetrain and hydraulic disc brakes ensure precise shifting and stopping power. Whether you're commuting, hitting the trails, or training for your next race, the Velocity V9 has everything you need to achieve your goals.\n\n## Features\n\n2x drivetrain\nA 2x drivetrain means more versatility and a wider range of gearing options. Whether you're climbing hills or sprinting on the flats, the Velocity V9 has the perfect gear for any situation.\n\nCarbon components\nThe Velocity V9 features a carbon fork and seat post to provide optimal stiffness and absorption. This means you can ride faster and more comfortably over any terrain.\n\nHydraulic disc brakes\nHydraulic disc brakes provide unparalleled stopping power and modulation in any weather condition. You'll feel confident and in control no matter where you ride.\n\n## Specifications\nFrameset\nFrame with Fork\tAluminum frame with carbon fork and seat post, internal cable routing, fender mounts, 135x5mm ThruSkew\nFork\tCarbon fork, hidden fender mounts, flat mount disc, 5x100mm thru-skew\n\nWheels\nWheel front\tDouble wall aluminum rims, 700c, quick release hub\nWheel rear\tDouble wall aluminum rims, 700c, quick release hub\nTire\tKenda Kwick Tendril, puncture resistant, reflective sidewall, 700x32c\nMax tire size\t700x35c without fenders, 700x32c with fenders\n\nDrivetrain\nShifter\tShimano Deore, 10 speed\nFront derailleur\tShimano Deore\nRear derailleur\tShimano Deore\nCrank\tShimano Deore, 46-30T, 170mm (S/M), 175mm (L/XL)\nBottom bracket\tShimano BB52, 68mm, threaded\nCassette\tShimano Deore, 11-36T, 10 speed\nChain\tShimano HG54, 10 speed\nPedal\tWellgo alloy platform\n\nComponents\nSaddle\tVelo VL-2158, steel rails\nSeatpost\tCarbon seat post, 27.2mm\nHandlebar\tAluminum, 31.8mm clamp, 15mm rise, 680mm width\nGrips\tVelo ergonomic grips\nStem\tAluminum, 31.8mm clamp, 7 degree, 90mm length\nBrake\tShimano hydraulic disc, MT200 lever, MT200 caliper" - }, - "391ef7bf-c860-4a66-b8c1-5646ddd35cfc" : { - "embedding" : [ 0.041791998, 0.0013923034, -0.041566554, -0.013512652, 0.018373825, 0.014351028, -0.003998139, -0.014252396, -0.012209294, -0.03232328, 0.007996278, 0.0016582588, -0.013850821, -0.011032749, 0.0034996923, 0.010440954, 0.017133875, -9.828024E-4, 0.018049747, -0.008665569, 0.0048541278, -0.005607962, -0.007140288, -0.01700706, -0.0056361426, -0.014336938, 0.04669544, 2.3513283E-4, -0.0055163745, -0.011948623, 0.01737341, 1.9737508E-4, -0.019007891, -0.017091602, -0.0011289899, 0.0012778193, 0.024700396, 9.493378E-4, 0.028321616, 0.012674276, 0.0013993486, 0.003969958, -0.017063422, 0.0028321617, 0.0034345244, 0.032520544, 0.0143933, 0.026137613, 0.004861173, 0.0021910504, 6.525596E-4, 0.035704963, -0.01575302, 0.014041041, -0.006301912, -0.029561568, 0.0120190745, 0.018697904, 0.053881526, 0.0072494885, -0.0034151503, 0.023474535, -0.03705764, -0.0046603857, -0.014724423, -0.027955268, -0.0011985609, 0.0036987187, -0.013364703, 0.03547952, 0.0292234, 0.024742667, 0.016443446, 0.014541248, 0.011032749, -0.020600101, 1.0210005E-4, -0.0019268563, 0.01816247, -0.003977003, 0.02013512, -9.7135396E-4, 0.013886047, 0.004604024, 0.02130462, 0.010969343, -0.0037762157, 0.02178369, -0.0058862465, 0.014837146, -0.0026789291, 0.015527573, -0.0023354767, 0.004751973, -0.00375508, -0.021966867, -0.016682982, 0.0018881079, -0.01850064, -0.01323789, 0.0074326633, 0.004554708, -0.012836315, -0.016950699, -0.01655617, -0.00968712, -0.03677583, 0.0026771678, -0.002294967, -0.008116046, -0.020543741, 0.03001246, -0.007467889, 0.011814764, 0.011152517, -0.03911483, 0.0496826, 0.025898077, 0.02365771, -0.03201329, 0.032520544, 0.010673446, 0.029505208, -0.017852481, 0.017542494, 0.021417342, -0.010307096, -0.008581027, 0.008249904, 0.007228353, 0.002344283, 0.0027775615, -0.015034411, 0.020881908, -0.013773324, 0.009215093, -0.013477426, 0.02098054, -0.026250334, -0.017035242, 0.008249904, 0.012822225, -0.028349798, -0.002888523, -0.018444277, -0.017725669, -0.0033605502, 0.017218417, -0.020008307, -0.025137197, 0.017133875, -0.012801089, 0.02523583, 0.016739344, 0.013118122, -6.511286E-5, 0.0095743975, 0.02767346, -0.020783277, -0.008855789, 0.005276839, 0.002062476, 0.014146718, 0.006699965, 0.029505208, 6.3979026E-4, 0.0044842563, -0.016218001, -0.0058510206, -9.775185E-4, -0.014935778, -0.008792383, -0.015598025, 0.01699297, 0.011793628, 0.021755511, 0.00300653, -0.015837561, -0.0010629413, -0.0048893536, 0.01618982, -0.014322848, 0.01613346, 0.011180698, 0.001497981, -0.004966851, 0.017965205, -0.008327401, 0.010638219, 0.0060306727, 0.03593041, 0.013174484, -0.009715301, 0.011744312, -0.57037765, -0.030181544, -0.015259856, -0.016682982, 0.008200588, 0.034239568, 0.018669723, 0.0074397083, -0.016020736, -0.0011307511, -0.0077074254, 0.0037621253, 0.009257364, -0.011913396, -0.044750974, -0.023869064, 0.010391639, -0.011152517, 0.0063406606, -0.03198511, -0.04027024, -0.0077144704, 0.0024887093, 0.025912166, 0.011067975, 0.00433983, -0.013343568, -0.027912997, -0.0021329278, 0.03001246, -0.030688798, 0.037339445, -0.014174899, -0.004227107, 0.036099494, -0.052726116, -0.003695196, 0.037367627, 0.03195693, 0.01442148, -0.015908012, -0.01458352, 0.008919196, -0.034521375, -0.016753435, 0.0058017042, 0.049654417, -0.010701626, 0.01582347, -0.04136929, 0.0071508563, 0.001091122, 0.02412269, 0.009024873, 0.003980526, -0.036043134, 0.048639912, 0.005213432, 0.02167097, -0.008010368, -0.0032830532, 0.03122423, -0.0050055995, -0.018247012, -0.0057911365, 0.01781021, -0.045906384, -0.03829759, 0.024644034, -0.012709502, 0.020191481, 0.0068655265, 0.005393084, 0.026363058, 0.015879832, 0.031026965, 0.044807333, 0.010497316, -0.008898061, 0.018838808, 0.0067105326, -0.007446754, -0.011518867, -0.024573583, 0.04303195, 0.0049527604, -0.0016300782, -0.015992556, 0.010314141, -0.0010294766, 0.018106109, 0.016542079, 0.0027634713, -0.005456491, 0.0040192744, 0.039453, 0.01068049, 0.011370918, 0.008116046, -0.019458782, -0.007545386, 0.0069641587, 0.008623298, 0.014766694, 0.053064283, -0.013251981, -0.002779323, -0.022347307, 0.018556999, -0.010102786, 0.024263594, -0.014724423, -0.035451338, 0.0029572137, -0.011638635, -0.022431849, 0.018275192, 0.021952776, 0.019980125, -0.016697073, 0.025193557, 5.508449E-4, 0.038438495, 2.791652E-4, -0.029251581, 0.005953176, 0.023389993, 0.0014821294, 0.009320771, -0.029251581, 0.025517637, -0.004709702, 0.04570912, -0.006020105, 0.02843434, 0.014174899, 0.009031919, 0.0061187376, 0.014780784, -0.01582347, -0.030181544, -0.0054318327, 0.0016688267, -0.041143842, -0.0146398805, -0.02647578, -0.013477426, -0.008228769, 0.0021135535, -0.0039135967, 0.019543326, -0.029702472, -0.016682982, 0.0013421065, -0.010983434, -0.026137613, -0.046723623, -0.036465842, -0.010032334, -0.023094095, 0.007989232, 0.016471626, -0.010912982, 0.0034820794, 0.006259641, 0.0077215154, 0.039424818, 0.005016167, 0.0028127874, -0.040946577, -0.008799428, 4.4913013E-5, 0.0016573783, 0.02010694, -0.0049809413, -0.004692089, -0.021572337, 0.0058545433, -0.003927687, -0.011194789, -0.0033728792, 0.024672214, -0.052754298, 0.022009138, 0.029054316, 0.0115893185, 0.033675954, -0.005336723, -0.02055783, 0.018134288, -0.020276023, 4.4076398E-4, -0.008426033, 0.017162055, 0.006654171, -1.9935654E-4, 0.025094926, -0.0039558676, 0.0022139472, 0.011709087, 0.0315624, -0.018881079, 0.017542494, -0.034070484, 0.017457953, -0.01976877, 0.02330545, -3.0822656E-4, 0.021093264, 0.0032989047, 0.0017621752, -0.026334876, -0.027701642, 0.023404082, -0.016358905, 0.018176561, 0.007376302, 0.054980572, 0.003910074, -0.008158317, -0.016837977, 0.0121811135, 0.030463351, -0.017655218, -0.01202612, 0.010032334, 0.021966867, 0.04545549, -0.0014336938, -0.027560739, -0.015414851, 0.029251581, 0.015541663, -0.0287866, 0.0029131812, 0.017119784, 0.013294252, -0.019050162, 0.03469046, -0.0034820794, 0.022065498, 0.030942423, 0.016739344, -0.0027951745, 0.017838392, 0.02209368, 0.02647578, 0.027067576, 0.026250334, 0.024545401, 0.018134288, 0.013583104, -0.01184999, -0.005185251, 0.010384593, 0.008271039, 0.01580938, 0.02248821, -0.013963544, 0.012223384, 0.0067492807, 0.02567263, 0.015724838, 0.006175099, 0.026630774, -0.017570674, -0.014907598, -3.6767026E-4, -0.008792383, -0.011096156, 0.014329893, -7.685024E-6, -0.01814838, -0.0089685125, 0.010116876, 0.0069359783, 0.020825548, -0.013104032, 0.025813533, 0.036494024, -0.0054142196, -0.034521375, 0.010342322, 0.025799444, -0.019515144, -0.00790469, 0.0100041535, 0.021050993, -0.00542831, 0.017598856, 0.0034415696, 0.032915074, 0.0029818718, 0.007946962, -0.012568599, -9.7223464E-4, 0.036494024, -0.03632494, -0.0043503977, -0.015851652, -0.0055692135, 0.0063829315, -0.009285545, -0.025630359, 0.042045623, -0.0089826025, -0.008383762, -0.03556406, 0.023263179, 0.00542831, -4.354801E-4, -0.02727893, -0.019627867, -0.013068806, 0.013111077, 0.01046209, 0.0017014106, -0.031111509, 0.015527573, -0.015612115, -0.014837146, -0.015964374, -0.032886893, -0.011772493, 0.035197712, 0.031675123, -0.0013667647, 0.008045594, -0.029927919, -0.007784922, -0.018979711, -0.022178221, 0.006643603, 0.020811457, 0.019966036, 0.016950699, -0.015316218, 0.0063441833, 0.0076862895, -0.020698734, 0.016513899, -0.026123522, 0.02727893, 0.007932871, 0.001785072, -0.008989648, 0.0068373457, 0.01700706, 0.023981787, 0.024587672, -9.978835E-5, -0.010412774, 0.010335277, -0.019923765, -0.009243274, -0.010335277, 0.010342322, 0.013850821, -0.03350687, 0.007418573, -0.008588073, -0.013463336, 0.018176561, 0.011342737, 0.010194373, 0.0058615883, 0.013139258, 0.0058439756, -0.0067351907, -2.998604E-4, 0.009947792, 0.0042024488, 0.0042729005, -0.04260924, 0.021149626, 0.019571505, -0.0133365225, -0.0062737316, -4.0333645E-4, 0.009757572, -0.01049027, -0.023615438, -0.014541248, -0.03714218, 0.008411943, -0.014372164, 0.018768355, -0.005956698, -0.015443031, 1.0463191E-4, -0.0013139257, 0.012202249, -0.024263594, -0.015950283, -0.019430602, -0.008038549, -0.0173875, 0.033422325, -0.0074397083, -0.015668476, 0.022262763, -0.039368458, 0.014146718, 0.0173875, -0.033760495, 0.0066753067, -0.011723177, -0.028392069, 0.0031615237, 0.016091188, 0.038494855, -0.009398268, 0.010363458, -0.0071896045, 0.010687536, -0.018740175, 0.027166208, -0.035056807, 0.0018969143, -0.024207233, 0.0045652757, 0.02641942, 0.021501884, -0.027912997, 0.01125115, -0.008630344, 0.015738929, 0.016950699, 0.019627867, -0.0037092865, 0.007355166, -0.0052592256, -0.006791552, -0.033760495, 0.0015569844, -0.015457122, -0.0029906782, 0.005607962, -0.04145383, 0.010264825, 0.012004984, 0.02369998, 0.018345645, -0.004508914, 0.022037318, -0.034831364, 0.036465842, 0.015583934, -0.020726915, 0.019867403, -0.00926441, -0.010624129, -0.0053191097, 0.028617514, 0.034549557, 0.033788677, -0.0031368658, -0.012385423, -0.01699297, -0.04373647, -0.038438495, -0.006759849, 0.018416096, -0.017965205, -0.022699565, 0.013096986, 0.011173653, 0.040805675, -0.025038565, -0.021149626, -0.01731705, 0.0029131812, -0.014442616, 0.040382963, -0.01459761, -0.001123706, -0.021346891, -0.016457537, -0.0181202, -0.021995047, -0.0084048975, -0.03150604, 0.006294867, 0.0071790367, 0.0155134825, 0.017669307, -0.0037797382, 0.010222554, 0.016542079, -0.015133043, -0.0028356842, -0.014400344, -0.04145383, 0.02013512, 0.03511317, 0.01085662, -0.01242065, -0.0034398083, -0.016654802, 0.023840884, -0.014498977, -0.01857109, -0.020853728, -0.049175344, -0.01202612, -0.031816024, 0.0034098662, -0.016288452, -0.034493193, -0.008581027, 0.029899737, -0.0045582303, 0.038551215, 0.006928933, 0.0033446983, -0.023826793, 0.0287866, 0.005988402, 0.02052965, 0.0024499607, -0.0117513575, -0.026644865, -0.0055339877, 0.012124752, -0.016443446, 3.2495885E-4, 0.0037621253, -0.016837977, -0.012096572, -0.005340245, -0.0034767955, -0.0076369736, 0.025404913, -0.0076721995, -0.012152933, -0.005777046, -0.006175099, -0.032661445, -0.031336952, -0.0034045824, -0.030547895, 0.03204147, -0.009489856, -0.025602179, 0.015358489, 0.009757572, 0.011110246, 0.005220477, -0.008137181, 0.032605086, -0.014400344, -0.016612532, -0.033788677, 0.008151271, 0.006206802, 0.03683219, 0.036184035, -0.026785769, -0.0024799027, 0.002402406, -0.014724423, -0.017288867, -0.026278516, -0.0077708317, 0.030209726, 0.037311263, -0.012505191, -0.0046005016, -0.014992139, 0.01265314, -0.012540418, 0.0070698364, 0.015104863, -0.008341491, -0.01742977, 0.016387084, -0.023995878, -2.9677813E-4, 0.007186082, 0.0031562399, -0.007221308, -0.016767524, -4.5353337E-4, -0.012758818, 0.0075312955, 0.057516836, -0.0046709534, -0.0027828454, 0.038043965, -0.0044983462, -0.006756326, -0.0023354767, -0.022023227, 0.026165793, -0.029364303, 0.012956083, -0.043313757, -4.429656E-4, -0.010398683, 0.004047455, -0.01735932, -0.0020254888, 0.0059390855, -0.021515975, -0.0028955683, -0.0044631204, -0.015908012, -0.008595117, -0.014541248, -0.027462106, -0.028392069, -0.009898475, 0.0048646955, -0.04066477, 9.493378E-4, -0.035761327, 0.021840053, 0.028251166, 0.012709502, -0.018852897, -0.004058023, 0.013315387, -0.026292605, -0.006485087, 0.018289283, 0.008855789, 8.0491166E-4, 0.02916704, 0.007453799, -0.0236718, 6.604855E-4, -0.0068796165, -0.020459197, -0.020388747, 0.013724008, -0.01816247, 0.015358489, -0.008714885, 0.017147964, 0.011089111, -0.005280361, -0.008496485, -0.019078342, -1.2670313E-4, 0.0050126445, 2.9017328E-4, -7.9038093E-4, -0.017655218, 0.02564445, -0.008736021, -0.007777877, 0.010335277, -0.019966036, -0.011652725, 0.011744312, 0.0097082555, -0.02210777, -0.004160178, -0.0379876, 0.014048086, -0.013406974, 0.0068056425, -0.033788677, -7.4018404E-4, 0.003737467, -0.011342737, -0.014498977, 0.023432264, -0.022037318, -0.031787846, 0.025602179, 0.0029607362, -0.023164546, -0.023742251, -0.005953176, 0.053909704, 0.024319956, -0.023108184, 0.0038959836, 0.008278085, -0.013230845, -0.022234583, -0.012300882, 0.023418173, -0.0026472257, 0.015133043, 0.0071297204, 0.007126198, 0.021262348, 0.0143439835, -0.00231258, -0.0027828454, -0.0049210573, 0.02091009, -0.006738713, 0.003443331, -0.037113998, -0.020811457, 0.023967696, 0.0087007955, -0.0069077974, 0.0038854158, -0.019458782, 0.0019162885, -0.011215924, -0.019923765, 0.028941592, 0.032210555, -0.003431002, -0.041312926, -0.008750112, 0.017598856, 0.017302958, -0.0065661063, -0.0022914442, -0.023742251, -0.0056608007, 0.008799428, -0.033394147, 0.0017436816, -0.002277354, -0.0010805542, 0.03240782, 0.005336723, -0.01773976, 0.043539204, 0.012617915, -0.033084158, -0.0065555386, 0.029279761, -0.0044208495, -0.009919611, 0.005488194, -0.026701227, -0.0037691705, -8.577505E-4, 0.0077990126, 0.011103201, -0.021544155, 0.0044525526, -0.0046779984, -0.018458368, 0.032689627, 0.03790306, -0.025461275, -0.017627036, -0.022770017, -0.011913396, -0.006851436, 7.10242E-4, -0.0043363073, -0.04686453, 7.8421645E-4, -0.0017542494, -0.047174513, -0.019966036, 0.028392069, -0.006379409, 0.001440739, 0.014653971, 0.19749044, 0.012314972, 0.0022984894, 0.034775, 0.017147964, -0.011934532, 0.025869895, -9.538511E-5, 0.0037198542, -0.009024873, 0.011124337, 0.028166624, -0.024024058, 0.010025289, 0.041566554, -0.008172407, -0.033337783, -0.02958975, -0.0026348967, -0.0014336938, 0.007453799, 0.023925425, -0.026983034, -0.037423987, 0.021417342, 0.016725253, -0.026405329, -0.023643618, 0.004371533, 3.0932736E-4, -0.011194789, -0.0054670586, 0.023361811, 0.021769602, -0.019176975, -0.011082065, 0.02013512, 0.009151687, -0.005935563, -0.0013843776, 0.0032953823, 0.008454214, 0.017486133, -0.010130967, -0.0060095373, -0.00700643, -0.034098662, -0.013385839, -0.02285456, -0.018303374, 4.3922284E-4, 0.002821594, 0.035592243, 0.03122423, -0.021882324, -0.030209726, 0.0107298065, -0.015992556, 0.005667846, 0.0041355197, -0.040129337, 0.029984279, 0.0010039379, 0.0060729436, -1.4915963E-4, 0.030125182, -0.026715316, -0.013583104, 0.027870726, -0.004255288, -0.015767109, -0.00542831, 0.010927072, 0.010504361, -0.023220908, -0.02171324, 0.0064991773, -0.014893508, 0.017570674, 0.0060764663, 0.011814764, 0.002899091, 0.007982187, 3.828614E-4, 0.009144641, -0.018077929, 0.021840053, 2.1840053E-4, 0.014005815, -0.011096156, -0.0018123721, -0.010102786, -0.020586012, 0.0029801105, 0.01068049, -0.010891845, -0.037733976, 0.03593041, -0.009884385, -0.012075435, -0.034577735, 0.062335737, -0.018106109, -0.00967303, -0.035338614, -0.002641942, -0.0054459227, 0.021727331, 0.017612945, -0.044891875, -0.010342322, -0.040382963, 0.01819065, -0.0063089575, 0.022629114, -2.3865543E-4, -0.011730222, -0.010159147, -0.008327401, -0.04232743, 0.017091602, -0.0047202697, 0.017218417, -0.0139142275, 0.009017828, -0.009729391, -0.0069148424, 0.02529219, -0.01933197, -0.033084158, 0.018430186, 0.03911483, 0.004167223, 0.023784522, -0.018021567, -0.014174899, 0.0033446983, -0.004286991, 0.014456706, -0.012963128, 0.009341907, 0.006182144, 0.004526527, -0.0046357275, 0.014104447, -0.021811873, -0.0012892677, -0.004441985, -0.012272701, -0.0019039594, -0.01383673, -0.012786998, -0.0042834687, -0.018796535, -0.0019990695, 0.012427695, -0.017542494, -0.035056807, -0.029392485, 0.006354751, -0.026222154, -0.005488194, 0.012920857, -0.014238305, -0.02685622, -0.007024043, -0.17889117, 0.019458782, 0.05343063, -0.0048823087, 0.019444693, 0.012632005, 0.014837146, 0.014174899, -0.030125182, 0.004656863, 0.023234999, -0.008348537, -0.02174142, -0.03398594, 0.0034398083, -0.012991309, -0.021614607, 7.5911795E-4, 0.028194804, 0.012871541, -0.010624129, -0.026278516, 0.013850821, 0.011962713, -0.010109831, -0.0013148064, 0.009665985, 0.014111493, 0.021191897, -0.016570259, -0.018275192, -0.033901397, 0.037423987, -0.005069006, 0.0013887808, -0.02802572, -0.0049844636, 0.015922103, -0.021896414, 0.041284744, 0.014823056, -0.005583304, 0.016739344, -0.0040545003, 0.008862834, 0.029279761, -0.0011677383, 0.0046005016, 0.004501869, -0.0061011245, 0.020769186, -0.025940347, 0.010278915, -0.016401175, 0.007925826, -0.004459598, -0.02291092, 0.0059743114, 0.018007476, -0.010102786, -0.034493193, -0.014696242, 0.02530628, -0.013096986, -0.003163285, -0.012209294, -0.002439393, 0.03387322, -0.0070698364, -0.007143811, -4.8347536E-4, 0.0098562045, -0.014682151, 0.0074819797, 0.020628283, 0.026348967, -0.03553588, 0.0054670586, 0.015908012, 0.0020342954, -0.0047308374, 0.055036932, 0.009165777, 0.003723377, -0.018275192, -0.019472873, 0.0189938, -0.0054424005, 0.018782446, -0.0071156304, -0.00869375, -0.015443031, -0.012413604, -0.0076158377, 0.017049331, 0.008179452, -6.8030006E-4, 7.595583E-4, 0.011392053, -0.019416511, 0.0061187376, -0.024319956, -0.023389993, 0.02212186, 0.047879033, -0.0065625836, 0.013949453, 0.0051077544, 0.009743482, 0.010088695, -0.012103616, 0.01616164, 0.015626205, 0.041228384, -0.010511406, 0.023615438, -0.026644865, -0.029815195, 0.012850406, -0.0051993416, 0.016218001, -0.0055022845, -0.011927487, 0.013280162, -0.022615023, -0.019571505, -0.067577355, 0.006492132, 0.030942423, 0.026546232, -0.018838808, 0.0039910935, -0.005745343, 0.03677583, -0.004160178, 0.024728576, -0.00986325, -0.015767109, -0.018979711, 0.025404913, 0.0241086, 0.012477011, 2.2764732E-4, -0.041256566, -0.010018243, 0.017049331, -0.0134703815, -0.029533388, -0.014301713, -0.010553678, -0.017105693, -0.0026789291, -0.016330723, 0.008813518, 0.013160394, 0.0014601132, 0.008912151, -0.02599671, -0.010511406, 0.010539587, -0.010694581, -0.014949868, -0.026701227, -0.014498977, 0.016725253, -0.041200202, 0.013498561, 0.011955668, -0.0034116276, -0.020233752, -0.031167869, -0.022009138, -0.0029519298, 0.027448015, -0.005889769, -0.012864496, 0.01359015, -0.024024058, -0.008334446, -0.0028304004, 0.023840884, -0.003737467, -0.0011104962, -0.0035736668, -0.024954023, -0.00612226, 0.0072072176, 0.028673876, -0.0012452353, 0.03150604, 0.01540076, -0.0019779338, 0.010039379, 0.015964374, 0.026137613, 0.0090601, -0.008221723, 0.021515975, -0.008193542, 0.03663493, -0.01223043, -0.0021663923, -0.025602179, -0.029871557, 0.024221323, -0.009419404, -0.020769186, -0.013991725, 0.023361811, -0.03790306, -0.002374225, 0.051176175, 0.008045594, -0.004656863, 0.008496485, -0.061659403, 0.021656878, 0.0027088712, 0.047963575, 0.0019691275, -0.007883554, -2.289683E-4, 4.896399E-4, 0.0032337368, -0.020261934, -0.02055783, -0.053937886, -0.0038995063, -0.08183679, 0.04779449, 0.019895583, -0.032605086, -0.009151687, 0.0072424435, 0.02529219, -0.013442201, 0.004685044, 0.028124353, -0.028490702, 0.0120543, -0.0011148995, 0.01025778, -0.014724423, 0.02216413, 0.009510991, -0.010821394, 0.019360151, 0.01579529, 0.007467889, 0.009525081, -0.039706625, 0.0013544356, -0.0037691705, 0.005396607, -0.011617499, 0.020121029, 0.012878587, 0.013463336, 0.03976299, -0.019416511, -0.02296728, 0.03793124, -0.007918781, -0.01697888, 0.0057242075, 0.006428725, -0.009454629, -0.041228384, -0.005245135, -0.008271039, -0.0047695856, -0.017627036, 0.00355077, 0.0038818934, 0.0042975587, -0.0039135967, 0.009757572, 0.035704963, 0.009849159, 0.0066259904, -0.005928518, -0.019656047, 0.0013887808, -0.013709918, -0.0063406606, -0.01930379, 0.0025080836, 0.004262333, 0.0457373, -0.0074044825, -0.00632657, -0.017612945, -0.02765937, -0.023742251, -0.02840616, 0.0053719487, 0.002624329, -0.012152933, -0.034915905, -0.016513899, 0.013273116, 0.014400344, 0.0027458584, 0.00591795, 0.011370918, 0.01580938, -0.029364303, 0.0049175345, -0.0019867404, -0.004519482, -0.011568183, -0.008482395, -0.0016221523, -0.010194373, -0.018852897, 0.023784522, -0.010983434, 0.005026735, -0.026743498, 0.028392069, 0.0027634713, -0.01142728, 0.02605307, 0.0027705163, -0.0027176775, -0.0062208925, 0.028490702, 0.020318294, -0.015471212, -0.0077144704, -0.023389993, -0.011293421, 6.0984824E-4, 0.019092433, -0.020656463, -0.027490286, 4.273341E-4, -0.010081651, 0.0041179066, -0.02052965, -0.003617699, 0.03240782, 0.0011043317, 1.89119E-4, -0.016091188, -0.017119784, -0.031083327, 0.01776794, -0.0035349182, 0.0031826594, -0.0010682251, 0.010525497, 0.021403251, -0.009038964, 0.017049331, -0.010293006, 0.030237906, -0.010765033, 0.022629114, -0.008947376, 0.00751016, -0.011342737, -0.034577735, 0.011004569, 0.011758403, 0.011694997, 0.0073199403, 0.11159562, 0.0051042316, -0.013259026, -0.006946546, -0.019853313, 0.0057559106, 0.02014921, -0.023812704, 8.492742E-5, -0.043708287, 0.0069641587, -0.0037691705, -0.023854975, 0.022953192, -0.027518466, 0.018627452, 0.019599685, 0.018979711, -0.027419835, -0.01974059, 0.040946577, -0.005928518, 0.0064956546, -0.0066576935, -0.008038549, -0.007658109, 0.025912166, 0.0034838407, -0.0091305515, -0.051598888, 0.0029554523, 0.02291092, -0.016218001, -0.025419004, -1.7271696E-4, 0.0012505192, -0.017401591, 0.010687536, 0.022389578, -0.016119368, 0.016006645, 0.0041425647, -0.026673045, -0.01696479, 0.010123922, -0.031365134, -0.008433078, -0.046385456, -0.05839044 ], - "id" : "391ef7bf-c860-4a66-b8c1-5646ddd35cfc", - "metadata" : { - "name" : "Stealth R1X Pro" - }, - "text" : "- Size 47: Shimano Ultegra R8000 with 52/36 chainrings and a 165mm length.\n - Size 50, 52: Shimano Ultegra R8000 with 52/36 chainrings and a 170mm length.\n - Size 54, 56, 58: Shimano Ultegra R8000 with 52/36 chainrings and a 172.5mm length.\n - Size 60, 62: Shimano Ultegra R8000 with 52/36 chainrings and a 175mm length.\n- Bottom bracket: Praxis T47 threaded bottom bracket with internal bearings.\n- Cassette: Shimano Ultegra R8000, 11-30, 11-speed.\n- Chain: Shimano Ultegra HG701, 11-speed.\n- Maximum chainring size: 1x - 50T, 2x - 53/39.\n\nComponents\n- Saddle: Bontrager Aeolus Comp with steel rails and a width of 145mm.\n- Seatpost:\n - Size 47, 50, 52, 54: Bontrager carbon seatmast cap with a 20mm offset and a short length.\n - Size 56, 58, 60, 62: Bontrager carbon seatmast cap with a 20mm offset and a tall length.\n- Handlebar:\n - Size 47, 50: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 38cm.\n - Size 52: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 40cm.\n - Size 54, 56, 58: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 42cm.\n - Size 60, 62: Bontrager Elite VR-C alloy handlebar with a 31.8mm clamp, 100mm reach, 124mm drop, and a width of 44cm.\n- Handlebar tape: Bontrager Supertack Perf tape.\n- Stem:\n - Size 47: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 70mm.\n - Size 50: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 80mm.\n - Size 52, 54: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 90mm.\n - Size 56: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 100mm.\n - Size 58, 60, 62: Bontrager Pro alloy stem with a 31.8mm clamp, Blendr compatibility, 7-degree rise, and a length of 110mm.\n- Brake: Shimano Ultegra hydraulic disc brakes with flat mount calipers.\n- Brake rotor: Shimano RT800 with centerlock mounting, 160mm diameter.\n\nWeight\n- Weight: 8.03 kg (17.71 lbs) for the 56cm frame.\n- Weight limit: The bike has a maximum total weight limit (combined weight of the bicycle, rider, and cargo) of 275 pounds (125 kg).\n\n## Sizing" - }, - "0e3db961-ab9e-41d3-869d-b5a89ff70935" : { - "embedding" : [ 0.020409977, -0.0023675573, -0.019076524, -0.017321266, -0.019634398, 0.010300235, -0.01572929, -0.026981989, -0.0044051534, -0.013409355, 0.007857841, 0.013885587, -0.015429943, 4.707051E-4, -0.012307216, 0.02117195, 0.01204869, 0.014218951, -0.010136955, -2.9445643E-4, -0.012171149, 0.0021141334, -5.1322585E-4, 0.0036397793, -0.0012271499, 0.003146538, 0.021226376, 4.6942948E-4, 0.0016540586, -0.018967671, 0.016491262, 0.0054018404, -0.00816399, 0.003207768, -0.011939837, -0.007851038, -0.0019202386, -0.01470879, 0.020409977, -0.0054392586, 0.025485259, -0.002279114, -0.012797056, -0.0021787651, -0.010456711, 0.0026566987, 0.011000978, -0.0131644355, -0.005388234, 0.0036091642, 0.0016251444, 0.025022632, -0.030751033, -0.004752123, -0.0016821222, -0.0010409089, -0.0030410865, 0.0132732885, 0.0339622, 0.0029288316, -0.009531459, 0.014531904, -0.017334873, 0.017334873, -0.031485792, -0.029472006, 0.0062386496, 0.020192271, -0.0050616744, 0.006776112, -4.549724E-4, 0.03344515, 0.010184579, -0.0070210323, 0.012055493, -0.0065482007, -0.0017433522, 0.0012679698, -0.0055243005, 0.01462715, 0.024369512, -0.037363864, -0.006435946, -0.00855178, 0.02035555, -8.189503E-4, 0.0059563117, -0.009572279, -0.013280092, -0.013749521, -0.0076401345, 0.013314108, 6.665133E-5, 0.0060379514, -0.01198746, 0.01918538, -0.0036125658, -0.009082439, -0.0059188935, -0.026601003, 0.009558672, 0.012103116, -0.009075636, -0.021158343, -0.024315085, -0.012858286, -0.01755258, -0.0083408775, 0.0067897188, -0.011871804, -0.014314197, 0.013899194, 6.850099E-4, -0.007973498, 0.009177687, -0.0074836584, 0.030696604, 0.0045650317, 0.01645044, -0.0023862664, 0.022097202, 0.027948061, 0.0024747096, -0.020899815, -0.01462715, 0.018926851, 0.0013104907, -0.025458045, 0.010647205, -0.01640962, 0.020872602, -0.007993908, 0.006357708, 0.015783716, -0.029363154, 0.024573613, 4.7878403E-4, 0.026301658, -0.028546754, -0.0021974742, 0.00617742, 0.018926851, -0.015946995, 6.6842674E-4, -0.016545689, 0.012756236, -0.02262786, 0.01828734, 0.03412548, -0.015824536, 0.025471652, -2.4130546E-4, 0.033472363, 0.027118055, -0.008891947, -0.009585886, -0.013933211, 0.014042065, -0.028573968, -0.010966961, -0.02592067, 0.002634588, 0.007286362, -0.022219662, 0.036683533, 0.018641112, 0.0026192805, -0.016219128, -0.0014193438, -0.019688824, -0.019457512, 0.029363154, -0.014491084, -2.6362887E-4, 0.012626972, 0.029880207, 0.032274976, -8.827315E-4, -0.032519896, 0.03311859, 0.023539506, 0.0042724884, 0.013987637, 0.005126306, -0.025702965, 0.010062119, -0.00816399, -0.02080457, 0.006891769, 0.0069938186, 0.022287695, 0.01123229, -0.007170705, 0.02364836, -0.61872166, -0.0114976205, -0.022695893, 0.0016583106, 7.517675E-4, 0.012824269, -0.001937247, 0.01970243, -0.013803948, -0.003420372, -0.025526078, 0.01499453, -0.0031312306, -0.010803681, -0.021661788, -0.0171852, 0.008061941, 0.004167037, 0.0017705655, -0.0013700197, -0.04005798, -0.01129352, -0.049990837, 0.00562635, -0.002561452, -0.004932411, 0.011286717, 0.005531104, -0.019593578, 8.34683E-4, -0.019498331, 0.042534392, 0.022382941, -0.009776379, 0.036248118, -0.030370045, -0.0038098623, 0.02470968, -0.018137665, 0.024219839, -0.022192448, -0.004769131, -0.013844768, -0.0048881895, -0.0045310147, 0.012722219, 0.050317395, -0.010198185, 0.008272844, -0.03714616, 0.021403262, 0.009490639, 0.007966694, -0.013640668, 0.0014465571, -0.0029016184, 0.021757035, 0.0033064163, 0.005122904, -0.0017824713, -0.0025410422, 4.4136576E-4, -0.02401574, -0.011484014, -0.029934634, 0.027920848, -0.027485436, -0.021308016, 0.017906353, -0.018654719, 0.011116634, 0.013695095, -0.011402374, 0.03445204, 0.022899995, 0.007422428, 0.029744139, -0.011198274, -0.009538262, 0.027621502, 0.006163813, 0.010722041, -0.012470496, -0.041745204, 0.05736564, 0.0013734214, -0.012123526, -0.021852283, 0.0018334963, 0.012695006, 0.028111342, 0.0055617187, 0.0011871803, -0.03181235, 0.010558762, 0.017987993, -0.0039017072, 0.021239983, 0.0013130419, -0.012688202, -0.020750143, 0.008463337, 0.0112118805, -0.0077625946, 0.03173071, 0.01836898, -5.736054E-4, 0.006629841, 0.012103116, -0.02998906, -0.009354573, -0.029689712, -0.012402463, 0.0071843117, -0.0111030275, -0.035458934, 0.0077421847, 9.83931E-4, -0.0036465826, 0.003782649, 0.0025597513, 0.001947452, 0.017239626, -0.0033166213, -0.013035172, -0.0016863743, 0.014042065, -0.0066332426, -0.014613544, 0.0049868375, 0.0030955132, 0.011062208, 0.03837076, -0.007932678, 0.03981306, 0.005238561, 1.02794E-4, -0.00857219, 0.015212236, -0.03611205, -0.04803148, 0.012865089, -0.0081844, -0.022042776, -0.015620436, -0.028220195, -0.010810484, 0.021226376, -0.009858019, -0.0066264393, -0.023144914, -0.010572368, -0.020858996, 0.024573613, -0.014736003, -0.032928094, -0.02860118, -0.019103738, -0.013314108, -0.00857219, 0.017171593, 0.026274445, -0.021566542, -0.011871804, 0.0046160566, 0.0016838231, 0.008320468, 0.039350435, 0.0060379514, -0.041255366, -0.004922206, -0.016083062, -0.020940637, -0.015756503, -0.035894345, -9.932856E-4, -0.012497709, 0.005820245, 0.0077217747, -0.022437368, -0.0010562163, 0.010232202, -0.03997634, 0.015960602, 0.02405656, 0.017538974, 0.03815305, 0.0038608874, -0.005306594, 0.025934277, -0.013477388, 0.008585797, -0.00881711, -0.015239449, 0.0031329314, -0.005500489, 0.019539151, -0.006959802, 0.014804036, 0.03583992, 0.007150295, 0.013001155, 0.0123752495, 0.016396014, 0.013137222, -0.011545244, 0.03453368, 0.001978067, 0.010524745, 0.030206766, 0.009735559, -0.023335407, 0.011776556, -0.016845034, -0.020654896, 0.0019916736, 0.010483925, 0.020709323, -0.02266868, -0.009728756, -0.012348036, 0.003257092, 0.016708968, 0.021838676, 0.0024440947, 0.021797854, 0.035812706, 0.04060225, -0.0022825159, -0.01726684, 0.010415891, 0.009123259, 0.010701631, -0.015838142, 0.01640962, -0.00857219, 0.029363154, -0.009443016, 0.044058338, 0.002481513, 0.03254711, 0.051215436, 0.03453368, -0.022682287, 0.022260481, 0.0031958623, 0.03491467, 0.032411043, 0.032329403, 0.011069011, -0.018192092, -0.0068169325, 0.019103738, 0.027499042, 0.0065618074, 0.0023522498, -0.012368446, 0.028356262, -7.738783E-4, 0.01572929, 0.02096785, 0.019008491, 0.013647472, 0.017906353, 0.038778957, -0.026029523, -0.014681577, -0.0053508156, -0.0019814686, -0.0300707, -0.0028744051, -0.0013232469, -0.010606385, -0.0036805992, 0.015185023, 0.004894993, -0.0010400584, -0.0037316242, 0.02385246, 0.02868282, -0.0043643336, -0.015960602, 0.009198097, 0.005983525, -0.003388056, 0.029553646, 1.7369741E-4, 0.024315085, -0.0048575746, 0.012450086, 1.7476043E-4, 0.012654185, -0.018681932, 0.0011319033, -0.01804242, -0.011198274, 0.021348836, -0.0053814305, 0.0155524025, -0.009545065, -0.014355017, 0.0038915023, -0.0059767216, -0.017375695, 0.032492682, -0.019566365, 0.005214749, -0.022369334, 0.024110986, -0.01694028, -0.012021476, -0.024845745, 0.010796878, -0.008259238, -0.004748721, 0.009456622, 0.0020307926, -0.032030057, 0.029880207, -0.020818176, -0.02596149, -0.013763128, -0.019076524, -0.024804926, 0.0398947, 0.0121983625, -0.0011387066, 0.012266397, -0.028573968, 0.008708257, -0.010796878, -0.0020358951, 0.004952821, 0.03611205, -0.013844768, 0.021308016, 0.0042112586, -0.019049311, 0.009755969, -0.0026549979, -0.016790608, -0.0013742718, -0.006929187, -0.019484725, -0.025199518, -0.0010689725, 0.0058440566, 0.0141509175, 0.008463337, 0.010028102, 0.02665543, 0.018396193, 0.009626706, -0.024287872, 0.0019644604, -0.013701898, 0.022791142, -0.007769398, -0.030451685, 0.026301658, 0.0031414356, -0.008198007, 0.03499631, -0.012926319, 0.018192092, 0.015933389, -9.805294E-4, -0.008068744, 0.013749521, 0.0052419626, 0.013525011, 0.013212059, 0.023784427, -0.012348036, 0.026927562, -0.013171239, -0.043568496, 0.0046772864, -0.0013878784, 0.029635286, 0.009912445, -0.017607007, -0.01828734, -0.036166478, 0.015171416, -0.017906353, 0.021403262, 0.0011880307, -0.009715149, 0.0053031924, -0.003459491, 0.017770287, -0.0055140955, -0.016491262, -0.032928094, -0.022682287, -0.03295531, 0.03197563, 0.024410332, 0.0151578095, 0.03404384, -0.021117523, 0.01474961, -0.0049970425, -0.032274976, 0.015361909, -0.0143686235, -0.006174018, 0.029036595, 0.013225665, 0.015293876, -0.009415803, 0.019974563, -0.001957657, 0.026546577, -0.019539151, 0.0241382, -0.013497798, 3.529225E-4, 4.6177572E-4, 0.011062208, 0.012749433, -0.009232113, -0.0075993147, 0.003257092, -0.02917266, -0.0077353814, 0.01568847, 0.00902121, -0.018886032, 0.0036091642, -0.008232024, 0.0051773307, -0.03491467, -0.020287517, -0.008476944, -0.009102849, 0.0053133974, -0.011980657, 0.012742629, 0.011973853, 0.006850949, -3.3485118E-4, -0.008334074, -0.0013181444, -0.043786205, 0.03181235, 0.005629752, -0.010157365, 0.028573968, -0.0014644158, 0.012899105, -0.006708079, 0.038778957, 0.0382619, 0.02612477, 0.0021770643, -0.0075516915, -0.020083418, -0.018423406, -0.018355373, -0.011443194, 0.012456889, -0.012463693, -0.0012237482, 0.010973765, -0.0011106429, 0.007864645, -0.028465115, -0.014885676, -0.019267019, 0.01585175, 0.0018726154, 0.02608395, -0.025335584, 0.01857308, -0.031567432, -0.018124059, -0.017811107, -0.03189399, -0.008082351, -0.010728844, -0.006425741, 0.023702787, 0.0113003235, 0.006708079, 0.010694828, 0.0150489565, -0.010654008, -0.011150651, -0.0010196484, 0.019253412, -0.04492916, 0.0037316242, 0.031866778, -0.010436301, -0.016164701, -0.010660811, -0.00427589, 0.012348036, 2.6801383E-5, -0.018437013, -0.01474961, -0.03839797, -0.0065413974, -0.032683175, -0.0055651204, 0.0024730088, -0.024369512, -0.024070166, 0.03782649, 0.005639957, 0.0074292314, -0.003823469, -0.0042826934, -0.028710034, 0.026342478, 0.0020835185, 0.017811107, -0.01577011, -0.02031473, -0.010307038, -0.030206766, 0.015783716, -0.01986571, 0.022056382, 0.012041886, -0.018681932, -0.00431671, 0.006629841, 0.0012688203, -0.02356672, -0.0014737704, -0.017470941, -0.0015111887, -0.014327804, -0.019566365, -0.020151451, 0.0032792029, 0.017089954, -0.0052181506, 0.010619991, -0.032329403, 0.0033438345, 0.011572457, -0.0099192485, 0.011116634, -0.009034816, 0.018886032, 0.016545689, -0.0031924606, -0.009511049, -0.015280269, -0.0046262615, 0.0040105605, 0.024451151, 0.02690035, -0.017987993, -0.013627062, -0.004752123, 0.0015009837, 0.014572724, -0.0092049, 0.017933566, 0.017770287, 0.029608073, -0.015674863, -0.0019542554, -0.011830984, 0.015797323, -1.5637018E-4, -0.003258793, -0.011069011, -0.026220016, -0.0060787713, 0.0057045887, -0.017470941, 0.01129352, -0.004721508, -0.010830894, -0.013368535, 3.6780478E-4, -0.005065076, 0.009272933, -0.01763422, 0.053338073, -0.002190671, -0.0036635909, 0.022029169, 0.009075636, -0.016137488, -0.013320912, 0.0011165958, 0.024655253, -0.015974209, 6.7568185E-6, -0.023294587, -0.013212059, 0.0026294854, 0.009517852, -0.015878962, -0.020927029, -0.009905642, -0.0077149714, -0.006629841, -0.023131307, 0.0028369867, -0.022763928, -0.024750499, -0.01909013, -0.015525189, 0.001119147, 0.0029390366, -0.02860118, 0.007333985, -0.028410688, 0.019593578, 0.028410688, 0.01710356, -0.026070343, 0.0039425273, 0.01767504, -0.0077830045, 0.018736359, 0.0019848703, 9.609698E-4, -0.02043719, 0.021729821, 0.010905731, -0.008061941, 0.0013096402, 0.0086470265, 0.006112788, -0.037554357, 0.010000888, -0.009531459, -0.0036397793, -0.010688025, -0.004408555, -0.013048778, 8.010916E-4, -0.022899995, -0.023294587, -0.004064987, -0.010864911, 0.015919782, 0.016110275, -0.018845212, 0.0038200673, -0.006850949, -0.004258882, -0.0048167547, -0.031349726, -0.013633865, -0.013103205, 0.009402196, -0.018232912, -0.0028642002, -0.026233623, -0.011933033, -0.026056737, 0.030968739, -0.001372571, 0.018382587, 0.022913601, -0.002239995, -0.0068271374, 0.02129441, -0.013246075, -0.0071775084, 0.012361643, -0.0090416195, -0.04335079, -0.022763928, -9.0654317E-4, 0.035948772, 0.011565654, -0.010334251, 0.0042010536, 2.602272E-4, -0.0415275, -0.03238383, -0.009232113, 0.026873136, 0.028791673, 0.01585175, -0.006388323, 0.004731713, 0.02949922, 0.033227444, -0.021797854, 6.114489E-4, 0.00918449, 0.024696073, -0.02734937, -0.008374894, -0.037472717, -0.012388856, 0.0048473696, 0.013905997, 0.012797056, 0.0074700518, 0.010273022, 0.005799835, -0.013048778, -0.034343187, 0.009864822, 0.016572902, -0.013749521, -0.03189399, -0.016586509, -0.010749254, -0.0017909755, -0.01787914, -4.434918E-4, -0.015375516, -0.012388856, 0.0017178397, -0.014967317, -0.019484725, -0.0077149714, -0.018341767, 0.02470968, -1.1725107E-4, -0.022695893, 0.033064164, -0.0037486325, -0.030995952, -0.01174254, 0.0372278, -0.02917266, -0.014776823, 0.007817022, -0.039078303, -0.010449908, -3.5159374E-5, 0.02064129, -0.001745053, -0.0050208545, -0.01129352, -0.028192982, -0.011157454, 0.030778246, 0.017498154, -0.021552935, -0.021389656, 0.038670104, -0.010497532, 0.0073475917, 0.007041442, -0.007538085, -0.05034461, 0.010320645, -4.164911E-4, -0.0053338073, -0.02109031, 0.028111342, 0.008170794, -0.003411868, 0.007211525, 0.19452068, -0.002047801, -0.006425741, 0.03379892, 0.018749965, -0.004167037, 0.012688202, -0.0017016819, -9.1844896E-4, -0.012626972, 0.014613544, 0.035404507, -0.013150829, -0.0016863743, 0.02681871, -0.021879496, -0.05140593, -0.012613365, -0.019879317, -0.013266485, 0.016287161, -6.1527576E-4, -0.004969829, -0.029091021, 0.04103766, 0.0026413912, -0.035214014, -0.01564765, 0.004527613, 0.017620614, 0.00462286, -0.0059461067, 0.030478898, 0.009402196, -0.023008848, 4.1436506E-4, 0.022818355, 0.0017841721, 0.009633509, 0.0411193, 0.01192623, -0.020858996, 0.028492328, -0.004017364, -0.005480079, -0.017770287, -0.012558939, -0.0019389478, -0.03428876, -0.00437794, -0.027254123, 0.00441876, 0.004044577, 0.038860597, -0.0013606651, -0.020450797, -0.001266269, -0.011490817, 0.00918449, 0.007864645, -0.007810218, 0.026805103, 0.011239094, 0.049473785, -0.018749965, 0.0028522944, -0.027417403, -5.8678683E-4, 0.040819954, 0.007374805, -0.00959269, -0.016069455, 0.007476855, -0.0141509175, -0.027811995, -0.014804036, 0.027866421, 0.015021743, 0.011994263, -0.0062216413, -7.8791013E-4, -0.0088239135, 0.022777535, 0.0036976074, 0.00114551, -0.040085196, 0.007265952, 0.016913068, 0.00816399, -0.014028458, 0.00820481, 0.01204869, 0.0036840008, 0.02080457, -0.0063168877, -0.01194664, -0.020042598, 0.035812706, -0.0033659453, 0.0043745385, -0.015742896, 0.07059131, -0.010307038, 0.009408999, -0.025444439, -0.009279736, -0.006347503, 0.01998817, 0.0060277465, -0.019661611, 0.0035921559, -0.041092087, -0.010130152, 0.0052725775, 0.02612477, -0.010123349, -0.013960424, -0.015348302, -0.026832316, -0.030995952, 0.008272844, -0.026070343, 0.007851038, 0.01438223, 0.029390367, -0.024573613, -0.014531904, 0.008497354, 0.01755258, -0.0028999175, 0.014395837, -0.016790608, 0.001200787, 2.0208003E-4, -0.02109031, -9.677731E-4, -0.014858463, -0.013756325, 0.01540273, -0.014286984, 0.011626883, 0.023008848, 0.013035172, -3.797106E-4, 0.0288461, -0.019280626, 0.017974386, 0.015960602, -0.018641112, -0.005935902, -0.027621502, 0.011851394, 0.011402374, 0.003005369, 0.019811284, 0.023675574, -0.027567076, -0.029390367, -0.020219484, 0.01763422, -0.028437901, -0.010232202, 0.0031754524, -0.0081435805, -0.010701631, 0.0072523453, -0.1728589, 0.008565387, 0.029118234, -0.017198807, 0.030533325, 0.0074632484, 0.05001805, -0.005085486, -0.028301835, -0.0017994796, 0.029771352, -0.004701098, -0.040493395, 0.010381875, -0.001644704, 8.291553E-5, 0.012239182, -0.018137665, 0.019511938, 0.015946995, -0.022029169, -0.01438223, 0.012633775, 0.0047249096, 0.0073407884, 0.02336262, -0.002461103, 0.033662856, 0.016708968, -0.0034220729, -0.0055549154, -0.016790608, 0.03162186, -0.001382776, 0.020695716, 0.016654542, -0.019443905, 0.011130241, -0.0026158786, 0.016055848, -0.018137665, 0.012280003, 0.01909013, -0.0019253412, 0.024083773, 0.003561541, -0.011545244, 0.007544888, -0.017239626, -0.02690035, 0.045990482, -0.022260481, 0.025893457, -0.019770464, 0.02669625, 0.007674151, -0.0058440566, 6.0762203E-4, 0.015361909, -0.024872959, -0.0118922135, -0.0081844, 0.00861301, 0.0022025767, 0.007245542, -0.027376583, -0.024845745, 0.037853703, -0.016491262, -0.00595291, -0.020015383, -0.004126217, 0.026723463, -0.0048167547, 0.02677789, -0.0038166656, 0.003520721, -0.013538618, 0.022859175, 0.0030376848, 0.004207857, 0.041908488, -0.009708346, -0.002532538, -0.0046670814, -0.015865356, -1.10660345E-4, -0.0026566987, 0.0054086437, -0.025444439, -0.0020818177, -0.040983234, 0.013368535, -2.6708369E-5, 0.022178842, 0.004007159, 0.00290502, -0.010769664, 0.0064733643, -0.0017356984, -0.00423507, 0.008626617, -0.03213891, 0.014028458, 0.021457689, -0.0043949485, 0.022042776, 0.0077217747, 0.014640757, -0.0030683, -0.005146716, 0.011082618, 0.009715149, 0.04326915, -9.5937525E-5, 0.0076401345, -0.012395659, -0.036057625, -0.00411261, 0.011545244, 0.008313664, -4.6815386E-4, -0.007306772, -0.0039391257, -0.0011591166, -0.029716926, -0.09464787, -0.009953265, 0.026424117, 0.013599848, -0.015824536, -0.011837787, -0.004129619, 0.011572457, -0.024070166, 0.048249185, -0.009259326, -0.032492682, 0.0027060227, 0.017470941, 0.012524922, 0.0024594022, 0.009415803, -0.04250718, -0.018586686, 0.03388056, -0.0068747606, -0.021852283, 0.0066842674, -0.014191737, 0.00427589, -0.008626617, -0.01564765, 0.024845745, 0.020083418, -0.005963115, 0.006687669, -0.043378003, 0.018804392, -0.013334518, -0.026682643, -0.003894904, 0.0060889763, 0.006619636, 0.026029523, -0.018736359, -0.010089332, -0.0039289207, 0.009048423, 0.008687847, -0.021022277, -0.018382587, -0.0123752495, 0.015484369, -0.010728844, -0.004085397, 0.0023046266, -0.0085926, -0.00822522, 0.018600293, 0.018872425, -0.018232912, 0.0070482455, 0.008211614, -0.008129974, -0.005306594, -0.010456711, 0.0019219395, 0.031132018, -0.0045446213, 0.022478187, -0.0052997908, 0.003410167, 0.010136955, 0.025294764, -0.0087354705, 0.008721864, 0.017035527, 0.002369258, 0.027172484, -0.031676285, -0.008395304, -0.0169811, -0.03173071, 0.025539685, -0.0108172875, -0.0233218, -0.0147632165, 0.011626883, -0.036384184, 0.012885499, 0.028192982, 0.013055582, -0.007626528, 0.018777179, -0.042616032, 0.012259593, 0.014559117, 0.059379425, -7.7005144E-4, -0.0044527766, -0.032792028, 0.01180377, -0.0014941804, -0.03254711, -0.014082884, -0.060250252, -0.01909013, -0.06923064, 0.045419, 0.010089332, -0.018777179, -0.01446387, -0.014327804, 0.03197563, -0.028220195, 0.012280003, -0.0013742718, -0.007932678, -0.0042690868, -0.0120895095, 0.005983525, -0.009279736, -0.027811995, 0.010762861, 5.353367E-4, 0.014572724, 0.031431366, 0.007245542, 0.0021719618, -7.190265E-4, 0.027580682, -0.01990653, 0.007395215, -0.0288461, 0.012715416, 0.0031159231, -0.0047147046, 0.0231177, -0.016845034, 0.03290088, 0.03818026, 0.005306594, -0.01123229, 0.0120010665, 0.015797323, -0.011735736, -0.012640579, -0.022437368, -0.023866067, -3.465444E-4, -0.01180377, -0.013341322, 0.001967862, 0.018749965, 0.010395481, 0.017783893, 0.014681577, 0.014518297, 9.966872E-4, 0.0011072413, -0.045772776, 0.0075516915, -0.021920316, 0.0023726597, -0.010585975, 0.011851394, 0.010898927, 0.04269767, -0.0112527, 0.017089954, -0.01170172, 0.02117195, -0.010143759, -0.018845212, 0.010490729, 0.01503535, -0.015566009, -0.01714438, -0.007905465, 0.0018539062, 0.006738694, -0.00617742, -0.005024256, 0.010279825, 0.0022348925, -0.024927385, 0.018423406, 0.0184098, -0.012599759, -0.011198274, 0.010830894, -0.010211792, -0.010123349, -0.025825424, 0.008034728, -0.014926497, 0.009973675, -0.037010092, 0.01791996, -0.016749788, 0.009456622, 0.010075726, -8.402107E-4, -0.030859886, -0.017321266, 0.032928094, 0.020287517, -0.014640757, 0.0027757569, -0.020627683, -0.011728933, 0.020954244, 0.023825247, -0.017198807, -0.012790252, -0.0010664213, 0.0024832138, -0.013538618, 0.0036159675, 0.014218951, 0.01710356, -0.020015383, 0.027757568, 0.004884788, -0.029036595, -0.040493395, 0.045364574, 0.02892774, 0.018069632, 0.0024032749, -0.010252612, 0.025390012, -0.0065209875, -0.011477211, -0.0038370756, 0.004136422, -0.01755258, 0.0027621503, 0.013878784, -0.004796345, -0.008844323, -0.0064631593, 0.005327004, -0.008742274, 0.016314374, 0.006405331, 0.08887865, 0.0116949165, -0.01722602, 0.014613544, -0.013763128, 0.008082351, 0.006051558, -0.02397492, 0.017008314, -0.024002133, 0.0015511583, -0.00441876, -0.03271039, 0.012218772, -0.02182507, 0.041581925, 0.017743073, 0.015742896, 0.0018198896, -0.032928094, 0.025444439, 0.0019950753, 0.016708968, -0.0074632484, 2.2387193E-4, 0.026641823, 0.021757035, 0.02892774, 0.0018930254, -0.046099335, 0.011837787, 0.013593045, -0.03475139, -0.009334163, 0.0062284446, -0.031431366, -0.012232379, -5.8210955E-4, 0.002513829, -0.030342832, -0.0047044996, 0.008749077, -0.010218595, -0.020110631, 0.014504691, -0.008293254, 0.010742451, -0.032873668, -0.07646938 ], - "id" : "0e3db961-ab9e-41d3-869d-b5a89ff70935", - "metadata" : { - "name" : "Axiom D8 E-Mountain Bike" - }, - "text" : "5 | \n| M — Frame reach | 41.0 | 43.5 | 45.0 | 47.5 | \n| N — Frame stack | 60.5 | 61.5 | 62.5 | 64.5 |\ntags: [bicycle, electric bike, mountain bike]" - }, - "c6d9b12d-005f-4b40-b61c-82b11aaa77f9" : { - "embedding" : [ 0.026050763, -0.003632343, -0.010424445, -0.004329146, -0.016323121, 0.0120664155, -0.0150399, -0.026671678, 0.001365147, -0.0154538425, 0.014122329, 0.0065023424, -0.010659012, 9.2447095E-4, 1.7398508E-4, 0.021952735, 0.0032546208, -0.012935694, 0.007623436, -0.047189415, 0.013494517, 0.0015229625, -0.021345621, 0.0047913813, -0.01625413, -0.004525768, 0.026699273, -9.641404E-4, 0.015274468, -0.033584513, 0.021497399, 0.026878648, 0.0027768624, 0.0032563454, 0.0024232867, 0.0042946506, 0.010803892, -0.019469082, 0.025995571, 0.0052950107, 0.03788951, -0.004342944, -0.023580909, -0.0016497322, -0.012687329, 0.011866343, 0.021662977, -0.0025612675, -0.0044878237, 0.010038099, -0.012535551, 0.02765134, -0.022587446, 0.011838747, 0.0074854554, -0.0358198, 0.02135942, 0.015067497, 0.030328168, -0.008044277, -0.020600524, 0.017854707, -0.02665788, 0.009417186, -0.04619595, -0.03617855, 0.016461102, 0.011990527, -0.0014186145, 0.014915718, 0.01884817, 0.022766823, 0.009637955, 0.013287545, 0.009327498, -0.011956031, 0.0020145187, -0.0062677753, -0.011093652, -0.008140864, 0.024532976, -0.020462545, -0.016502496, -0.0025543685, 0.027968695, -0.0017342455, 0.0068645417, 6.597204E-4, -8.13224E-4, -0.012073315, 0.015798794, 0.014984708, 0.006833496, -0.0024629561, 0.008113268, -0.0034857385, -0.010113988, -0.0043877875, -0.0053640013, -0.044678163, -0.0030114297, 0.014501776, 0.0025371208, -0.012369974, -0.033060186, -0.028341245, -0.011362714, -0.0036288935, 0.009927714, 0.0012642485, -0.031487204, 0.029776243, 0.0056641093, 0.029693455, 0.014515574, -0.017137207, 0.033501722, 0.01891716, 0.01353591, -0.014763939, 0.027209802, 0.021524996, 0.018213458, -0.019441485, -0.009651753, 0.028699994, 0.001358248, -0.006174638, -0.014791535, -0.009444782, 0.03300499, 0.011217834, 0.019786438, 0.016819851, -0.00311664, 0.023263553, 0.008230551, 0.01804788, -0.022214899, -0.008547907, -0.010741801, 0.015081295, -0.0029286412, 0.009996705, -0.014722545, -0.008761777, -0.028424032, 0.0014988158, 0.011645574, -0.029279513, 0.02421562, -0.013101271, 0.028479224, 0.028092878, 0.016888842, -0.006222931, 0.0015281367, 0.014487978, -0.011666272, -0.0052570663, -0.028617205, 0.020476341, 0.012163002, -0.016461102, 0.029859032, 0.022532254, 0.0034219224, -0.018930957, -0.022656437, -0.017606342, -0.010900479, 0.024229418, -0.025540235, 0.004356742, -0.0010762498, 0.022477062, 0.014984708, -0.0067300107, -0.026450908, 0.021042062, 0.02033836, 0.0073957676, 0.0020576378, 0.0048051793, -0.016198939, 0.012652834, 0.008996344, -0.026630282, -3.628058E-6, 1.7398508E-4, 0.038800184, 0.0018092724, -0.0047672344, 1.9640697E-4, -0.5890122, -0.03783432, 0.008892858, -0.00967245, 0.0024767544, 0.004991453, 0.0030166039, 0.02156639, -0.025898986, 0.011742161, -0.029610667, 0.0057124025, -0.0034719403, -0.008706585, -0.018006487, -0.028699994, 0.003984194, -0.011590382, 0.032480665, 5.8210624E-4, -0.04075951, -0.014970911, -0.008685888, -0.0015928152, -0.015053699, -0.015274468, 0.016737064, -0.016806055, -0.002880348, 0.0014807058, -0.04354672, 0.040290374, 7.998571E-4, -0.01447418, 0.040869895, -0.0472998, 0.0050466456, 0.026464706, 0.032784224, 0.02594038, -0.02127663, -0.0028044586, -0.0061228955, -0.0105624255, 7.821783E-4, -0.0018299696, 0.051108066, -0.005250167, 0.001160763, -0.037116818, 0.019620862, -0.0059159244, 0.015026103, 0.0018834372, 0.01389466, -0.011286825, 0.018310044, 3.4904815E-4, 8.960124E-4, 0.0030286773, -6.67913E-4, 0.011942233, -0.009617258, -0.0060987487, -0.010569325, 0.030907685, -0.034633167, -0.0031718323, 0.011555887, -0.016737064, -0.005622715, 0.031073263, -0.011114349, 0.0043498427, 0.0051811766, 0.02765134, 0.022311486, 0.009734541, -0.0164887, 0.022725428, 0.004705143, 0.0029476136, -4.5964835E-4, -0.02170437, 0.053481337, -0.004111826, 0.016281728, -0.0024802038, 0.012949493, 0.010189878, 0.028092878, -0.0021180043, 0.0024991762, -0.0021611233, -0.013301344, 0.03430201, 0.0078580035, 0.031542398, 0.0024250115, -0.037309993, -0.011072954, 0.007899397, 0.025153888, -0.027858311, 0.0128874015, 0.010507233, 0.0055813207, 0.0067714048, 0.007050816, -0.022449467, 0.0039083045, -0.022766823, -0.029279513, 0.012369974, -0.02227009, -0.027458167, 0.008182258, 0.019814035, -0.0045050713, -0.013639396, 0.023028985, -0.0036944344, 0.036564898, 0.0070094215, -0.004822427, 0.0015358981, 0.012811512, 0.016571486, -0.017095814, -0.02098687, 0.0065816813, 0.020697111, 0.04506451, -0.012528651, 0.04619595, 6.4031687E-4, 0.0164887, 0.0068231476, 0.0013625599, -0.044816144, -0.03286701, 0.003753076, -0.017095814, -0.04067672, -0.021469804, -0.019386293, 1.4660454E-4, 0.030907685, -0.0047672344, 0.0026268084, -0.004191165, -0.017992688, -0.024394995, -0.007195696, -0.014943314, -0.02040735, -0.012459661, -0.029721051, -0.026326725, -0.01733038, 0.021318024, -0.015536631, 0.003337409, -0.027513359, 0.0026250836, 0.0010227823, 0.015108891, 0.041366626, -4.5463577E-5, -0.04735499, -0.01282531, -0.008202955, -0.029251916, -0.0026526798, -0.025912782, 0.01712341, -0.021511197, -0.01189394, 0.022159707, -0.025485042, -0.0043222466, 0.013259949, -0.060656335, 0.020973073, 3.553004E-4, 0.017082015, 0.01811687, 0.03753076, -0.016088555, 0.021938937, -0.0062160324, -0.013391031, -0.028727591, -0.0050328476, -0.0010452041, -0.0141154295, -4.49731E-4, -0.006533388, 0.016392112, 0.028975956, 0.020296967, 6.0625287E-4, 0.032149512, -0.0037427277, 0.00995531, -0.016612882, 0.020186583, -0.010355455, 0.013315141, 0.029776243, 0.029334705, -0.024960715, 0.00802358, -0.005936621, -8.9859957E-4, -0.004411934, 0.031542398, 0.021331822, -0.006726561, -0.023111774, -0.020214178, -2.2831501E-4, 0.029748648, 0.006298821, -0.0061918856, 0.010120887, 0.017288987, 0.038744994, -0.009265407, -0.022822015, -8.352147E-4, 0.023125572, 0.022463264, 0.004098028, 0.014915718, -0.0067334604, 0.03761355, -0.012928795, 0.025898986, 0.00824435, 0.037917107, 0.031294033, 0.019303506, -0.021000668, 0.033501722, 0.005846934, 0.028092878, 0.020214178, 0.023553312, -0.0034771147, 0.003966946, 0.004277403, 3.723324E-4, 0.032729033, 0.010803892, -0.0046534003, 0.020503938, 0.02520908, 0.007644133, 0.019206919, 0.043077588, 0.017151006, 0.031901147, 0.039572876, 0.036426917, -0.042856816, -0.04636153, -0.0047120424, -0.009341296, -0.034577973, 0.004170468, -0.030631725, 0.00479828, -0.008844566, 0.015605622, 0.014791535, 0.010783195, 0.0023887916, 0.0257886, 0.03703403, -0.0035357564, -0.016433505, 0.020076199, -0.0068403953, -0.004956958, 0.004263605, 0.006105648, 0.007054265, -0.0024094887, 0.018006487, 0.0085962005, 0.003459867, -0.017509757, -0.003980744, 0.0026751016, -0.0067610564, 0.023387736, -0.024505379, -0.010134686, -0.012908098, -0.03253586, 0.01096257, 0.010776296, -0.029362302, 0.026782062, -0.021676775, 0.0047741337, -0.02249086, 0.01763394, 0.0054536886, 0.01132132, -0.016916439, 0.009451681, -0.007637234, -0.007209494, 0.0029062193, 0.008258147, -0.0307973, 0.023981053, -0.023084179, -0.011562786, -0.027885908, -0.01898615, -0.029224321, -0.009051536, 0.020614322, 0.0014108531, 0.0071474025, -0.031183647, -0.0060849506, -0.014487978, -0.0048189773, 0.014777738, 0.02284961, -0.018172063, 0.012570046, 0.011956031, -0.009444782, -0.021442207, 9.261957E-4, -0.010755599, -0.021649178, 0.0114386035, -0.0024094887, -0.028286051, -0.0075337486, 0.0045292177, 0.04550605, -0.006147042, -0.014570766, 0.009796632, 0.0034702157, 0.018420428, -0.023318745, -0.014074036, 0.012542449, 0.023967255, 0.005070792, -0.028092878, 0.014722545, 0.024739947, 0.0025440198, 0.021124851, 0.005381249, -0.008182258, 0.006426453, 0.009796632, 0.004929362, -0.0061021983, 3.346033E-4, -0.0031597589, 0.00766483, 0.024850331, -0.0092240125, 0.015315862, -0.017537352, -0.032121915, 0.0014418988, -0.0038220666, 0.005760696, -0.01210781, -0.011742161, -0.018586006, -0.03617855, -0.0020093445, -0.014915718, 0.012218195, 6.51959E-4, 0.018006487, -0.0186274, -0.024008648, 0.016157545, -0.0016023014, -0.009624156, -0.030548936, -0.005408845, -0.009203316, 0.026671678, 0.011831849, 0.0013099547, 0.028479224, -0.03855182, 5.622715E-4, 0.002392241, -0.029721051, 0.017647736, -0.02520908, 0.006899037, -0.01739937, 0.013087473, 0.022684034, 0.001365147, 0.012528651, -0.0064299023, 0.01927591, -0.0032115018, 0.020766102, -0.01590918, 0.0035133346, -0.005329506, 0.013715286, 0.026299128, 0.013804973, -0.012880502, -4.9344286E-5, -0.018558409, -0.005574422, 0.020724706, -4.2105684E-4, -0.006533388, -0.0024629561, 0.004042836, -0.017840909, -0.015522833, -0.018089276, 0.0155642275, -7.2741724E-4, -0.003611646, -0.024505379, 0.0050880397, 0.009782835, 0.012169901, -0.0037427277, -0.026837254, 0.003396051, -0.03281182, 0.033280954, -0.0010383051, -0.023360139, 0.031183647, 0.013956752, 0.017040621, 0.011686969, 0.035681818, 0.03896576, 0.024946919, -0.009430984, 9.261957E-4, -0.0092240125, -0.02686485, -0.01626793, -0.0038220666, 0.022518456, -0.024974514, -0.009010143, -0.003832415, 0.025029706, 4.9284997E-4, -0.007582042, -0.008313339, -0.026533697, 0.024229418, -0.02565062, 0.025802398, -0.029196724, 0.005546826, -0.01633692, -0.029859032, -0.028755186, -0.0036875352, -0.014432785, 5.717577E-4, 0.0014988158, 0.015536631, 0.01676466, 0.007037018, -0.008058075, 0.0028113576, -0.009182618, -5.65721E-4, -0.026492301, 0.00823745, -0.05593739, 0.0134600215, 0.055909798, -0.0036530402, -0.011217834, -0.025181485, -0.0030648971, 0.017040621, -0.02033836, -0.015481439, -0.011486896, -0.050142203, 0.023332544, -0.022670235, 8.968748E-4, -0.016419709, -0.038607012, -0.01833764, 0.03466076, -0.0141430255, 0.011666272, -0.011335118, 0.0014436234, -0.018586006, 0.03739278, 0.006040107, 0.022007927, 0.006240179, -0.021249034, -0.013929156, -0.01139031, 0.010231272, -0.022822015, 0.0133772325, 0.026837254, -0.02242187, 0.006781753, -0.006919734, -0.0028424032, -0.010155383, 0.011845646, 0.008251248, -0.003339134, -0.0026888996, -0.029748648, -0.028051484, 0.01325305, 0.014763939, -0.005467487, 0.018668795, -0.027968695, -0.0032356484, 0.018682592, -0.00422566, 0.015122689, -0.015288266, 0.009941513, -0.0038600112, -0.020048602, -1.4649674E-4, -0.01748216, -0.0020938576, 0.004104927, 0.015812593, 0.035792205, -0.018475622, -0.006892138, 0.0057986407, 0.0020403902, -0.00988632, -0.025829995, 0.0077752145, 0.013363435, 0.023084179, -0.024091437, -0.011217834, -0.033142973, 0.0068645417, -0.01124543, -0.0016747413, 0.0047603357, -0.009230912, 0.0073474743, 0.015343458, -0.024119033, 0.024257014, 0.009079133, -0.0011599006, 0.0055675227, 0.007926993, -6.756744E-4, 0.01676466, 0.006619626, 0.061373834, -0.014336199, 0.008230551, 0.022808217, -0.0064781955, -0.0027044225, 0.002814807, 0.0032770426, 0.028341245, -0.020476341, 0.011017762, -0.024229418, 0.0040393863, -0.009044638, 0.014708747, -0.003539206, -0.026174946, -0.019869227, -0.019869227, -0.0034012252, -0.0134876175, -0.024657158, -0.023180764, -0.022656437, -0.02958307, -0.026450908, -0.009175719, -0.0017420069, -0.03286701, -0.008478916, -0.019455284, 0.017164804, 0.03479874, 0.01876538, -0.033280954, 0.014267209, 0.010624517, -0.017592544, 0.0078787, 0.0128874015, -0.0042429077, -0.0279411, 0.018475622, 0.008568604, -0.011052257, 0.017827112, 0.0136531945, -0.011762858, -0.040373165, 0.027389176, -0.009058435, -2.9752098E-4, -0.0021749213, 2.9752098E-4, -0.019965813, 0.007195696, -0.010955671, -0.018310044, 0.027858311, -4.3420814E-4, 0.010265767, -0.0012504505, -0.028727591, 0.031045666, -0.016626678, -0.006885239, -0.0075613447, -0.00347539, -0.0010365803, 0.010403748, 0.016819851, -0.0039427998, -0.016778458, -0.042829223, -0.023953456, -0.029196724, 0.026561292, 0.0014513849, -0.007299181, 0.02529187, 0.0013435874, -0.008078773, 0.024022447, -0.003977295, -0.019703649, 0.017219996, -0.021980332, -0.02300139, -0.023028985, -0.002021418, 0.043657105, 0.014639757, -0.015440045, 9.934613E-4, -0.016171344, -0.04550605, -0.004988004, -0.006843845, 0.030576533, 0.02185615, 0.03065932, -0.006081501, 0.013880863, 0.013225454, 0.015578026, -0.022104515, -0.008499614, 0.0023974155, 0.03524028, 0.01854461, 0.019027544, -0.037420377, -0.00909983, 0.023194563, 0.02378788, 0.01854461, -0.0031356122, 0.0016618056, -0.004329146, -0.0073060803, -0.009982906, 0.020393554, 0.0106176175, 7.3043554E-4, -0.045119703, -0.017840909, -0.026188744, 0.010707306, 0.011631777, 0.0229186, -0.033253357, 5.1354704E-4, -0.0047775833, 0.013604901, -0.0042808526, 0.0073681716, -0.007630335, 0.020531533, 0.0041083763, -0.01447418, 0.06534768, -0.010776296, 0.007085311, 0.005381249, 0.02264264, -0.023553312, -0.017537352, 0.020393554, -0.01898615, 0.005508881, 0.0021231787, 0.008271946, 0.0068610925, 0.011348916, 0.0035633526, -0.024050044, -0.01999341, 0.039793644, -0.004118725, -0.018723987, -0.0056710085, 0.016571486, -0.021304226, 0.018572208, 0.0020110693, -0.0141982185, -0.033888068, 0.00630227, 0.0031045666, -0.02378788, -0.020572929, 0.03474355, -0.021400813, -0.011611079, -0.020117592, 0.16877805, 0.011148844, -0.010514133, 0.036206145, 0.0035495546, -0.02664408, 0.02163538, 0.0011357539, 0.010162282, -6.433352E-4, 0.028051484, 0.030190187, -0.007040467, -7.248301E-4, 0.017923698, -0.014529372, -0.06551325, -0.0074854554, -0.01081769, -0.0046258043, 0.008189157, 0.0034719403, -0.017744323, -0.045754414, 0.03576461, 0.004173917, -0.0034219224, -0.019151727, 0.012790815, 0.009610359, 0.011003964, -0.009769036, -0.0015108892, 0.0042187613, -0.03195634, -0.016626678, 0.019717447, 0.0027182207, -0.0049121142, 0.036316533, 0.0018178963, -0.016626678, 0.034053646, -0.018806774, -0.01640591, -0.0074854554, -0.013673891, 0.013522113, -0.02399485, -0.011686969, -0.03159759, 0.015012304, 0.017233795, 0.03559903, 0.019165525, -0.0034857385, 0.023691293, -0.014819131, 0.005753797, 0.017937496, -0.010044998, 0.033860475, -0.0050328476, 0.020393554, -0.0114110075, 0.0047396384, -0.037447974, -0.032066725, 0.0052605155, -0.0052674147, -0.01655769, 0.005381249, 0.009520671, 2.867412E-4, -0.02966586, -0.026892446, 0.009575863, 0.021456005, -0.0019231066, 0.010272666, 0.005043196, -0.01762014, 0.006819698, 0.020214178, -0.0070611644, -0.033225764, -0.013756679, 0.0093343975, 0.018089276, -0.024353601, 0.00508459, 0.005867631, -5.4502394E-4, -0.0099898055, -0.027416773, 0.0010296813, -0.013729083, 0.030686917, -0.023291148, 0.0021231787, -0.030217782, 0.04128384, -0.02177336, 0.0049673067, -0.033639703, -0.014308603, -0.0010124337, 0.01519168, 0.00795459, -0.031156052, -0.014501776, -0.03267384, -0.0091136275, -0.01016918, 0.022697832, -0.012356175, -0.0073612723, -0.013287545, -0.006961128, -0.013508314, 0.0186274, -0.006247078, 0.015550429, 0.00601596, 0.034357205, -0.02493312, -0.021621581, -0.0053915973, 0.0071129072, -0.023815475, 0.012694228, -0.0071543013, -8.88251E-4, -0.0066092773, -0.035074703, -0.0071887965, -0.011928435, -0.0030355763, -5.739136E-4, -0.0020007207, -0.004522319, 0.010955671, 0.00666447, -0.022366678, 0.018792978, -0.017344179, -0.0179099, -0.0120664155, -0.01676466, 0.008782474, -0.035185087, -0.0020317663, 0.009430984, -0.008320238, 0.026188744, 0.01454317, -0.020283168, -0.045754414, -0.0044291816, 0.0077821137, -0.025457447, -0.017992688, 0.010548628, -0.0099346135, -0.014294805, -0.010431344, -0.17396612, 0.004163569, 0.020600524, -0.0018316943, -0.0075268494, 0.003839314, 0.042028934, 0.0018316943, -0.023249755, 0.0042463574, 0.00666447, -0.001962776, -0.016916439, -0.017896103, -0.012507954, -0.010693507, -0.0052674147, -7.64284E-5, 0.026064562, 0.02443639, -0.017371776, -0.009479277, 0.014515574, -0.014791535, -0.017164804, 0.018889563, 0.002750991, 0.037282396, 0.02780312, -0.0069956235, -0.0043222466, -0.03195634, 0.015108891, -0.02500211, 0.030604128, 0.0035702516, -0.012652834, 0.0043739895, -0.0083754305, 0.022808217, -0.015246872, 0.011597281, 0.020048602, 0.0061435923, 0.0179099, 0.030355763, -0.0015548705, 0.004149771, 0.0038634606, -0.008430623, 0.042884413, -0.018558409, 0.030714512, -0.025485042, 0.032204706, -1.4056788E-4, 0.0014212016, -0.0052053235, 0.024160428, -0.011266127, -0.019896822, -0.01210781, 0.026036967, 0.0020731606, -0.026105955, -0.029279513, -0.037475567, 0.0054778354, -0.030604128, 9.098105E-4, -0.010928075, -0.019096535, 0.005819338, 0.008699685, 0.031983934, 0.017040621, -0.011183339, -0.004342944, 0.017951295, 0.021538794, -0.0113558145, 0.0530122, 0.010665911, 0.009665551, -0.007713123, -0.014943314, -0.011376512, 0.007892499, 0.0014022293, -0.036840856, -0.012190598, -0.020655718, 0.009430984, -0.0071474025, 0.017219996, 0.0059331716, 0.007623436, -0.0027406425, 0.028534418, 0.009831128, 1.521022E-4, -0.020531533, -0.038607012, 5.415744E-4, 0.029748648, -4.3895122E-4, 0.011155743, 0.015605622, 0.012238892, 0.016999228, -0.022076918, 0.02565062, 0.01124543, 0.027430572, -0.0052570663, 0.009631055, -0.03402605, -0.022711629, 0.007926993, -0.0010736627, 0.012349276, 0.0028751737, -0.011866343, -0.0067886524, 0.0055571743, -0.034081243, -0.0902946, -0.0038876073, 0.026961436, 0.02471235, -0.021511197, 0.0127494205, 0.009996705, 0.013694588, -0.01060382, 0.02715461, -0.01297019, -0.013915358, -0.009079133, 0.021180043, -0.0023180763, 0.017206198, 0.0034581423, -0.028782783, -0.031238839, 0.025264274, -0.023484321, -0.017357977, -0.003753076, -0.0053260564, -0.027513359, -0.0018592905, -0.01325305, 0.031073263, 0.017827112, 0.0014470731, 8.1537996E-4, -0.03245307, -0.018710189, 0.0011331668, -0.026602687, -0.0019144828, -0.023111774, 0.0031062914, 0.013135767, -0.028755186, -0.0040738815, 0.017219996, 0.0033667302, -0.021621581, -0.03719961, -0.008996344, -0.013391031, 0.035019513, -0.013059877, -0.0077545177, -0.0099346135, -0.004484374, -7.29142E-4, -0.008223652, 0.017068218, -0.021745766, 0.0186274, -0.009265407, -0.0073405756, -0.0012323405, 0.008189157, 0.017965093, 0.0157574, 0.014391392, 0.024946919, -0.016364517, -0.0016324846, 0.023097975, 0.044236626, -0.0024526077, -0.0016255856, 0.010576224, -0.023677494, 0.040097203, -0.021456005, 0.021111052, -0.029003551, -0.012142305, 0.0060746023, -0.00601596, -0.0019800237, -0.008554806, -2.3370488E-4, -0.042580858, 0.011169541, 0.044622973, 0.010327859, 0.006919734, -0.0062022344, -0.019620862, 0.014943314, 0.021483602, 0.05400566, -6.873166E-4, -0.0039876434, -0.023194563, 0.008133965, -0.0045568137, -0.03645451, -0.018682592, -0.050307777, 0.0068265973, -0.07655171, 0.028975956, 0.028837975, -0.017040621, -0.024988312, -0.0025629923, 0.035378262, -0.02278062, 0.024394995, -0.001565219, -0.010914276, 0.018061679, -0.006026309, 0.023525717, -0.0017661535, -5.812439E-4, 0.012018123, 0.0029924572, 0.015136487, 0.02886557, 0.010631416, 0.013156463, -9.3223236E-4, 0.028286051, -0.017992688, 0.01339793, -0.015798794, 0.009079133, 0.012956391, -0.003454693, 0.03237028, -0.01927591, 0.019289708, 0.035129897, -0.019234516, 0.0014919167, 0.008444421, 0.012494156, -0.013363435, -0.010721103, -0.056185756, -0.03755836, 0.0015048524, 0.0052950107, -0.013121968, 0.007416465, 0.028313648, 0.014708747, 0.011617978, 0.022007927, 0.0039048549, -0.0032287494, -0.0013237527, -0.021593986, 0.0048465733, -0.016350718, -0.008340936, -0.020296967, 0.0017299335, -0.022380477, 0.0723571, -0.009665551, 0.010044998, -0.026450908, -0.022159707, -0.02414663, -0.022904802, 0.008437523, 0.009403387, -0.021304226, -0.034550376, 0.026312927, 0.0010072594, 0.01797889, 0.0033477577, 0.020683313, 0.002464681, -0.023525717, -0.024201822, 0.015274468, 0.024477784, -0.017247593, -0.007471657, 0.0050604437, -3.039888E-4, -0.028534418, -0.036564898, 0.02313937, -0.0015747052, 0.01770293, -0.04956268, 0.02614735, -0.006219482, -0.011914637, 0.039793644, -0.002042115, -0.016792256, -0.008078773, 0.034274414, 0.019331101, -0.02616115, -0.0020472892, -0.008140864, -0.005774494, 0.009727642, 0.02315317, -0.014970911, -0.013246151, 0.014053338, -0.013639396, -0.018668795, -0.018875765, -0.0017126859, 0.015426246, -0.0056330636, -0.003970396, -0.009562065, 0.0014246511, -0.024532976, 0.032425474, 0.045092106, 0.008575503, 0.018972352, 0.013770478, 0.007223292, -0.01031406, -0.006905936, -0.0022956545, -1.610494E-4, -0.036509704, 0.0017903001, -0.022987591, 0.0058641816, -0.012735622, -0.02672687, 0.013239252, 0.0075475466, 0.022463264, 0.0038082683, 0.11435844, 0.013798074, -0.004822427, 0.0071887965, -0.0021731968, 0.020876486, 0.0025181484, -0.03460557, -0.014819131, -0.03708922, 0.0018541162, 0.0041394224, -0.019869227, -0.004122175, -0.02098687, 0.022822015, 0.020862687, 9.6327806E-4, -0.0015678061, -0.018834371, 0.02307038, -0.012701127, 0.013722185, -0.015853986, 0.021097256, 0.0014548345, 0.029251916, 0.033694897, -0.0018092724, -0.037309993, 0.01584019, 0.010514133, -0.0053605516, -0.008154661, 7.662243E-4, -0.023677494, -0.010334757, 0.020172784, 0.018861968, -0.0107280025, 0.01124543, 0.005950419, -0.00751995, -0.006640323, 6.7524327E-4, -0.013887761, 0.0030217783, -0.021883745, -0.07031499 ], - "id" : "c6d9b12d-005f-4b40-b61c-82b11aaa77f9", - "metadata" : { - "name" : "Velo 99 XR1 AXS" - }, - "text" : "| J — Trail | 9.7 | 9.7 | 9.7 | 9.7 |\n| K — Wheelbase | 112.5 | 114.5 | 116.5 | 118.6 |\n| L — Standover | 75.9 | 77.8 | 81.5 | 84.2 |\n| M — Frame reach | 41.6 | 43.4 | 45.2 | 47.1 |\n| N — Frame stack | 58.2 | 58.9 | 59.3 | 59.9 |\ntags: [bicycle, mountain bike]" - }, - "b2e9c6ca-be16-4d5b-bca2-b0a04914bcad" : { - "embedding" : [ 0.008113978, 0.0076331506, -0.026726045, -0.007733323, -0.026378779, 0.026726045, -0.013262849, -0.049178056, 0.015359796, -0.012688527, 0.0045545134, 0.0130024, -0.022305094, 0.014424851, -0.015680349, 0.016414946, 0.025737675, 0.015666991, -0.013616793, -0.013135964, -0.0070922184, 0.006300855, 0.003339086, 1.3784165E-4, -0.009115704, 0.0069386205, 0.03266962, -0.0115198465, 0.007846852, 0.012388009, 0.0019350003, 0.021303369, -0.02585788, 0.006718241, -0.012521572, 0.0061071883, 0.018819088, 0.0015201189, 0.027126735, -0.0022188227, 0.031921662, 0.001643665, -0.011720192, -0.017870788, -0.016828993, 0.011072409, 0.0036329255, -0.008487957, 0.010458017, 2.690051E-4, -0.013890598, 0.017697155, -0.016214602, 0.004087041, -0.008160726, -0.005472762, 0.017657086, 0.022545509, 0.051902752, 0.021503713, -0.002450889, -0.0011962275, -0.03341757, 0.0010543164, -0.044850603, -0.019633826, -0.008007128, 0.020221505, 0.006724919, 0.008160726, 0.0030202032, 0.033898402, 0.0068217525, -0.0023223343, -0.001614448, -0.027073309, 0.00730592, 0.0061439183, -4.823414E-5, 0.01844511, 0.027153447, -0.027567493, -0.0012045753, -0.0060871537, 0.029597659, 0.014077586, 0.00233736, -0.01804442, -0.015386508, -0.006871839, 0.0018915922, 0.013155999, 0.0012229403, 0.014772116, -0.0061940043, 0.012835447, -0.025777744, 0.015626922, -0.008013806, -0.01709612, 0.018632099, 0.014945748, -0.010478051, -0.02669933, -0.028101748, -0.007606438, 0.004814962, -0.014558415, 0.0025293576, -0.0029016656, -0.0075663687, 0.008935394, 0.0011594977, -0.019059503, 0.008240864, -0.008501313, 0.029570945, 0.015212876, 0.025884595, -0.0025176709, 0.010404591, 0.032242212, -0.008821866, -0.022545509, -0.011553237, 0.0052757557, 0.0015134407, -0.013496585, 0.03320387, -0.023921212, 0.0072858855, -0.003419224, 0.01292894, 0.0014107638, -0.05040684, 0.030933293, -0.012434756, 0.022665715, -0.042606737, -0.006724919, 0.011439708, 0.008434531, -0.013957379, -0.016268026, -0.0046780594, 0.013670218, -0.013863885, 0.022745853, 0.034459367, -0.006411045, 0.026872965, -0.008541382, 0.015666991, 0.031975087, -0.01804442, -0.01804442, 0.0017530201, 0.0017446724, -0.027353792, -0.0033290687, -0.006020372, -0.006317551, 0.0012955654, -0.013930666, 0.024575673, 0.016775567, 0.0047214674, -0.012915584, -0.016321452, -0.028609289, -0.014184437, 0.024562316, -0.010104074, 0.013529976, 0.008093945, 0.019767389, 0.040816985, 0.006911908, -0.03021205, 0.017136188, 0.03128056, -0.001983417, 0.013089217, 0.012494859, -0.016722143, 0.009195843, -0.020301642, -0.030746303, 0.0061138663, -0.011907181, 0.0014383113, 0.0018064455, -0.006744954, 0.013423125, -0.6086219, -0.014772116, -0.016922487, -0.010057327, -0.0035360921, 0.02141022, 0.0016553518, 0.027006527, -0.004594582, 5.330016E-4, -0.017657086, 0.01903279, -0.019700607, -0.01322278, -0.021236587, -0.01954033, 0.019166354, -0.01033781, -0.0028549186, -0.0011236024, -0.018204696, -0.0130424695, -0.04773557, -0.013129286, -0.00500529, -0.003656299, 0.015239588, 0.0019917649, -0.00244755, 0.02086261, -0.02852915, 0.04364853, 0.014571771, -0.007025437, 0.035901852, -0.033844974, 0.0046279733, 0.027153447, 0.005749906, 0.029677795, -0.0074127708, -0.0054994747, -0.007466196, -0.0015017539, -0.0025460531, 0.003152097, 0.0461061, -0.005282434, 0.012915584, -0.040977262, 0.021356793, 0.015947474, -0.0031003414, -0.02494965, 0.016455015, -0.0077867485, 0.02633871, 8.613798E-5, -0.013182712, 0.012788699, 0.008701658, -4.190553E-4, -0.025390409, -0.009028888, -0.01903279, 0.017710513, -0.029677795, -0.026966458, 0.031227132, -0.016388234, 0.021290012, 0.027206872, -0.0030619418, 0.031253844, 0.01585398, 4.895935E-4, 0.039534777, -0.011733548, -0.005011968, 0.025510617, 0.011319501, 0.009309372, -0.009162452, -0.0498993, 0.05171576, -0.0069386205, -0.0018014369, -0.021423576, 0.008361071, 1.83128E-4, 0.020595482, 0.007386058, -0.0040469724, -0.027407218, 0.010598259, 0.029944923, -0.0070855403, 0.026285285, 0.01917971, -0.021677347, -0.02261229, 0.012114204, 0.009289337, 0.029090118, 0.020368425, 0.025377054, -0.012167629, -0.010952202, 0.0160009, -0.038679972, 0.005863435, -0.030025061, -0.009483004, 0.016495084, -0.008240864, -0.022051323, 0.0048116227, -9.190834E-4, 0.01081196, -0.0024976362, 0.0038299316, -0.0042473176, -0.0012254445, -0.010391235, -0.0149991745, 0.007459518, 0.00782014, -0.012501538, -0.0212633, 0.004006903, 2.3373602E-4, 0.009943798, 0.03050589, -0.01983417, 0.030452464, 0.007866886, 0.009015532, -0.0033557813, 0.023947924, -0.023226682, -0.038706683, 0.009389509, 0.017323177, -0.025617467, -0.016615292, -0.014772116, -0.0060404064, 0.02261229, -0.028475724, -0.016321452, -0.028582577, -8.697275E-5, -0.009536429, 0.014772116, -0.013189389, -0.029544232, -0.017576948, -0.0019683912, -0.0059168604, -0.023066405, 0.013716965, 0.01779065, -0.027674345, 0.003839949, 0.003696368, -0.004891761, 0.012394687, 0.020301642, 0.008174082, -0.050914384, -0.011366248, 5.5387086E-4, -0.011746905, 0.006177309, -0.017109476, 0.0013423125, -0.018364973, 8.347715E-5, 0.011079087, -0.016321452, 0.0017346551, 0.021249942, -0.03787859, 0.016949201, 0.03419224, 0.028796278, 0.020341711, 0.018471824, 0.0014257897, 0.009275981, -0.008815187, -0.0063509415, 0.0056163426, -0.001980078, -0.006404367, -0.0028732836, 0.031013431, 0.0042606737, 0.0197941, 0.020154722, 0.009710062, 0.00782014, -7.3334674E-4, 0.010758535, 0.008227508, -0.0059535904, 0.024108201, -0.009115704, 0.030879866, 0.024054775, 0.014878967, -0.0412711, -7.425292E-4, -0.018752307, -0.016027613, -0.0029016656, -1.289722E-4, 0.03467307, -0.026539056, -0.008748406, -0.013095895, 0.018458467, 0.012100847, 0.0073593454, 0.010905455, 0.02206468, 0.02783462, 0.035287462, -0.003843288, -0.017950926, 0.010551511, 0.01709612, 0.009903729, -0.02324004, 0.014932392, 0.0020986155, 0.018859157, -0.009483004, 0.055882942, -0.018765664, 0.0267394, 0.05534869, 0.021503713, -0.024455465, 0.014545059, 0.013035792, 0.033551134, 0.021597208, 0.035073757, 0.019673895, -0.02414827, -0.005456066, 0.016882418, 8.3936274E-4, 4.3241165E-4, -0.01322278, -0.0060136938, 0.031360697, -8.865273E-4, 0.001866549, 0.014518346, 0.014344714, 0.030479176, 0.01804442, 0.018017707, -0.009656637, -0.016655361, -0.0067015453, -0.0022238311, -0.044022508, -0.0063075335, -0.003243922, -0.0048483526, 0.0041003977, 0.019219778, -0.0018715577, -0.011045696, -0.010451339, 0.018405043, 0.032349065, -0.016081039, -0.033818264, 0.0053792675, 0.005756584, 0.004471036, 0.008207473, 0.0013214432, 0.0059903204, 0.014491633, 0.03240249, -0.008207473, 0.0057999925, -0.0125349285, 0.0034893448, -0.040816985, 0.0034759885, 0.036142267, -6.4653053E-4, 0.03250934, -0.0023991333, -0.008648233, -0.013570045, -0.017069407, -0.013095895, 0.031948373, -0.02195783, 0.011887146, -0.014251219, 0.0231599, -0.008207473, -0.005713176, -0.042099196, -0.0079537025, -0.03232235, -0.003960156, 0.010491408, -0.001019256, -0.014745404, 0.023039693, -0.019914309, -0.022492083, -0.0056964806, -0.014451564, -0.029651083, 0.05508156, 0.018752307, -0.003923426, 0.02319997, -0.029357243, 0.015653634, -0.025991445, -0.014718691, 1.2271141E-4, 0.041164253, -0.002250544, 0.010057327, -0.020208148, 0.012107526, 0.003916748, -0.014090943, -1.3565036E-4, -0.0043241163, -0.014304644, -0.007419449, -0.017336534, -0.00544271, 0.008608163, 0.013062504, 0.012140917, 0.0060771364, 0.021837622, 0.020074585, 0.009669993, -0.021984542, -0.004521122, -0.031547684, 0.02772777, -0.0035093792, -0.03061274, 0.016268026, -0.006761649, 0.008895325, 0.013997449, -0.006911908, 0.01698927, 0.030986717, -0.012294514, -0.012842124, 6.711563E-4, -0.006958655, 0.0016261349, -0.0052690776, 0.02549726, -0.019353341, 0.018645456, -6.7992136E-4, -0.021143092, 0.0016578562, 0.021490358, 0.02922368, -3.128306E-4, -0.014411495, -0.013797103, -0.027514068, 0.0079670595, -0.03181481, 0.016081039, -0.0026679297, -0.02107631, -0.0014257897, 0.0046847374, 0.024749305, 0.0018682185, -0.005933556, -0.03349771, -0.008588129, -0.04017588, 0.008207473, 0.007920312, 0.018017707, 0.012281158, -0.02911683, 0.020582126, 0.018752307, -0.019486906, 0.01644166, 0.0015393186, -0.01625467, 0.019820815, 2.5460531E-4, 0.021009529, -0.012942297, 0.032963455, 0.0015894049, 0.027260298, -0.011887146, 0.029063404, 0.003382494, 0.0043408116, 3.1491753E-4, 0.018137915, 0.008835222, -0.0067416145, -0.0045712087, 0.008848578, -0.032776468, -0.005272417, 0.01055819, 0.021156449, -0.009803556, 0.008788474, -0.012761987, 0.022639003, -0.028636001, -0.02871614, -0.019740677, -0.02414827, 0.0066648154, -0.029731221, 0.009442935, 0.0055695954, 0.006020372, -0.009770165, -3.3578684E-4, -0.009336084, -0.054013055, 0.023961281, 0.0027380504, -0.013716965, 0.028155172, -0.001088542, 0.013716965, 0.00270299, 0.019460194, 0.04602596, 0.034272376, 0.010351166, -0.009903729, -0.01633481, -0.015239588, -0.016802281, -0.005128836, 0.011933893, 0.0032706347, -0.01322278, 0.035821714, -0.0042005703, 0.012241089, -0.017376604, -0.017710513, -0.03258948, 0.019299917, 0.010912132, 0.021436932, -0.011018984, 0.0041070757, -0.022371875, -0.013556689, -0.015813911, -0.030933293, 0.0018982703, -0.02374758, 0.015079312, 0.0317881, 0.0074929087, 0.009269303, 0.015119381, 0.014384782, -0.0032122007, -0.017176257, -0.01819134, 0.017229684, -0.04581226, 0.002035173, 0.032856606, 0.0024826105, -0.013797103, -0.025029788, 0.0052290084, 0.0093160495, 0.010685075, -0.034539506, -0.018004352, -0.032749753, -0.006451114, -0.031146994, -0.011720192, 0.008501313, -0.034753207, -0.017657086, 0.040683422, 0.013135964, 0.023066405, 0.007766714, -0.010638328, -0.020314999, 0.03339086, 0.0099104075, 0.010104074, -0.0030853155, -0.014291288, -0.027594207, -0.025697606, 0.023694154, -0.023814362, 0.01362347, 0.026258571, -0.02941067, -0.012635102, 0.0063142115, 0.015466646, -0.020194791, -0.014812185, -0.015520072, -0.0067382753, -0.03152097, -0.009856982, -0.01899272, 0.010471374, 0.01644166, 3.683429E-4, 0.010825316, -0.027206872, -0.0048416746, 0.018551962, -4.62046E-4, 0.021824265, -0.0076398286, 0.019713964, 0.018658813, -0.005279095, -0.009282659, -0.025176708, -0.02589795, 0.0046880767, 0.013543333, 0.016308095, -0.012842124, -0.016027613, -0.0019734, -0.0065412694, 0.004113754, -0.0011786973, 0.008574773, 0.016855706, 0.037290912, -0.005512831, 0.0034993622, -0.0027747804, -9.860738E-5, -0.009890373, 0.015119381, -0.0033190513, -0.023560591, 0.007993772, 0.00189994, -0.022411944, 0.023974637, 0.0028816313, -0.028769564, -0.0080538755, -0.007179035, -0.020996172, 9.366136E-4, -0.0114330305, 0.047174606, -0.017550236, 0.018685525, 0.019887596, 0.015880693, -0.011406317, -0.014705335, 0.01669543, 0.023467096, -0.017737225, 0.0059168604, -0.018966008, -0.02374758, -0.0066013727, 2.0775375E-4, -0.005936895, -0.011987318, -0.00467472, -0.0070521496, -0.005402641, -0.015359796, -0.0060838144, -0.014037517, -0.023827717, -0.026352067, 0.001351495, 0.001271357, 0.0027013205, -0.021396862, -0.0022588917, -0.008127335, 0.015466646, 0.023106474, 0.022705784, -0.020996172, -0.008835222, 0.021356793, -0.014224506, 0.009903729, 0.024348615, -0.008374427, -0.0016812298, 0.02852915, 0.014304644, -0.007319276, -0.0056497334, 0.0014750413, -0.010898776, -0.04648008, 1.9679738E-4, -0.018204696, -0.0053492156, -0.010872064, 0.0094229, -0.008407818, 0.013823816, -0.025951376, -0.031040143, -0.0041070757, -1.9251918E-4, -3.535257E-4, -0.0014817194, -0.032936744, -0.0029434043, -0.014104299, 0.017416673, -0.006554626, -0.020475276, -0.026125008, 4.7331542E-4, 0.016561866, -0.010645006, -0.008574773, -0.021490358, -0.0149991745, -0.029464094, 0.019126285, 0.0035294138, 0.019152997, 0.013349665, -0.017216327, -0.0048750653, 0.014024161, -0.013957379, -0.012595032, 0.0033875026, -8.0972834E-4, -0.039908756, -0.016949201, 0.002542714, 0.032749753, 0.005789975, -0.011199295, 0.007980416, -0.0021136415, -0.051021233, -0.0315744, -0.010878742, 0.0067783445, 0.035955276, 0.024856156, -0.0041872137, 6.5404346E-4, 0.043301266, 0.037130635, -0.012207698, -0.006554626, -0.008454566, 0.0229462, -0.010992271, -0.024255121, -0.047281455, -0.013423125, 0.018725595, 0.009636602, 0.019420125, 0.0018932617, -0.01589405, 0.0021937795, -0.009436257, -0.036329255, 0.00949636, 0.025684249, 0.004581226, -0.016601935, -0.024028063, -0.02981136, -6.485131E-5, -0.011139191, 0.00244755, -0.014678622, -0.014117655, 0.0035895174, -0.02195783, 0.003966834, -0.027781196, -0.012154273, 0.028983265, 0.01180033, -0.015533428, 0.024308546, 0.0054894574, -0.031387407, -0.01779065, 0.045758832, -0.013957379, -0.022639003, -0.0075263, -0.03718406, -0.009028888, 4.5411568E-4, 0.010357845, 0.012782021, -0.0046079387, -0.0064377575, 2.2476222E-4, -0.010872064, 0.03908066, 0.024695879, -0.01282209, -0.041805357, 0.027166802, -0.0066314247, 0.003886696, -0.0025944698, -0.0011244372, -0.046159524, 0.009870338, -0.017042695, -0.0031220454, -0.022839349, 0.011967284, 0.008374427, -0.0038933742, 0.0040235985, 0.19414781, -0.005249043, -0.005706498, 0.04185878, 0.036756657, 0.012595032, 0.012888872, -0.0034092069, -7.471205E-4, -0.016802281, 0.0069319424, 0.019006077, -0.0112727545, -0.006951977, 0.030879866, -0.031841524, -0.04501088, -0.01873895, -0.01391731, -0.008521347, 0.0035961955, -0.010150821, -0.0030118555, -0.023360245, 0.019072859, -0.0011077417, -0.041190963, -0.020501988, 0.004036955, 0.009442935, 0.0074328054, -0.008568094, 0.029170254, 0.024508892, -0.044049222, -0.0059602684, 0.017670443, 0.00182648, 0.0036629774, 0.047762286, 0.016762212, -0.013469873, 0.020555412, 0.0061572744, 1.8638882E-5, -0.0028833007, -0.021450289, 0.004454341, -0.01362347, -0.005546222, -0.025537329, 0.007179035, -8.556408E-4, 0.044663616, -0.004387559, -0.034699783, -0.0041003977, -0.0025928002, 0.014304644, -0.0069720116, -0.021450289, 0.030479176, 0.013503264, 0.057004876, -0.008414497, 0.007459518, -0.021129737, -0.014451564, 0.03956149, 0.0020034516, -0.014424851, -0.008240864, -0.006367637, -0.007172357, -0.00372642, -0.025256846, 0.012902228, 0.012241089, -0.004264013, -0.010391235, 0.010645006, -0.0041838745, 0.015960831, 0.007860208, -0.008421175, -0.034993622, 0.017710513, 0.0042807083, 7.371032E-4, -0.0040603285, -0.0046813986, 0.0029901515, -0.010872064, 0.013262849, 0.009282659, -0.0035327529, -0.008855256, 0.029651083, -0.01869888, 0.0030135252, -0.013356344, 0.060958352, -0.010037293, 0.010638328, -0.02812846, -0.00668485, 0.009075636, 0.030292187, 0.009603212, -0.030078486, 0.014571771, -0.028689427, -0.010965559, -0.0025894612, 0.024495535, -0.023480453, 0.0020885982, -0.017283108, -0.011913858, -0.035554588, -0.004390898, -0.01088542, -3.8169927E-4, 0.0014900671, 0.03547445, -0.020301642, -0.012782021, 0.01859203, 0.010237638, -0.009783522, 0.011720192, 2.0597987E-4, 0.011880468, 9.0572704E-4, -0.013823816, -0.00759976, -0.007152322, -0.021637278, 0.0013022436, -0.0055862907, 0.0018682185, 0.027100021, 0.017763937, 0.006220717, 0.038519695, -0.018378329, 0.013556689, 0.0105047645, -0.013797103, -0.0127953775, -0.013797103, 0.017990995, 0.016107751, -0.010518121, 0.02239859, 0.017643731, -0.043167703, -0.017403316, -0.0139707355, 0.02166399, -0.026939746, -0.0068184137, -0.0058200266, -0.0026245215, -0.02309312, 0.007766714, -0.16754198, 0.011860433, 0.016214602, -0.010324454, 0.031654533, 0.002407481, 0.027220229, -0.010511443, -0.01172687, -0.004928491, 0.02206468, -0.0016503432, -0.03803887, 0.015239588, 0.014104299, 0.013356344, -0.0047915885, -0.010872064, 0.020488631, 0.0060270503, -0.01366354, -0.0028632663, 0.009890373, -0.0032923387, 0.025149995, 0.017363247, 0.003846627, 0.033310723, 0.009449613, -0.0031871574, 0.0062040216, -0.026378779, 0.032963455, -2.2591003E-5, 0.020355068, 0.0012671831, -0.0153330825, 0.0055762734, -0.002450889, 0.029490808, -0.011993997, 0.010898776, 0.022385232, 1.606935E-5, 0.026498986, 0.017977638, -0.023213325, -0.0048416746, -0.009462969, -0.03039904, 0.05040684, -0.009055601, 0.02078247, -0.017189614, 0.03144083, 0.021797553, -0.013449838, 0.006835109, 0.016027613, -0.01917971, -0.017910857, -0.0021203195, -0.003846627, -0.0085614165, 0.011539881, -0.035608012, -0.012067457, 0.042873863, -0.021036241, -0.004668042, -0.010785247, 0.004698094, 0.0100840395, 0.01391731, 0.022492083, -0.0037798453, -0.009930442, -0.017670443, 0.025537329, -0.012474825, -0.008507991, 0.031253844, -0.018551962, -0.0035394311, -0.01903279, -0.009629924, 0.007760036, -5.563752E-4, 0.0034693102, -0.007740001, -0.014972461, -0.024615742, -0.0019166353, 0.013102573, 0.007392736, 0.016161175, -0.008588129, -0.007025437, -0.0011160895, -0.0033474336, 0.0036997073, 0.01530637, -0.03480663, 0.013342988, 0.016321452, 8.5647556E-4, 0.03261619, 0.011853755, 0.021850979, -0.002334021, -0.013376378, 0.017256396, 0.017737225, 0.04554513, 0.008888647, 0.010731822, -0.013543333, -0.029544232, 2.7401373E-4, 0.01888587, 0.024041418, -0.01296901, -0.022665715, -0.005319164, -0.019460194, -0.0425266, -0.08109972, 0.0022889434, 0.028368874, -0.0012863829, -0.019353341, -0.019380055, -0.0025861221, 0.02783462, -0.018244766, 0.025884595, -5.7557493E-4, -0.028288737, 0.012180986, 0.010538155, 0.011439708, -0.0046880767, 0.015934119, -0.03237578, -0.017857432, 0.035340887, -0.010237638, -0.0133029185, 0.005779958, -0.015920762, -0.002706329, -0.014531702, -0.020835897, 0.037103925, 0.0076331506, 0.012975688, -0.006110527, -0.028262023, 0.017844075, -0.010945524, -0.0130424695, -0.018057777, 3.3208253E-5, -0.009676671, 0.02962437, -0.01939341, -0.0018231409, 8.890316E-4, 0.01307586, -0.003696368, -0.020034516, -0.025483904, -0.013903954, 0.008935394, -0.015413221, -0.0052991295, -0.016495084, -0.0062641255, -0.0057298713, 0.013409769, 0.015680349, -0.013997449, 0.0029534216, 0.0053024683, -0.011566593, -0.0012546616, -0.017069407, 0.00723246, 0.023213325, -0.012321227, 0.011466421, -0.01011743, 0.009763488, 0.017617017, 0.017416673, -0.018418398, 0.0029200306, 0.016615292, -0.0027681023, 0.026058227, -0.033925112, -0.014718691, -0.010311098, -0.013690253, 0.035795003, 0.0018031064, -0.03149426, -0.013249493, 0.007659863, -0.04861709, 0.020141367, 0.023373602, 0.012528251, -0.022011254, 0.01724304, -0.06453785, 0.021436932, 0.021637278, 0.049258195, 0.004056989, -0.018498536, -0.03656967, 0.01314932, 1.0105952E-4, -0.017136188, -0.010144143, -0.040629998, -0.014745404, -0.07500923, 0.031146994, 0.017737225, -0.02669933, -0.006384332, 0.0013656862, 0.033818264, -0.037932016, 0.02078247, -0.0066080512, 0.002783128, -0.0016929166, -0.0032205484, -0.0019416785, -0.017697155, -0.0117669385, 0.013703609, -0.021183161, 0.022331808, 0.014919036, 0.008828543, 0.00478491, -0.008227508, 0.015239588, -0.031681247, 0.00997051, -0.03269633, 0.020114655, 0.010945524, -0.00120541, 0.015800554, -0.020074585, 0.029383956, 0.045758832, -0.008942072, -0.016775567, 2.1850143E-4, 3.5916045E-4, -0.008775118, -0.015386508, -0.023560591, -0.014277931, -0.017122833, -0.026766112, -0.010257672, 0.0028231973, 0.012595032, -6.356785E-4, 0.00558963, -0.004471036, 0.011920537, 0.0021253282, -0.0020501988, -0.043595105, -0.0031938357, -0.026392136, 0.011145869, -0.011900502, 0.0029367262, 0.01909957, 0.039240938, -0.015907405, 0.023467096, -0.011226007, 0.017470097, -0.022385232, -0.016455015, 0.015974186, 0.008441209, -0.0039768512, -0.0070721842, -0.006287499, 7.6924195E-4, 0.002238857, -0.012134238, 0.010645006, 0.012661814, -0.019259848, -0.0074995873, 0.007105575, 0.006384332, -0.013783746, -0.018137915, 0.0037431153, -0.0027881367, -6.002007E-4, -0.025550686, 6.8910385E-4, -0.012808734, 0.018218054, -0.042553313, 0.024174983, -0.0153330825, -7.820765E-5, 0.015480002, -0.0024926276, -0.023974637, -0.017122833, 0.026979815, 0.012147594, 0.017363247, 0.0010117431, -0.0027046597, -0.014411495, 0.0059636077, 0.012134238, -0.023533877, -0.024575673, -0.004507766, 0.015426577, -0.018405043, 0.010184213, 2.343621E-4, 0.014411495, -0.021036241, 0.034459367, 0.00854806, -0.023400314, -0.03349771, 0.031627823, 0.024856156, 0.022972912, -0.004965221, -0.017443385, 0.03686351, -0.008594807, -0.0063509415, -0.0017129511, 0.010898776, -0.0046647033, 0.007105575, 0.02261229, -0.013903954, -0.010932167, -0.004855031, -0.011680122, -0.015626922, 0.0027480677, 0.002908344, 0.09504374, 0.014545059, 0.007252495, 0.012194342, -0.010003901, 0.0022088054, -0.001139463, 4.649677E-4, 8.022154E-4, -0.013984092, -0.0038733396, -0.0031504275, -0.026165077, 0.025083214, -0.03737105, 0.05834051, 0.014585127, 0.015092668, 0.0019066181, -0.037424475, 0.012394687, -0.004050311, 0.017670443, -0.0060871537, -0.0025360358, 0.029891497, 0.008795152, 0.029143542, 0.00759976, -0.042419747, 0.006825092, 8.518843E-4, -0.026098296, -0.013610114, 0.0023206647, -0.024402041, -0.00993712, -0.014878967, 0.002235518, 0.0034325803, 2.0274513E-4, 0.01570706, 0.0018732272, -0.024241764, 0.019273205, 0.0020451902, -0.00964328, -0.031227132, -0.05150206 ], - "id" : "b2e9c6ca-be16-4d5b-bca2-b0a04914bcad", - "metadata" : { - "name" : "Axiom D8 E-Mountain Bike" - }, - "text" : "price: 1399.99\nname: Axiom D8 E-Mountain Bike\nshortDescription: The Axiom D8 is an electrifying mountain bike that is built for adventure. It boasts a light aluminum frame, a powerful motor and the latest tech to tackle the toughest of terrains. The D8 provides assistance without adding bulk to the bike, giving you the flexibility to ride like a traditional mountain bike or have an extra push when you need it.\ndescription: ## Overview \nIt's right for you if... \nYou're looking for an electric mountain bike that can handle a wide variety of terrain, from flowing singletrack to technical descents. You also want a bike that offers a powerful motor that provides assistance without adding bulk to the bike. The D8 is designed to take you anywhere, quickly and comfortably.\n\nThe tech you get \nA lightweight aluminum frame with 140mm of travel, a Suntour fork with hydraulic lockout, and a reliable and powerful Bafang M400 mid-motor that provides a boost up to 20 mph. The bike features a Shimano Deore drivetrain, hydraulic disc brakes, and a dropper seat post. With the latest tech on-board, the D8 is designed to take you to new heights.\n\nThe final word \nThe Axiom D8 is an outstanding electric mountain bike that is designed for adventure. It's built with the latest tech and provides the flexibility to ride like a traditional mountain bike or have an extra push when you need it. Whether you're a beginner or an experienced rider, the D8 is the perfect companion for your next adventure.\n\n## Features \nBuilt for Adventure \n\nThe D8 features a lightweight aluminum frame that is built to withstand rugged terrain. It comes equipped with 140mm of travel and a Suntour fork that can handle even the toughest of trails. With this bike, you're ready to take on anything the mountain can throw at you.\n\nPowerful Motor \n\nThe Bafang M400 mid-motor provides reliable and powerful assistance without adding bulk to the bike. You can quickly and easily switch between the different assistance levels to find the perfect balance between range and power.\n\nShimano Deore Drivetrain \n\nThe Shimano Deore drivetrain is reliable and offers smooth shifting on any terrain. You can easily adjust the gears to match your riding style and maximize your performance on the mountain.\n\nDropper Seat Post \n\nThe dropper seat post allows you to easily adjust your seat height on the fly, so you can maintain the perfect position for any terrain. With the flick of a switch, you can quickly and easily lower or raise your seat to match the terrain.\n\nHydraulic Disc Brakes \n\nThe D8 features powerful hydraulic disc brakes that offer reliable stopping power in any weather condition. You can ride with confidence knowing that you have the brakes to stop on a dime.\n\n## Specs \nFrameset \nFrame\tAluminum frame with 140mm of travel \nFork\tSuntour fork with hydraulic lockout, 140mm of travel \nShock\tN/A \nMax compatible fork travel\t140mm \n \nWheels \nWheel front\tAlloy wheel \nWheel rear\tAlloy wheel \nSkewer rear\tThru axle \nTire\t29\" x 2.35\" \nTire part\tN/A \nMax tire size\t29\" x 2.6\" \n \nDrivetrain \nShifter\tShimano Deore \nRear derailleur\tShimano Deore \nCrank\tBafang M400 \nCrank arm\tN/A \nChainring\tN/A \nCassette\tShimano Deore \nChain\tShimano Deore \nMax chainring size\tN/A \n \nComponents \nSaddle\tAxiom D8 saddle \nSeatpost\tDropper seat post \nHandlebar\tAxiom D8 handlebar \nGrips\tAxiom D8 grips" - }, - "bc6e7f0e-0336-4c6e-8026-87e64752d903" : { - "embedding" : [ 0.042389467, -0.003991306, -0.0050565763, -7.695542E-4, 0.01696132, 0.0060699666, -0.019493068, -0.010299921, -0.022522863, -0.03870944, 0.021236237, 0.022273839, 0.0062048547, 0.01589605, -0.0014405362, 0.01873216, 0.0095736, -0.02538664, 0.00827314, -0.03873711, 0.007318547, -0.001121474, -0.026908457, 0.004472061, -0.022730382, 9.2865305E-4, 0.033230904, -0.003425813, 0.014132128, -0.016449437, 0.021623608, 0.022384515, -0.0023224973, 0.004409805, 0.01722418, -0.013765508, -0.0035191972, -0.024833255, 0.026133714, -0.0035122798, 0.027143646, 0.01415288, -0.014747771, -0.007948025, -0.004364842, 0.027780041, 0.025870856, 0.019064192, 4.255786E-5, 0.0014950103, -0.006855085, 0.034669712, -0.015093639, 0.011185341, 0.0015564017, -0.034143995, 0.015439505, 0.016186578, 0.016656958, 0.0045689037, -0.020170966, 0.022564366, -0.029689228, -0.005858988, -0.03826673, -0.02874847, 0.029689228, -0.0032926544, -0.0019455021, 0.026936125, 0.015813041, 0.021927971, 0.032954212, 0.009407584, 0.012575726, -0.019050358, -0.0018970808, 0.0037353642, 0.003724988, 0.0044616847, 0.028886816, -0.015702365, -0.014429573, 0.0027686658, 0.011745645, 0.0025818974, 0.007270125, 0.014194384, -6.554181E-4, -4.8940186E-4, 0.01740403, 0.008957957, 0.010521276, 0.00926232, 0.0130391875, -0.008868031, -0.010203078, -0.013308964, 4.2152547E-4, -0.03356294, -7.323735E-4, 0.0038910042, -0.0076367445, -0.013122196, -0.027309662, -0.024473552, -0.019465398, -0.0034621293, 0.0025161828, -0.004817928, -0.03087901, 0.025358973, 0.008183215, 0.035140093, 0.01230595, -0.021097891, 0.029301856, 0.016905982, 0.019036522, -0.024307536, 0.041144345, 0.022301508, 0.01714117, -0.02783538, 0.00398093, 0.021222401, -0.019423893, -0.020074124, -0.011987752, -0.0021409171, 0.019064192, 0.0035157385, 0.020253975, 0.007000349, 0.0013955736, 0.024985436, 0.0059558307, 0.020461494, -0.023740314, -0.007505315, 0.0010592178, 0.021609774, -0.002073473, 0.015245819, -0.008605172, -0.006906965, -0.02825042, -0.003548596, 0.015826875, -0.023145422, 0.007297795, -0.0042057433, 0.033701286, 0.023117755, 0.009462923, 0.01896735, -0.0042230366, 0.018718325, -0.010182326, -0.018151103, -0.018510805, 0.027987562, 0.0069242585, -0.029329525, 0.028112074, 0.030740663, 0.0061979378, -0.029689228, -0.019714423, -0.014208218, -0.0057171825, 0.016670791, -0.031045027, 0.0064158337, 0.007609075, 0.0184693, 0.014277392, -0.019493068, -0.012202189, 0.010071648, 0.011302935, 0.018787498, 0.019064192, 0.015757702, -0.014471077, 0.007021101, 0.007304712, -0.013654831, 0.013447311, -0.013668666, 0.04061863, -7.3118455E-5, 0.0141044585, 0.0018659527, -0.5989864, -0.036634237, -0.006018087, 0.0070245597, 0.00122264, 0.016933652, 0.0074707284, 0.019991115, -0.0015702364, 9.701571E-4, -0.013385055, 0.025663335, 0.0042887516, -0.008771189, -0.022024814, -0.0304363, 0.0049908618, -0.0052813897, 0.0034240838, -0.011026242, -0.034697384, -0.005343646, -0.027171316, 0.022910234, -0.0052052992, -0.014457243, 0.0105489455, -0.007138696, -0.010590449, -5.062629E-4, -0.023823323, 0.05965515, 0.006215231, -0.012810916, 0.03527844, -0.044021957, 0.014678597, 0.015356497, 0.02260587, 0.02133308, -0.030131938, 0.001258956, -0.017307186, -0.017500874, -0.0071871174, 2.722352E-5, 0.03834974, 0.00317333, -0.0033929558, -0.049140792, 0.013322799, 0.007221704, 0.025040774, 0.015550182, -0.0059662065, -0.022453688, 0.021485262, -0.0032459623, 0.0153841665, 0.015813041, -0.005091163, 0.015370332, 0.0017206885, -0.0053713154, -0.013073775, 0.031183373, -0.022854894, -0.0055961288, -0.009213898, -0.008183215, -0.00899946, 0.01961758, -0.0087781055, 0.01454025, 0.015093639, 0.023477456, 0.024764081, 0.009684278, -0.009545931, 0.020973379, -5.754363E-4, 0.016421767, -0.013364303, -0.030685324, 0.05666686, -0.0066406475, -0.020143297, -0.0042956686, 0.019880438, 0.0149552915, 0.014180549, 0.008971792, 0.018317118, -0.02304858, -0.0055788355, 0.035804156, 0.010922481, 0.025179122, 9.0703636E-4, -0.034033317, -0.021194734, 0.013827764, 0.025511153, -0.01696132, 0.0153841665, 0.0018676821, 0.009566682, 0.013198286, 0.01480311, -0.02869313, 0.0026700937, -0.03002126, -0.038903125, -0.0012529034, -0.023352943, -0.033811964, 0.019465398, 0.0074776458, -0.004855973, -0.013129113, 0.0011949707, 4.963192E-4, 0.037076946, 0.002120165, -0.00840457, 2.1522117E-5, 0.03134939, 0.019133365, -0.003389497, -0.016615452, 0.025123782, 0.03649589, 0.051077645, -0.01272099, 0.03696627, 0.005648009, -4.971839E-4, 0.0028776138, -0.010168491, -0.032954212, -0.043330222, -0.0013194828, -0.012548056, -0.04950049, -0.01961758, -0.018621482, 0.0019039981, 0.020392321, -6.2818103E-4, 0.0010177138, -0.018095763, -0.019368555, -0.024321372, -0.0071594478, -0.019659083, -0.01521815, -0.014235888, -0.046263177, -0.031128034, -0.0077128354, 0.016836807, -0.0030246074, -5.015072E-4, -0.03392264, 0.013094527, 0.0012883547, 0.014007616, 0.029882913, -0.02130541, -0.032041125, 0.002197985, -0.0040155165, -0.013634079, -0.0057690623, -0.009933301, 0.015065969, -0.02833343, 0.005523497, 0.016297255, -0.027973726, -0.0041400287, 0.0060561323, -0.047314614, 0.033369254, 0.007602158, 0.009089386, 0.027738538, 0.015951388, -0.014692432, 0.021886466, -0.0058935746, -0.011219927, -0.032898873, -0.020779692, -0.0062498176, -0.0040570204, -0.0058935746, -0.010486689, 0.008190132, 0.021872632, 0.027115976, 0.010175409, 0.03995456, 0.008605172, 0.0013808742, -0.027572522, 0.02419686, -0.0019645249, 0.010334508, 0.016836807, 0.027323497, -0.030076599, 0.009179312, -0.012589561, -0.011538125, -0.0040362687, 0.0073669683, 0.021429922, -0.0032355862, -0.0055477074, -0.022370681, 0.0038702523, 0.035831828, -2.1173549E-4, -0.010687292, 0.011206092, 0.010389846, 0.04178074, -0.0028724258, -0.007685166, -0.0071110264, 0.018579978, 0.034088656, -0.01412521, 0.011060828, 0.014277392, 0.03395031, -0.0074707284, 0.030076599, -0.0013281294, 0.030214945, 0.01498296, 0.026009202, -0.026700936, 0.033258576, 0.008729684, 0.028361099, 0.010542028, 0.02177579, 0.013523402, 0.0076505793, -8.707203E-4, -0.01521815, 0.030685324, 0.008535999, 0.0062394417, 0.001449183, 0.009843376, -0.0068274154, 0.020433825, 0.006851626, 0.012589561, 0.027724702, 0.020184802, 0.02458423, -0.0317921, -0.026839282, -0.0073669683, -0.017570047, -0.035195433, -0.0063224495, -0.022052484, 0.009103221, -0.0096289385, 0.01586838, -0.0035036332, 0.022204665, -0.003166413, 0.03489107, 0.052046075, 0.013239791, -0.013744757, 0.0010082024, 0.008992543, -0.015259654, -0.0031335554, 0.009089386, 0.0076990006, -0.00533327, 0.011482786, 0.014844614, 0.010023227, -0.009103221, -0.0037146122, 0.007152531, 0.005426654, 0.021111725, -0.023034746, -0.009379914, -0.0019282089, -0.01459559, 0.007899604, 0.015785372, -0.031238712, 0.033147898, -0.025691004, -0.0040328098, -0.037104618, 0.024293702, -0.0013410995, 0.003600476, -0.025109949, 0.0040293513, 0.0040466445, -0.009047882, -0.0011154212, 0.015550182, -0.01917487, 0.02065518, -0.04216811, -0.017971251, -0.012139933, -0.016532445, -0.009103221, 0.011379026, 0.01956224, -0.0068896716, 0.0075606536, -0.031072697, -0.009898715, -0.0024694907, -0.011413612, 0.007747422, 0.014443408, -0.013571823, 0.0016912898, 0.010576614, -0.021084055, -0.010064731, -0.009829542, -0.016864477, -0.03489107, 0.020752024, -0.010811804, -0.035112422, -0.011372109, 0.0034154372, 0.030851342, 0.00967736, -0.005706806, 0.0051188325, 0.00944217, 0.012976931, -0.02718515, -0.025331303, 0.005291766, 0.012527305, 7.549629E-5, -0.044962715, 0.019340886, 0.010064731, -0.004198826, 0.035638142, -0.010064731, -0.014720102, -0.0031128034, 4.656235E-4, 0.013668666, 0.0077543394, 0.0012632794, 0.010514358, 0.007899604, 0.01852464, -0.018261781, 0.030131938, -0.010050897, -0.023159258, -0.010293003, -0.020959543, 0.025746344, -0.003776868, -0.028084405, -0.027074473, -0.028098239, -0.0015140331, -0.034143995, 0.011683389, -0.003373933, 0.010071648, -0.008646676, -0.028070569, -0.0057240995, -0.0026908456, -0.018925846, -0.03956719, -0.0064192927, -0.021388419, 0.0088472795, 0.018275615, 0.003425813, 0.024183024, -0.03229015, -0.010797969, 0.012209107, -0.037215296, 0.007117944, -0.03004893, -0.0052848486, -0.017528541, 0.0066821515, 0.01761155, 0.003998223, 0.012838585, 7.950619E-4, 0.0072908774, -0.010023227, 0.024100017, -0.020489164, 0.0018192607, 1.1770288E-4, 0.02523446, 0.02000495, 0.009843376, -0.011178423, 0.01433273, -0.0073808027, 0.012914675, 0.02913584, 0.010403681, -0.0018901634, 0.01045902, 0.0017985087, -0.0019403142, -0.019423893, -0.013025353, 0.010382929, 0.008363065, 0.005260638, -0.015619356, 0.006865461, 0.02629973, 0.016670791, 0.009283071, -0.01545334, 0.0037007774, -0.026050705, 0.037602667, -0.005613422, -0.01716884, 0.013689418, -0.001779486, 0.013910773, -0.0021132478, 0.029882913, 0.04559911, 0.01873216, -0.009324576, -0.007304712, -0.030380962, -0.026936125, -0.0053263525, -0.012077677, 0.016477106, -0.028098239, -0.0077197524, 0.0032978423, 0.011877075, 0.013350468, -0.0028205458, -0.01063887, -0.019576075, 8.4694196E-4, -0.0042956686, 0.037547328, -0.03356294, 0.0033791212, -0.016380263, -0.02629973, -0.022453688, -0.016172742, -0.031045027, -4.2217397E-4, -0.0046864985, 0.009220815, 0.022149326, 0.0143880695, -0.009788037, -0.0061771856, 0.004219578, 0.0021755036, -0.026894622, -0.016850643, -0.025331303, 0.0022567825, 0.050275236, 0.0095736, 0.0025369348, -0.0111922575, 0.00554079, 0.023103919, -0.0143880695, -0.007837348, -0.014145962, -0.044187974, 0.0118286535, -0.014996795, 0.0073392987, -0.024058511, -0.04399429, -0.03165375, 0.04227879, -0.013557988, 0.014180549, 0.0018348247, -0.008619007, -0.011503538, 0.02627206, -0.007643662, 0.020682849, -1.9746847E-4, -0.026133714, -0.01852464, -0.02458423, 0.018137269, -0.01586838, 0.018123433, -3.039847E-5, -0.014927622, -0.005108456, 0.00998864, -0.002996938, -0.018815167, 0.011558877, 1.744467E-4, -0.016034396, -0.012229859, -0.025843186, -0.039069142, 0.0034275425, 0.002068285, -0.005928161, 0.010452102, -0.036329877, -0.0073669683, 0.023864826, 0.0053263525, 0.0055684596, -0.011538125, 0.024349041, -0.0022982867, -0.027614025, -0.025358973, -0.022107823, 0.007733587, 5.624663E-4, 0.03361828, 0.029799905, -0.020309314, -0.015799208, 0.011572711, 0.0065126764, 0.0048974776, -0.027918389, 0.0044582263, 0.013281295, -0.0076159923, -0.04388361, -0.009829542, -0.022107823, 0.016490942, 0.0134680625, -0.008321561, 0.011662637, -0.0020613677, -0.0013004601, 0.03439302, -0.020184802, 0.0047729653, -0.0032355862, -0.0143604, 0.011614216, -0.0010185784, -0.00122264, 0.001750952, -0.004932064, 0.04606949, 0.0020336984, 4.3233382E-4, -8.568856E-4, -0.0014612883, -0.02180346, -0.0050462005, -0.016255751, 0.031543076, -8.9838967E-4, -0.0031179914, -0.008321561, -0.018330954, -0.015301159, -0.012831667, -0.020253975, -0.019894272, 0.0046864985, -0.013274377, 0.0055027446, -0.0035831826, -0.020253975, -1.1629779E-4, -0.008833445, -0.027918389, -0.02656259, -0.020669015, -0.009850293, -0.03787936, -0.008805775, -0.035444457, 0.032705188, 0.039290495, -0.0017423052, -0.030768333, 0.014747771, 0.03134939, -0.013855434, 0.015647026, 0.0062290654, -0.0029848327, -0.03732597, 0.011130001, 0.0033358878, 0.0112614315, 0.020503, 0.0059523718, -0.009552848, -0.013129113, 0.012707155, -0.005634174, 0.005910868, -0.02721282, -0.0069242585, -0.0038114549, 0.013281295, -0.020046454, -0.021927971, 0.019271713, -0.016324924, 0.0028153579, 0.0141044585, -0.022758052, 0.024003174, -0.00613914, -0.0070902747, 0.005174171, -0.0042472472, -4.3644098E-4, -0.007484563, 0.0053367284, 0.0022256544, -0.010991655, -0.027918389, -0.01631109, -0.021623608, 0.02744801, -0.020184802, -0.0010920753, 0.024390545, -0.0013886562, -0.021194734, 0.025607996, -0.0045654452, -0.021526765, 0.022854894, -0.020433825, -0.011199175, -0.02999359, -2.4578176E-4, 0.04294285, 0.022121657, -0.0036869429, -0.005675678, -0.0061045536, -0.04139337, -0.0061010947, 0.0160759, 0.024653403, 0.012582643, 0.016380263, -0.0060215453, 0.00814171, 0.008266223, 0.033811964, -0.042444803, -0.009926384, 0.011130001, 0.0335076, 0.008909536, 0.018829003, -0.024030842, -0.02416919, 0.0051914644, 0.029661559, 0.032815866, 9.1741234E-4, 0.012382041, 0.012181438, 0.00814171, -0.027849214, 0.038598765, 0.0086328415, -0.0021443758, -0.047093257, -0.020530669, 0.0046034902, -0.00848066, -0.0026649057, 0.0019195621, -0.022675043, -0.0014846344, -0.006118388, 0.008978709, -0.01849697, 4.924282E-4, 0.003280549, 0.015024465, -0.005364398, -0.01589605, 0.056473173, -0.0020406155, -0.005184547, 0.020101793, 0.024570396, -0.027600192, -0.0076990006, 0.006152975, -0.022882564, -0.0030799462, -0.005066952, 0.022356845, 0.014886118, 0.010389846, -0.010569697, -0.023325274, -0.017238013, 0.017376361, 0.009172394, -0.022771887, -0.021416089, 0.008619007, -0.011164589, 0.016573949, 0.014111375, -0.010230747, -0.04263849, 9.321117E-4, 0.01329513, -0.027932223, -0.01888434, 0.035444457, -0.0058762813, 1.08083455E-4, -0.003105886, 0.18748762, 0.014747771, -0.014139045, 0.035693478, 0.0107703, -0.008909536, 0.015287324, 0.010825639, 0.01610357, -0.0031300967, 0.035001747, 0.01938239, 0.002692575, 0.002749643, 0.0065887673, 0.006433127, -0.06657249, -0.021582104, -6.701174E-4, -0.0037595748, 0.0065541808, 0.005481993, -0.008024115, -0.03566581, 0.028499445, 0.009504426, -0.0039705536, -0.017500874, 0.002661447, 0.021678947, 0.0033843091, -0.016892146, -0.006381247, 0.0055027446, -0.021817293, -0.009691195, 0.013758591, 3.3928072E-6, -0.010514358, 0.03444836, -0.0044755195, -0.028015232, 0.020392321, -0.03184744, -0.0074084722, -1.4677733E-4, -0.013412724, 0.013412724, -0.028112074, 0.0049701096, -0.025621831, 0.0136755835, 0.0061149294, 0.030823672, -0.0076920833, -0.011240679, 0.029744565, -0.010867143, -6.649294E-4, 0.010777217, -0.0022308424, 0.029716898, -0.004306045, 0.009608187, -0.009511344, -0.0070591467, -0.03264985, -0.028208917, 0.022509027, -0.008259305, -0.020074124, -7.7430985E-4, 0.008881866, 0.0023640012, -0.009843376, -0.015148977, 0.0076229097, 0.008757354, -0.0033514518, 0.017943583, -0.003342805, -0.013544153, 0.011856322, -0.008086371, 0.008522164, -0.032124132, -0.005364398, 0.0038287484, 0.009967889, -0.011551959, 0.006436586, -0.0045066476, -0.002996938, 0.00538515, -0.023007076, -0.0035970174, -0.03561047, 0.02910817, -0.009082469, -0.007242456, -0.021817293, 0.036080852, -0.0017146359, -5.992147E-4, -0.013758591, -0.01032759, -0.0060872603, 0.011379026, -0.011067745, -0.036136188, -0.018621482, -0.0382944, -0.006163351, -2.4859194E-4, -1.2915973E-4, -0.0040258924, 0.011641885, -0.023975505, 0.0013177535, -0.013142948, 0.035084754, -0.016477106, 0.008473743, 0.007941107, 0.020378487, -0.020143297, -0.013350468, 0.014194384, -0.013011519, -0.012554974, 0.0109086465, 0.011351356, -0.0065472634, -0.01828945, -0.024003174, -0.008452991, -0.011773314, 0.005139584, -0.0063881646, -0.017694559, 0.004738379, 0.008238553, 0.0081347935, -0.014761605, 0.011455117, -0.022329178, -0.008418404, -0.005156878, -0.015771538, -0.0043717595, -0.018427797, 0.004620784, 0.002026781, -0.0090617165, 0.037076946, 0.014401904, 0.00413657, -0.057164907, 8.1365224E-4, 0.013848517, -0.027959893, -0.008619007, 0.020738188, -0.0039947643, -0.009276154, -0.026521085, -0.17553444, 0.01173181, 0.028388768, 6.381247E-4, -0.0031404728, 4.924282E-4, 0.048117023, 0.01917487, -0.030989688, 7.721482E-4, 0.014429573, -0.004617325, -0.021595938, -0.03472505, -0.0101961605, -9.571871E-4, -0.007449976, 0.0054301126, 0.014401904, 0.0105489455, 0.008750437, -0.01610357, 0.015287324, -0.025068443, -0.017929748, 0.01152429, -2.2070641E-4, 0.048144694, 0.020959543, -0.0050462005, -0.0112614315, -0.032124132, 0.016947486, -0.023007076, 0.024155354, 0.021844963, -0.018012756, 0.014180549, -0.0019852768, 0.030270284, 0.0024020467, 0.014581755, 0.012347453, 0.0022170078, 0.013530319, 0.016988989, -0.005035824, 6.606061E-4, 0.016643122, -0.00923465, 0.050745614, -0.03132172, 0.021623608, -0.03361828, 0.027531017, -0.0092069805, 0.014415739, 0.013848517, 0.021969475, -0.022343012, -0.030546978, -0.023062415, 0.01305994, -0.0036385213, -0.027102143, -0.026963795, -0.039484184, 0.02083503, -0.024694907, 0.005765604, -0.026756275, -0.0020440742, 0.002047533, 0.0065023005, 0.031985786, 0.014650928, -0.0033618277, -0.009110138, 0.03572115, 0.015979057, -0.0070176423, 0.045875806, 0.011185341, 0.01935472, -0.0048213867, 0.0069104237, -0.012043091, 0.008598255, -0.008397652, -0.03834974, -0.01592372, -0.024252197, -0.0072770426, -0.017943583, 0.0031439315, 0.0034655877, -4.974541E-5, -0.008888783, 0.015909884, 0.0060007935, 0.005751769, -0.020696685, -0.020129463, -0.0033099477, 0.03217947, -1.8147212E-4, 0.0091308905, 0.029301856, 0.011226844, 0.008798858, -0.016643122, 0.0124719655, 0.01586838, 0.025995368, -0.014194384, 0.024335206, -0.028610123, -0.02721282, -0.0065023005, 0.008840362, 0.0143188955, 0.0033255117, -0.007705918, -0.0036350626, -0.008874948, -0.020544503, -0.08129259, 0.0032563382, 0.02304858, 0.013765508, -0.008307726, 0.02913584, -0.0035364905, 0.008591337, -0.0035399492, 0.031598415, -0.019008853, -0.003296113, -0.013101444, 0.017846739, 0.014733937, -2.6999248E-4, 0.018220276, -0.026783945, -0.022993242, 0.022993242, -0.008432238, -0.04532242, -0.019257877, 0.008695098, -0.011330605, 0.0117594795, -0.015674695, 0.034227002, 0.028416436, -5.1836827E-4, -0.0039532604, -0.022343012, -0.0011750833, 0.010562779, -0.0131083615, -0.015107472, -0.017390195, -0.0027150563, -0.0016186578, -0.03834974, -0.0031906236, 0.0069795973, 0.013419641, -0.003270173, -0.027655529, -0.010756466, -0.0139591945, 0.03917982, 0.0026268603, -0.01498296, 0.015107472, -0.023242265, 0.0057033477, -0.026548754, -0.0036454387, -0.021665111, 3.450024E-4, -0.019935777, -0.022439854, 0.0052018403, -0.020309314, 0.019410059, 9.6064573E-4, 0.030740663, 0.0071110264, -0.0072908774, -0.0040328098, 0.01477544, 0.029329525, -0.0021945264, -0.0048455973, 0.021665111, -0.01272099, 0.036689576, -0.021111725, 0.028527115, -0.005416278, -0.02538664, 0.0052744728, -0.0021789623, -0.02021247, -0.0068170396, 0.008203967, -0.017708393, 0.010009392, 0.04349624, 0.009317658, 0.018759828, 0.011427447, -0.016739964, -0.0019697128, 0.019700587, 0.06181336, -0.010818722, -0.0043613836, 5.7197764E-4, 0.0035278439, -0.0010938046, -0.029689228, -0.0063570365, -0.05921244, -0.0047902586, -0.06917341, 0.025870856, 0.025358973, -0.01165572, -0.0036973187, -0.0020181343, 0.031432398, -0.017985087, 0.017888244, 0.015398001, -0.014180549, 0.018068094, -0.017777566, 0.017556211, 5.166389E-4, -7.721482E-4, 0.02414152, 0.012236776, 0.011413612, 0.035361446, 0.011053911, 0.00429221, -0.0047937175, 0.017985087, -0.0031404728, 0.020489164, -0.0047868, 0.012603396, 0.013910773, 0.015716199, 0.03649589, -0.02127774, 0.021014882, 0.0167538, -0.00738772, 0.0050877044, 1.46345E-4, -0.0017094479, -0.016324924, -0.03995456, -0.02789072, -0.0167538, -0.006886213, 0.0014145962, -0.03256684, 0.018649152, 0.032815866, 0.021554435, 0.025206791, 0.046429195, 0.012921593, 0.0013583929, -0.0015097096, -0.018787498, -8.1797555E-4, -0.02455656, -0.0143604, -0.011150754, 0.02136075, -0.0032476916, 0.07614609, 0.010963986, -3.5300056E-4, -0.028208917, -0.008985626, -0.023837157, -0.015813041, 0.018358624, 0.0057898145, -0.02419686, -0.019493068, -0.0076159923, 0.00369386, 0.0076920833, 0.0031958115, -0.0018538474, 0.006184103, -0.014498747, -0.021236237, 0.006467714, 0.028803809, -0.01433273, -0.013758591, 0.01173181, 0.0043821353, -0.010832556, -0.034199335, 0.025317468, -0.008736602, 0.0055684596, -0.032373156, 0.012610313, -0.004482437, -0.009933301, 0.027503347, -0.011448199, -0.027378837, -2.7085713E-4, 0.018649152, 0.032262478, -0.01917487, 0.0065368875, -0.0074292244, -7.263208E-4, 0.011275266, 0.030408632, -0.015467174, -0.015176646, 3.670514E-4, -0.02502694, -0.025566492, 0.0028637792, 0.009566682, 0.011282183, -0.0071802, -0.008702015, -0.0028637792, -0.008259305, -0.032926545, 0.029772235, 0.03533378, -6.545534E-4, 0.007643662, 8.145169E-4, 0.024736412, -0.005174171, 0.009158559, -0.006664858, 0.0027842298, -0.023629637, 0.0020042995, -0.0076159923, 0.005675678, -0.0027219737, -0.019755926, 0.004658829, 0.0092069805, 0.01766689, 0.0019074568, 0.09700879, 0.014623259, -0.017085832, -0.0061010947, -0.01274866, 0.02611988, 0.029440204, -0.036855593, -0.01893968, -0.03879245, 0.008868031, 0.01209843, -0.037132286, -0.0043129623, -0.017002825, 0.026106045, 0.00658185, -0.0046415357, -0.009760369, -0.011233762, 0.02452889, -0.011302935, 0.012520387, -0.017957417, 0.0073116296, 0.0064850072, 0.03173676, 0.024847088, -0.0075122323, -0.048753418, 0.022370681, -0.008930287, -0.017680723, -0.021955641, -0.00637433, -0.026313566, -0.009483675, 0.015370332, 0.017929748, -0.011302935, 0.0074568936, 0.007775091, -0.010272251, -0.020669015, -0.0019697128, -0.008487578, -0.009303824, -0.031985786, -0.070390865 ], - "id" : "bc6e7f0e-0336-4c6e-8026-87e64752d903", - "metadata" : { - "name" : "Velocity X1" - }, - "text" : "1 | 100.1 | 101.0 |\n| L — Standover | 75.2 | 78.2 | 81.1 | 84.1 |\n| M — Frame reach | 37.5 | 38.3 | 39.1 | 39.9 |\n| N — Frame stack | 53.3 | 55.4 | 57.4 | 59.5 |\ntags: [bicycle, touring bike]" - }, - "dcd1f2d6-4a5e-4487-af5a-9240b172376e" : { - "embedding" : [ 0.015681244, 5.9600925E-6, -0.024264093, -0.01588367, 0.0018741245, 0.019945677, -0.013636745, -0.05581551, -0.0055228476, -0.024156133, -0.0018049624, 0.011349333, -0.024722924, -0.005026905, -0.014385719, 0.0016995324, 0.021416638, -0.012948497, -0.022037411, -0.01247617, 5.423322E-4, 0.009298087, -0.011970106, -0.011558507, -0.0028137171, -0.013447814, 0.029905023, -0.0055970703, 0.015843185, -0.0067812605, 3.1059692E-4, 0.023103518, -0.028663479, -0.011774428, -0.0142372735, 0.007638196, 3.7512011E-4, 0.008103775, 0.03190229, 0.0041261106, 0.015951145, -0.0026905749, -0.017368125, -0.009075418, -0.008447899, 0.013724462, 0.002928425, 0.0044364966, 0.015559788, 0.010701572, -0.021011787, 0.027286984, 0.0034985908, 0.0038865732, -0.012523402, -0.01326563, 0.021740519, 0.012030833, 0.039351556, 0.019135976, -0.013650239, -1.3347444E-4, -0.04126785, 0.0029722839, -0.045937136, -0.011302101, -0.018663649, 0.008630082, 0.014358729, 0.018312778, 0.021861974, 0.013042962, 0.017948411, 0.0017121839, 2.2182483E-4, -0.02933823, -0.0063055605, 0.01465562, 0.021673044, 0.009325077, 0.03468227, -0.028825419, -0.006990434, 0.012719081, 0.007995815, 0.0108905025, 0.0011580436, -0.021888966, -0.027327469, 0.0018572557, 0.008373676, 0.01724667, 0.020391015, 0.017111719, -0.0073345574, 0.002543816, -0.015384353, 0.013758199, -0.0155867785, -0.025478648, 0.025438162, 0.01037769, -0.0091293985, -0.024466518, -0.040026307, -0.007813632, -0.0037043903, -0.0031342246, -0.0037887343, 0.0053811497, -0.025154766, 0.022874104, -0.0046085585, -0.02048548, -0.0028980612, -2.9246297E-4, 0.0253302, 0.012044328, 0.015843185, -0.01909549, 0.0056679193, 0.025600102, 1.4696948E-4, -0.030390844, -0.008353434, 0.0040282714, 0.0012246754, -0.004453365, 0.021713529, -0.012712333, -0.0037178851, 3.7849386E-4, 0.02620738, 0.0068116244, -0.038973693, 0.031497438, -0.010823027, 0.004514093, -0.04372395, -0.02377827, 0.0356809, 0.021457123, 0.001570486, -0.01097822, -0.013036215, 0.0044398704, -0.020310044, 0.010742057, 0.024183122, 0.009837889, 0.022293815, -0.011133413, 0.009642211, 0.03168637, 0.0025201999, -0.02604544, -0.009055176, 0.011733943, -0.018110352, -0.012172531, -0.0048514693, -0.005188845, 0.00362342, -0.01620755, 0.0405931, 0.036544584, -4.2541025E-5, -0.03497916, 0.0035458233, -0.025289716, -0.0072940723, 0.034358386, -0.015397848, 0.0025269473, 0.010370943, 0.019554323, 0.013758199, 0.009136146, -0.02514127, 0.006393278, 0.042347454, -0.0038865732, 0.011437052, 0.010195508, -0.008792022, -0.008562607, -0.01925743, -0.021538094, 0.009007943, -0.0137784425, -6.874039E-4, 0.010101042, -0.0014751772, 0.008198241, -0.6140786, -0.010593611, -0.009601725, 1.8882522E-4, -0.0076314486, 0.022212846, 0.01016177, 0.0059749316, -0.008960711, 0.008312948, -0.033683635, 0.008724547, 0.006683422, -0.01757055, -0.025249232, -0.03443936, 8.097028E-4, 0.0017307397, 7.6584384E-4, -0.008670568, -0.016679877, -0.012435685, -0.022739153, -0.014858046, 8.7211735E-4, 6.0516846E-4, 0.006680048, 2.814982E-4, -1.0469204E-4, 0.01647745, -0.010728561, 0.059971984, 0.0087178, -0.011281858, 0.033710625, -0.047961395, 0.005968184, 0.016396482, 0.008832508, 0.038865734, -0.010175264, -0.0110322, -0.029878031, -0.014102323, 0.0018420737, 0.031578407, 0.030552784, -0.005985053, -0.007287325, -0.034223437, 0.02604544, -0.0017745986, 0.0016978455, -0.018663649, 0.0041497266, -0.011814913, 0.022739153, -0.0063561667, -0.013771694, 0.0016522997, 0.0160726, 0.017300649, -0.013528784, -0.013461309, -0.014399215, 0.017718995, -0.03757021, -0.008333191, 0.014669115, -0.01898753, 0.017557055, 0.028690469, -0.010748805, 0.015222412, 0.020013154, 0.014763581, 0.02634233, 0.0111604035, -0.016571917, 0.026612232, 0.008373676, 0.01226025, -0.00546212, -0.042185515, 0.043130167, -0.02048548, -0.0023430774, -0.0204315, 0.014196789, 0.012300734, 0.02040451, 0.004288051, -0.008191493, -0.016882302, 3.852414E-4, 0.016140075, -0.006524855, 0.039783396, 0.011619234, -0.017745987, -0.023305945, 0.01176768, 0.017584044, 0.011970106, 0.030093953, 0.0011808166, -0.017179193, -0.007213102, 0.0321452, -0.03846088, -0.004483729, -0.0049155704, -0.028366586, 0.009325077, -0.014183293, -0.027745815, 0.009055176, 0.009257602, 0.028285617, -0.032819953, 0.01342757, -0.014885036, 0.009514008, -0.010957978, -0.010721814, 0.016990263, 0.016855313, -0.0071928594, -0.014696105, -0.007516741, 0.011234626, 0.010370943, 0.025478648, -0.02010762, 0.022820123, 0.023144005, 0.008953963, -0.0014515609, 0.012469423, -0.026828151, -0.039270584, -3.0089734E-4, 0.010802784, -0.022847112, -0.028663479, -0.008191493, -0.0057455157, 0.021484114, -0.02465545, -0.012995729, -0.013258883, -0.00945328, -0.019945677, 0.017584044, -0.0019584685, -0.032685, -0.022563716, -0.022320807, -0.023724291, -0.015870174, 0.021011787, 0.0058231126, -0.01092424, -0.0076044584, 0.0040991204, 0.0049290657, 0.0016404915, 0.031038607, -0.012685344, -0.04062009, -0.016436966, -0.006200974, 0.0013410702, 0.019999659, -0.02163256, 0.0047435085, -0.019284422, -0.017003758, 0.022226341, -0.013818927, 0.006875726, 0.03236112, -0.030498805, 0.011119918, 0.03411548, 0.016531432, -0.0146826105, 0.02214537, -0.0042813034, 0.01247617, 0.0018049624, 0.017975401, -0.020782372, 0.014048343, -0.0064168945, -0.0060255383, 0.025424667, 0.004004655, 0.01647745, 0.02184848, 0.01018876, -0.007881107, 0.0145071745, 0.0059040827, 0.022401776, -0.019378886, 0.010087547, -0.009446532, 0.035815854, 0.020809362, 0.011369577, -0.033008885, 0.0054958574, 0.0041902116, -0.01767851, -0.0033602666, -0.004014776, 0.048636146, -0.019311411, -0.010364195, -0.017165698, 0.016558422, 0.015019987, -0.0097164335, -0.0018454476, 0.028825419, 0.019135976, 0.039351556, -0.011706953, -0.0294192, 0.004284677, 0.036517594, 0.03476324, -0.01877161, 0.002533695, 0.016625896, 0.014088828, -0.014277759, 0.048825078, -0.0033754485, 0.009122651, 0.035222072, 0.0024560983, -0.017786471, 0.005860224, 0.011868893, 0.008204988, 0.02925726, 0.030930646, 0.0076314486, -0.028690469, -0.0029503545, 0.0023582594, -0.0010635783, -0.008272463, -0.012509908, -0.0025691194, 0.014615135, 0.005742142, -0.007611206, 0.007172617, 0.0014017979, 0.039054662, 0.006012043, 0.017395115, -0.01310369, -0.017503075, -0.019540828, 0.012847284, -0.03784011, 0.0021912581, 0.002673706, -9.016378E-4, -0.012941749, 0.019216945, 0.006622694, 0.008360181, -0.010155022, 0.019905193, 0.033197813, -0.0045309616, -0.0155867785, 0.0084006665, 5.060642E-4, -0.0030279509, -0.003156154, -8.172937E-4, -4.3352836E-4, -4.3358108E-5, 0.039189614, 0.008299453, 2.161316E-4, -0.012347967, 0.0065282285, -0.016598906, -0.009406047, 0.030741716, -0.010647591, 0.020822857, -0.0053541595, 0.012098309, 0.0123817045, -0.011504527, -0.012051077, 0.030444823, -0.016801333, 0.004898702, -0.0044702343, 0.0378671, -0.011801418, 0.009021439, -0.031578407, -0.0075234883, -0.02481739, 0.0049290657, 0.01342757, 0.014304749, -0.0037617441, 0.03230714, -0.008778527, -0.014061838, -0.010222497, -0.011545012, -0.029635122, 0.04941886, 0.017233174, 0.0039810385, 0.022388281, -0.017287154, 0.0027327468, -0.025222242, -0.0133331055, 4.4238448E-4, 0.028609497, 0.0060896394, 0.0073210625, -0.0112548685, -0.0045714467, -0.016639393, -0.010148275, -5.6046614E-4, -0.022968568, 0.011248121, -0.006211095, 7.321063E-4, 0.0135085415, 0.009790656, 0.009041681, 0.0011993722, 0.008016057, 0.004723266, 0.0039405534, 0.008724547, -0.020256065, -0.0070916465, -0.017476086, 0.018569183, -0.008980953, -0.036382645, 0.01092424, -0.012003844, 0.012307482, 0.022023916, 0.008549112, 0.015748719, 0.018312778, 0.0069971816, -0.011045695, -4.866651E-4, -0.021376153, -0.0069971816, -0.0020208831, 0.024776904, -0.012233259, 0.031821318, 0.0040586353, -0.02484438, 0.0053541595, -0.010249487, 0.027084557, -0.004355526, -0.018096857, -0.020175094, -0.006383157, -0.012145542, -0.028042706, 0.0063156816, -0.007496498, -0.022185856, 0.004230697, -0.006369662, 0.030012982, 0.0052327043, -0.022415271, -0.034304406, -0.008980953, -0.04148377, 0.018299283, 0.005839981, 0.009176631, 0.007003929, -0.025721557, 0.030120943, 0.021416638, -0.0093992995, 0.021389648, 0.0037043903, -0.023629826, -0.0032792962, -0.015370858, 0.031227536, -0.0063899043, 0.026828151, -0.009824393, 0.025829518, -0.030849675, 0.021146737, -0.005519474, -0.0050842585, 0.002393684, 0.015222412, 0.020903826, 0.0031730228, -0.0072198496, 0.013447814, -0.017948411, -0.015397848, 0.010512641, 0.036841474, 0.0030279509, 0.009945849, -0.019756747, 0.025357192, -0.020863341, -0.021146737, -0.014885036, -0.027367953, 0.0013250449, -0.018177828, 0.016625896, -1.4306858E-4, 0.0014017979, -0.012017339, 0.0013984242, 0.0011487658, -0.046180047, 0.03209122, -0.006524855, -0.01258413, 0.030390844, -0.00874479, 0.0022654808, 0.00365041, 0.007415528, 0.017759481, 0.032819953, 0.007874359, 0.0032185684, -0.031281516, -0.020175094, -0.021052271, -0.005050521, 0.015924154, -0.02618039, -0.015262897, 0.015573284, 7.828181E-5, 0.015910659, -0.016841818, -0.02313051, -0.023197984, 0.0022452383, 0.0040653828, 0.045127433, -0.019311411, -0.0077191666, -0.024560984, -0.018191323, 1.5782878E-4, -0.03255005, -0.0021946318, -0.0020343782, 0.017692005, 0.039054662, -0.0038258457, -0.024507003, 0.0088594975, 0.017017253, 0.01615357, 0.012523402, -0.015384353, -0.007233345, -0.039675437, -0.0060491543, 0.039594464, -7.375886E-4, 0.0070781517, -0.036490604, -0.002830586, 0.017638026, -0.00365041, -0.018407242, -0.022617698, -0.030120943, 0.0112548685, 0.0017999018, -0.0133466, 0.0029098694, -0.045181416, -0.011808165, 0.02906833, 0.0067306543, 0.0126043735, -4.1792472E-4, -0.024560984, -0.023049539, 0.024857875, 0.013150922, 0.011936368, 0.01767851, -0.024264093, -0.040134266, -0.02727349, 0.01757055, -0.011052443, 0.0036605312, 0.01024274, -0.015573284, -0.012631363, 0.0018150837, 0.014291254, -0.002162581, 0.0050538946, -0.0090349335, -0.006292065, -0.021335669, 0.005347412, -0.025694568, 0.012901264, 0.01462863, -0.002744555, 0.022752648, -0.02345439, 0.0076179537, 0.02473642, 0.020768875, 0.036490604, -0.003906816, 0.010431671, 0.013569269, -0.013771694, 0.010634096, -0.040323198, 0.0018150837, 0.011774428, 0.025222242, 0.014304749, -0.00817125, -0.008980953, 0.0062178425, 8.012684E-5, -0.007962077, 0.007415528, 0.0012331099, 0.0017577298, 0.029905023, -0.018299283, -0.005306927, 6.477622E-4, 0.007003929, -0.0019331654, 0.010020072, 0.0029722839, -0.004625427, 0.010674582, 0.018015886, -0.024331568, 0.025829518, 0.00817125, -0.036787495, -0.0036841475, -0.0012221452, -0.032172192, -0.0034328024, -0.0029773447, 0.04366997, -0.010235992, 0.008474889, 0.020714896, 0.0015468696, -0.011585497, -0.0109377345, 0.017853945, 0.027286984, -0.010276478, 0.014196789, -0.015613768, -0.018947044, 0.0044702343, -0.0032590537, -0.014817561, -0.005927699, -0.0027799795, -0.011214383, -0.015627263, 0.008751538, -0.031011617, -0.017948411, -0.023751281, -0.022469252, -0.0059951744, -0.004595063, 0.0050707636, -0.02380526, -0.009183379, -0.014277759, 0.020215578, 0.028474547, 0.023697302, 0.0019399129, -0.008805518, 0.027125042, -0.030201914, 0.0056814146, 0.03443936, 0.005688162, -0.00659233, 0.017948411, 0.016234541, -6.890908E-4, -0.0022435514, -0.014264264, -0.031605396, -0.037273318, -0.015397848, -0.01596464, 0.007962077, -0.019905193, 0.015708234, -0.0064033996, 0.023009054, -0.011261616, -0.021443628, 8.5145305E-4, -0.003906816, -8.413318E-4, 0.0015932589, -0.024021182, -0.007429023, -0.021686539, 0.010370943, 0.0013436006, -0.01890656, -0.023332935, -0.008177998, 0.027691836, -0.006875726, -5.629964E-4, -0.0139673725, -0.005812991, -0.03136249, 0.015519303, -0.01013478, 0.013326358, 0.0064675007, -0.003437863, 0.007962077, 0.032172192, -0.01302272, -0.013447814, 0.005404766, 0.00438589, -0.016585412, -0.021038776, -0.0030313248, 0.040296208, -0.007415528, -0.014750086, 0.004706397, 0.005475615, -0.06450632, -0.0115247695, -0.02939221, 0.031551417, 0.042131536, 0.023751281, 0.0064877435, -0.007820379, 0.027354458, 0.030984625, -0.017125214, -0.005576828, -0.0062751966, 0.02211838, -0.0017476085, -0.004088999, -0.060295865, -0.015168432, 0.0266932, 0.023305945, 0.016787838, 0.011065938, -0.029797062, -2.5345382E-4, -6.7422516E-5, -0.013980868, 0.024048172, 0.018204818, 0.014169798, -0.039378546, -0.011889135, -0.013596259, 0.0028643236, -0.0068588573, -0.0014127627, 0.0027496156, -0.010701572, -0.0022115007, 0.00333665, 0.015735224, -0.027880765, -0.008879741, 0.012010591, 0.016949778, -0.019999659, 0.029689102, 0.013481551, -0.041699693, -0.022914588, 0.012219764, -0.012489665, 5.6721363E-4, 0.013407328, -0.034169458, -0.012577383, 0.0062751966, 0.0057050306, 0.007813632, 0.003562692, -0.0022536728, 0.0100335665, -0.0022992184, 0.03265801, 0.033305775, -0.03873078, -0.045829177, 0.0231575, -0.0053271693, 0.01163273, -0.018096857, 0.012732576, -0.0405931, 0.0014903592, -0.011470789, -0.011598992, -0.02944619, 0.02685514, 0.013764947, -2.5429728E-4, 0.010067305, 0.1936809, 7.5445743E-4, -0.013488298, 0.030039974, 0.016490946, 0.0017096536, -0.014979501, 0.009743423, -8.143417E-4, -0.005816365, 0.015073966, 0.021187222, -0.020067133, -0.0072063548, 0.011180646, -0.012361462, -0.051686026, -0.0146826105, -0.0023413906, -0.011106423, 0.0033197813, -0.0012120238, -0.007725914, -0.039756406, 0.008070038, -0.012638111, -0.024075162, -0.03603177, 0.02340041, 0.008279211, -0.021322172, -0.0057826275, 0.02048548, -0.004173343, -0.038568843, 0.002828899, 0.009736676, 0.024803896, -0.012037581, 0.048960026, 0.005026905, -0.0034547318, 9.750171E-4, 5.4401906E-5, -0.0042981724, -0.0061031347, -0.022833617, -0.0160726, -0.017071234, -0.013980868, -0.033980526, 0.0052934317, 0.0019938932, 0.03443936, 0.012098309, -0.03233413, 0.001570486, -0.016652888, 0.016882302, -2.2477686E-4, -0.022914588, 0.029743081, 0.005337291, 0.03573488, -0.008420909, 0.014885036, -0.009088914, -0.019918688, 0.019972669, 0.019716263, -0.007368295, -0.0064843697, 0.015573284, -0.001061048, -0.003947301, -0.023238469, 0.021996925, -0.009736676, 0.008663819, 0.004446618, 0.017314143, -0.0087650325, 0.011194141, 0.0029621627, 2.2730719E-4, -0.036544584, 0.002177763, -0.0029621627, 0.003960796, 0.0039709173, 0.0018150837, 0.0043082936, -0.010128032, -0.0011563568, 0.020161599, 0.0029216774, -0.0036774, 0.02313051, -0.026220875, -0.009675948, -0.01236821, 0.060781687, -0.002208127, 3.2430282E-4, -0.027300479, 0.008393919, 0.014345234, 0.0321452, 0.009379057, -0.035222072, 0.015438333, -0.020512471, 0.007698924, -0.009709686, 0.015654253, -0.009163137, 0.0014144495, -0.027826786, 0.0012263623, -0.039027672, 0.020053638, -0.008758285, 0.0037853604, -0.0077191666, 0.016598906, -0.021011787, -0.011997096, 0.0069364537, -0.0019888324, -0.026247865, 0.0029891527, 0.020876836, 0.0135557735, -0.01890656, -2.1254698E-4, -0.0076314486, -0.0014802379, -0.020121114, 0.012516655, 0.004001281, 0.025613599, 0.023090024, 0.021915955, 0.0046929023, 0.004783994, -0.033629656, 0.024628459, 0.001166478, -0.017314143, -0.008657072, -0.016598906, 0.009675948, 0.011997096, -0.02931124, 0.013953878, 0.014858046, -0.036814485, -0.028312607, 0.001266004, -0.0059445677, -0.035411, -0.006791382, -0.003367014, -3.3147208E-4, -0.01740861, -0.012671849, -0.17057738, 0.010930987, 0.027637854, -0.004595063, 0.011335839, 0.016544927, 0.014534165, 0.009689443, -0.009972839, 0.0023447643, 0.026126409, -0.008447899, -0.047664504, -0.011261616, 0.018393748, 0.01081628, -0.008360181, -5.174507E-4, 0.013670482, -0.0071523744, -0.0025927357, -0.025208747, 0.008427656, -0.0034007516, 0.012874274, 0.005205714, 0.009115904, 0.04453365, 0.01612658, 0.0013149235, 0.0060356595, -0.023305945, 0.025100786, 0.009655706, 0.0046929023, -0.002874445, -0.003984412, 0.0085895965, -0.0031949522, 0.039324563, 0.012800051, -0.003778613, 0.018083362, 0.008070038, 0.015478818, 0.0139673725, -0.017799966, -0.0068824734, -0.013218397, -0.01719269, 0.05646327, -0.010971473, 0.024965836, -0.009203621, 0.05233379, 0.013515289, -0.0025994834, 0.0035289545, 0.026031945, -0.01628852, -0.03497916, -0.0070714043, 0.0057792533, -0.010930987, 0.009932354, -0.03530304, -0.013764947, 0.038595833, -0.017206185, 0.019837718, -0.0071793646, -0.008657072, -0.015519303, 0.018177828, 0.02898736, -0.0027327468, -0.011828408, -0.025856508, 0.022185856, -0.010020072, 0.0012415443, 0.024412539, -0.014966006, 0.016868807, -0.025708063, -1.7037496E-4, -0.0013149235, 0.0076449434, 0.013090195, -0.008785275, -0.010343953, -0.027543388, -0.005367655, -0.0026787666, 0.0027462419, 0.009041681, -0.00792834, 6.9879036E-4, -0.003579561, 0.0044095065, 0.003211821, 3.6921602E-4, -0.012570635, 7.0216414E-4, 0.046153057, -0.013758199, 0.033602666, 0.025114281, 0.030660745, -0.0014481872, -0.030498805, 0.026126409, 0.007624701, 0.053737275, 0.008474889, 0.02481739, -0.01454766, -0.03497916, 0.017692005, 0.004740135, 0.018042877, -0.030498805, -0.022037411, -0.0034209942, -0.01925743, -0.043076187, -0.08318347, 0.0041126153, 0.041699693, 0.0037516227, -0.018258797, -0.017179193, 0.008522121, 0.028555518, -0.0058264863, 0.030039974, -0.014399215, -0.01877161, -9.066984E-4, 0.0034749743, 0.03141647, -0.005539716, 0.026544755, -0.021443628, -0.030120943, 0.028447557, -0.02201042, -0.020849846, 0.009156389, -0.01923044, -0.010586863, -0.013832422, -0.031443458, 0.018285787, 0.0220644, 0.015532798, 3.6188863E-5, -0.02762436, 0.016248036, 0.0019264178, -0.006862231, -0.0056510507, -0.026882133, -0.0014456569, 0.003663905, -0.02947318, 0.011437052, -0.0066699265, 0.010397933, -0.020498974, -0.025303211, -0.014102323, -0.008630082, 0.030471815, -0.0016776029, -0.01342757, -0.010728561, -0.01160574, -0.005961437, -0.011470789, 0.015465323, -0.02302255, 0.013144175, 0.0035289545, -0.0043622735, 0.012145542, -0.009540997, 0.0051854714, -0.0030886787, -0.0068554836, -0.005576828, 0.0021322174, 0.026409805, 0.022320807, 0.024938846, -0.009999829, -0.01302272, 0.0012170845, -0.003862957, 0.028717458, -0.039675437, 0.0064776223, -0.009142893, -0.020849846, 0.007516741, 0.01877161, -0.024304578, -0.011410061, -0.011443799, -0.03527605, 0.017449094, 0.017759481, 0.017503075, -0.023859242, 0.006963444, -0.06763717, 0.020444995, 0.017233174, 0.050849333, 0.00254719, -0.013481551, -0.02032354, -0.0010753865, 0.015100957, -0.0019044884, -0.0079080975, -0.027934745, -0.024291083, -0.082643665, 0.033494703, 0.00879877, -0.010998462, 0.009277844, 0.014885036, 0.042590365, -0.02190246, 0.018326273, -0.0030380723, 8.383797E-4, -0.0015165058, 0.0088122655, -0.010492398, -0.01631551, 0.0013545653, 0.0020259437, -0.015640758, 0.013393833, 0.021349164, -0.0035728135, 0.0031595277, -0.0020175094, 0.024277588, -0.025465151, -0.0032506192, -0.03495217, 0.015870174, 0.004456739, -0.022037411, 0.021106252, -0.022712162, 0.002774919, 0.038973693, -0.01920345, 0.002348138, 0.0127933035, 0.013481551, -0.012914759, -0.02361633, -0.007638196, -0.0163425, -0.0068892213, -0.023926716, -0.01176768, 0.00690609, -0.003721259, 0.008420909, 0.0031089212, 0.018137341, 0.0044904766, 7.2325015E-4, 0.0108432695, -0.039783396, -0.005789375, -0.0062751966, 0.013029467, -0.008292706, 0.0077933893, 0.021619065, 0.060025964, -0.025896994, 0.013717715, -0.0028137171, 0.017826956, -0.00945328, -0.019500341, -0.0016008499, 0.010586863, 0.0043217884, -0.010006577, -0.020310044, 0.021079263, 0.015397848, 0.0021237829, 0.009210369, -5.031122E-4, -0.008043048, -0.02636932, 0.009817646, 0.0010880381, -4.164487E-4, -0.01454766, -0.011167151, 0.0035120856, 0.0030313248, -0.026720192, 0.00885275, -0.00961522, 0.02165955, -0.0321452, 0.015303383, -0.025721557, -0.0021996924, 0.0132386405, -0.010080799, -0.016005125, -0.018353263, 0.010438418, 0.025087291, 0.020741886, 0.017273659, 3.3885217E-4, -0.0040282714, 2.182402E-4, 0.010364195, -0.017476086, -0.021592073, 3.297852E-4, 0.004949308, -0.0074627604, -0.0114775365, -0.015478818, 0.025397677, -0.018623164, 0.017988896, -1.1175585E-4, -0.0150469765, -0.01582969, 0.036328666, 0.0356809, 6.262545E-4, 0.010721814, -0.0145071745, 0.045478307, -0.0012567262, 0.008670568, -0.0026281602, -5.8998656E-4, -0.012752819, 0.011234626, 0.002788414, 0.012577383, -0.013306116, -0.01596464, -0.026639221, -0.01228724, 0.020836351, -0.0038359668, 0.09349368, 0.03449334, -0.0023599463, 0.017611036, -0.007044414, 0.009325077, 0.007536983, -0.0012103369, -0.02163256, -0.025465151, 0.0018521951, -9.750171E-4, -0.014426204, 0.0075504784, -0.04051213, 0.027907755, 0.01620755, 0.0149525115, -0.021025281, -0.028879398, 0.019311411, -0.008596345, 0.0029385462, -0.021915955, 0.0019635293, 0.016302016, 0.03519508, 0.025343698, -0.0044803554, -0.03573488, 0.015303383, -0.011470789, -0.0291493, -0.013724462, 8.7211735E-4, -0.024196617, -0.016571917, -0.006322429, 0.014102323, -0.0022165612, 0.012138794, 0.024237104, -0.007186112, -0.020647421, 6.549315E-4, 0.00948027, -0.012219764, -0.0025623718, -0.051011276 ], - "id" : "dcd1f2d6-4a5e-4487-af5a-9240b172376e", - "metadata" : { - "name" : "E-Adrenaline 8.0 EX1" - }, - "text" : "price: 1499.99\nname: E-Adrenaline 8.0 EX1\nshortDescription: a versatile and comfortable e-MTB designed for adrenaline enthusiasts who want to explore all types of terrain. It features a powerful motor and advanced suspension to provide a smooth and responsive ride, with a variety of customizable settings to fit any rider's needs.\ndescription: ## Overview\r\nIt's right for you if...\r\nYou want to push your limits on challenging trails and terrain, with the added benefit of an electric assist to help you conquer steep climbs and rough terrain. You also want a bike with a comfortable and customizable fit, loaded with high-quality components and technology.\r\n\r\nThe tech you get\r\nA lightweight, full ADV Mountain Carbon frame with a customizable geometry, including an adjustable head tube and chainstay length. A powerful and efficient motor with a 375Wh battery that can assist up to 28 mph when it's on, and provides a smooth and seamless transition when it's off. A SRAM EX1 8-speed drivetrain, a RockShox Lyrik Ultimate fork, and a RockShox Super Deluxe Ultimate rear shock.\r\n\r\nThe final word\r\nOur E-Adrenaline 8.0 EX1 is the perfect bike for adrenaline enthusiasts who want to explore all types of terrain. It's versatile, comfortable, and loaded with advanced technology to provide a smooth and responsive ride, no matter where your adventures take you.\r\n\r\n\r\n## Features\r\nVersatile and customizable\r\nThe E-Adrenaline 8.0 EX1 features a customizable geometry, including an adjustable head tube and chainstay length, so you can fine-tune your ride to fit your needs and preferences. It also features a variety of customizable settings, including suspension tuning, motor assistance levels, and more.\r\n\r\nPowerful and efficient\r\nThe bike is equipped with a powerful and efficient motor that provides a smooth and seamless transition between human power and electric assist. It can assist up to 28 mph when it's on, and provides zero drag when it's off.\r\n\r\nAdvanced suspension\r\nThe E-Adrenaline 8.0 EX1 features a RockShox Lyrik Ultimate fork and a RockShox Super Deluxe Ultimate rear shock, providing advanced suspension technology to absorb shocks and bumps on any terrain. The suspension is also customizable to fit your riding style and preferences.\r\n\r\n\r\n## Specs\r\nFrameset\r\nFrame ADV Mountain Carbon main frame & stays, adjustable head tube and chainstay length, tapered head tube, Knock Block, Control Freak internal routing, Boost148, 150mm travel\r\nFork RockShox Lyrik Ultimate, DebonAir spring, Charger 2.1 RC2 damper, remote lockout, tapered steerer, 42mm offset, Boost110, 15mm Maxle Stealth, 160mm travel\r\nShock RockShox Super Deluxe Ultimate, DebonAir spring, Thru Shaft 3-position damper, 230x57.5mm\r\n\r\nWheels\r\nWheel front Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 6-bolt, Boost110, 15mm thru axle\r\nWheel rear Bontrager Line Elite 30, ADV Mountain Carbon, Tubeless Ready, 54T Rapid Drive, 6-bolt, Shimano MicroSpline freehub, Boost148, 12mm thru axle\r\nSkewer rear Bontrager Switch thru axle, removable lever\r\nTire Bontrager XR5 Team Issue, Tubeless Ready, Inner Strength sidewall, aramid bead, 120tpi, 29x2.50''\r\nTire part Bontrager TLR sealant, 6oz\r\n\r\nDrivetrain\r\nShifter SRAM EX1, 8 speed\r\nRear derailleur SRAM EX1, 8 speed\r\nCrank Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque" - }, - "83c55d66-8cad-4c75-84c6-4bfda42cc392" : { - "embedding" : [ 0.024045123, 0.0012456261, -0.021772401, 0.0025198292, 0.007551083, 0.016312491, -0.01372374, -0.021557232, -0.0038057996, -0.040478647, 0.009037093, 3.377773E-5, -0.008203314, 0.0033502467, -0.005896972, 0.006337396, 0.0040344163, -0.016581452, 0.016810069, -0.038542125, 0.018585213, 0.004158811, -0.020360356, -0.01783212, -0.013158922, -0.02481166, 0.03789662, -0.009790184, 0.024999935, -0.023345824, 0.009245538, 0.031979475, -0.03332428, 0.0060280906, 0.0014229723, 0.004081485, 0.028509878, -5.9927895E-4, 0.033136006, 0.020212427, 0.027434032, 0.010375175, -0.017711088, -0.009561568, -0.012399107, 0.032167748, 0.023426512, 0.010079317, 0.014093562, 0.002706421, -0.003684767, 0.03700905, -0.01323961, 0.004199155, -0.0027198691, -0.028671253, 0.012358762, 0.015989738, 0.03700905, 0.008304174, 0.0010817279, 0.019203823, -0.037358698, -0.010650859, -0.038542125, -0.024300635, 0.012647896, -0.0015204707, -0.0034964944, 0.022848245, 0.027313, 0.014322178, 0.03496494, 0.0055103404, 0.01472562, -0.02288859, 0.003462874, 4.6059588E-4, 7.715822E-4, 0.011477915, 0.033996683, 0.011121541, -0.0029804253, -4.3622128E-4, 0.030042956, 0.007369534, -0.01313875, -7.5710973E-6, -0.0077057355, 0.009763288, -0.0064281705, -0.0035906306, 0.002647586, 0.008573135, 0.0131320255, -0.03068846, -0.018544868, -0.0032964544, -0.0086202035, -0.027810577, 0.010395346, 0.003425892, -0.0049354364, -0.01707903, -0.022754109, -0.019647608, -0.033243593, 0.00926571, 0.0063104997, -0.01853142, -0.030177435, 0.010388622, -0.0012431046, 0.015613192, 0.009043817, -0.020925174, 0.0408014, 0.030096747, 0.01804729, -0.020965518, 0.021597577, 0.02606233, 0.0132194385, -0.041258633, 0.016984893, 0.022754109, -0.01644697, -0.015519056, -4.175201E-4, -0.0030880095, 0.024045123, 0.0057187853, 0.0150483735, 0.0092589855, -0.019540023, 0.022592733, -0.0074771186, 0.019593816, -0.02225653, -0.0165949, 0.010355002, 0.02392409, -0.002435779, 0.002701378, -0.015989738, 2.3302958E-4, -0.010973613, 0.01240583, 0.00535905, -0.023641681, 0.013750636, -0.011592223, 0.013717016, 0.02662715, 0.023184447, 0.0011556923, -0.003647785, 0.01756316, -0.018181771, -0.006572737, -0.031280175, 0.017415231, 0.012284799, -0.0012531907, 0.024045123, 0.014671828, -0.0053086197, -0.033136006, -0.004168897, -0.020683108, -0.002706421, 0.02095207, -0.024031674, 0.011208954, 4.4168456E-4, 0.023117207, 0.01569388, -0.008573135, -0.008700891, 0.013838049, 0.014335627, -8.9429563E-4, 0.008189865, 0.0140263215, -0.016204907, 0.0018070824, 0.007954525, -0.024865454, 0.009628807, -0.018006945, 0.027568514, 0.014644932, 0.0025450445, -0.0104087945, -0.60247284, -0.04120484, 0.0014692, -0.01188808, 0.006764372, 0.027286103, 0.009588463, 0.027622305, -0.0028207295, 0.0032124042, 4.0596316E-4, 0.031925682, -0.0016062021, -0.009178298, -0.033754617, -0.027326448, 0.016769724, 0.0022424632, -0.016998341, -0.014201147, -0.040693816, -0.007820044, -0.021906883, 0.013380814, 0.024946142, -0.012923581, -2.0161577E-4, -0.019849328, 0.0016894119, 0.009971733, -0.020871382, 0.054249454, -0.0045622527, -0.0027585323, 0.029639514, -0.041984826, 0.0046059587, 0.0035872688, 0.032382917, 0.028886423, -0.026640598, 0.010052421, -0.00434036, -0.034319438, -0.010119662, 0.008122625, 0.035449073, -0.010966889, -0.001946606, -0.040559333, 0.0032208092, 0.006014643, 0.010435691, 0.0047000954, -9.5817394E-4, -0.015653536, 0.030822942, -0.008707616, 0.007994869, 0.003435978, 7.6737965E-4, 0.0128765125, -0.0027871095, 3.4796842E-4, -0.0029098229, 0.01798005, -0.044002037, -0.025941297, 0.011242574, -0.006041539, 0.008936233, 0.020172082, -0.0022828074, 0.008452103, 0.025605097, 0.026869213, 0.040209685, 0.0054666344, 0.0021063017, 0.016957998, 0.0038629537, 1.6379311E-4, 0.0038562298, -0.010644136, 0.038891774, -0.012190662, 0.0034931323, 0.01721351, 0.015465263, 0.012446175, 0.022982726, 0.016258698, 0.0011741833, -0.0076922877, -0.003190551, 0.031414658, -0.006095331, 0.02891332, 0.019217271, -0.026317844, -0.0079814205, -0.009225366, 0.02261963, -8.4638695E-4, 0.020104842, -1.0201611E-4, 0.011780497, -0.018302802, 0.027353344, -0.023560993, 0.015519056, -0.026156466, -0.04045175, 0.008499171, -0.015707329, -0.025779922, 0.02005105, 0.01839694, 0.024327531, -0.021530336, 0.029424345, -0.015922498, 0.030796045, 5.9032236E-6, -0.02517476, 0.0012330186, 0.012735308, 0.010361726, -0.00585999, -0.03714353, 0.013918737, 0.026775077, 0.03679388, -0.008304174, 0.025295792, 0.013824601, 0.0046765613, 0.009843976, -0.012358762, -0.027891267, -0.039510384, -0.013286678, -0.012802549, -0.03015054, -0.008996748, -0.008889165, 9.770852E-5, 0.01935175, -0.0045588906, -0.022942383, -0.012150317, -0.012943753, -0.0139859775, -0.0027652562, 4.6490346E-5, -0.01694455, -0.026317844, -0.044674437, -0.034400124, -0.028321603, 0.020642765, 0.00197014, -0.007046781, -0.016581452, 0.025699234, 1.1357303E-4, 0.021906883, 0.010462587, -0.005174139, -0.033781514, -0.0033216695, -0.0066803214, -0.02038725, 0.0092589855, -0.023910642, 0.015922498, -0.023601336, 0.001948287, 0.00390666, -0.01777833, 0.0069929888, 0.013468227, -0.053953595, 0.02136896, 0.023883745, 0.01582836, 0.016204907, 0.017939705, -0.025510961, 0.022027913, 0.002669439, -0.0042126034, -0.03415806, 0.0071678134, -0.0069391965, 0.013441331, 0.01372374, 0.008183141, 0.014967686, 0.015034925, 0.04203862, 0.019123135, 0.03372772, 0.005883524, 0.009709496, -0.019365199, 0.005295172, -0.0075040148, 0.024529252, 0.011390503, 0.021597577, -0.024435116, 4.3285926E-4, 0.007853664, -0.009077437, -0.007557807, 0.0144970035, 0.029370552, -0.003903298, -0.004222689, -0.020252772, 0.018329699, 0.040505543, -0.003896574, -0.023641681, 0.018087635, 0.009285882, 0.042979985, -0.0055002547, -0.029128488, -0.024596492, 0.02075035, 0.038407646, -0.017509367, 0.008357966, 0.026290948, 0.030957423, 0.0016154476, 0.036282852, -0.0013759042, 0.031549137, 0.028456084, 0.021247927, -0.004864834, 0.025134414, 0.00535905, 0.013676672, 0.015666984, 0.03617527, 0.012183938, 0.008828648, -6.739787E-5, -0.017711088, 0.0019129858, 0.015088717, 0.0030678376, 0.017939705, 0.00487492, -0.01859866, 0.007719184, 0.021651369, 0.025241999, 0.015734224, 0.015223199, 0.023265135, -0.020683108, -0.029720202, -0.007793148, -0.017374886, -0.013569088, -0.002156732, -0.027407136, 0.0069862646, 0.0014204509, 8.552123E-4, -0.0054666344, 0.010348278, -0.0044681164, 0.021005861, 0.044217207, 0.0027988765, -0.03555666, 0.007967972, 0.024771318, -0.008277277, -0.015882153, 4.0659355E-4, 0.014107009, 0.0140263215, 0.038353853, 0.015989738, 0.0065626507, -0.0037789035, -0.002425693, -0.021799298, 0.0052682757, 0.014698724, -0.02261963, -0.011121541, -7.96377E-4, -0.007826768, 0.009796908, 0.001934839, -0.018544868, 0.057127338, -0.014012873, -0.0028644358, -0.028187124, 0.019096239, 0.009548119, 0.010052421, -0.028025746, -0.0114308465, -0.0011699807, -0.0026492667, 0.011975493, -0.0027904715, -0.013696844, 0.016487315, -0.035718035, -0.025766473, -0.018154874, -0.026936455, -0.015236646, 0.015061822, 0.03310911, -0.009790184, 0.009635531, -0.013824601, -9.943156E-4, -0.006273518, -0.014201147, -0.0028308155, 0.0139859775, -0.0015641769, 0.0024761232, -8.266351E-4, -0.01445666, -0.014254939, -0.022512045, 0.0071476414, -0.042979985, 0.010032249, -0.0011699807, -0.004384066, -0.022216188, 6.392029E-4, 0.021489993, 0.017105926, -0.0049522463, -0.0043235496, 0.0056750793, 0.018975206, -0.018033842, -0.004945522, 0.012257902, 0.00634412, -6.501294E-4, -0.026976798, 0.008586583, -0.004168897, 2.672801E-4, 0.020360356, 0.008452103, -0.00392347, 0.004172259, -0.005355688, 0.004962332, 0.010139833, -2.1296256E-4, 0.010913096, 0.010516379, 0.013784257, -0.014362522, 0.025914403, 0.0022676783, -0.020131739, -0.0085798595, -0.00978346, 0.033754617, -0.0067341137, -0.029612618, -0.0039772624, -0.03975245, -0.0014011193, -0.033162903, 0.013394263, -0.002469399, 0.0034897702, -0.016890757, -0.013125301, 0.0045790626, 0.0021130256, -0.018988654, -0.037923515, -0.0144970035, -0.020441044, 0.02212205, 0.004706819, -0.010146557, 0.026425429, -0.038407646, 0.01597629, 0.008808476, -0.027111279, 0.023413064, -0.024771318, -0.0029552102, -0.020817589, 0.015384575, 0.028375397, -0.0023954348, 0.015734224, -0.0041386387, 0.0024979762, -0.014295283, 0.015330783, -0.02799885, 0.013286678, -0.0121099735, 0.016406627, 0.02918228, 0.007154365, -0.017536264, 0.00492535, -0.011329986, 0.015236646, 0.021732057, 0.008075557, -0.0034729603, 0.010516379, 0.0017885913, 0.0069929888, -0.027541617, -0.02559165, -0.010106213, 3.8873285E-4, -0.00871434, -0.022377564, 0.0018659176, 0.021624472, 0.003987348, 9.262348E-4, -0.019284511, 0.008136073, -0.046126828, 0.02621026, 0.01507527, -0.015182855, 0.041124154, 0.0150483735, -0.0041621733, 0.011208954, 0.0136565, 0.04335653, 0.02315755, 0.011282918, 0.006858508, -0.033862203, -0.03187189, -0.025833713, -0.005120347, 0.01707903, -0.018491076, -0.02033346, 0.0304195, 0.026250603, 0.025497513, -0.017159719, -0.018961757, -0.02522855, 0.0047236294, -0.006841698, 0.026089227, -0.015613192, -0.002963615, -0.004905178, -0.036202163, -0.037439384, -0.013313575, -0.016406627, -0.016836965, 0.0023164274, 0.01185446, 0.012668068, 0.0027383603, 0.012809273, 0.010240694, 0.007887284, 0.0155593995, -0.013602708, -0.011484639, -0.0532543, 0.004360532, 0.031764306, 0.011087921, -0.008593307, -0.02530924, 3.5847473E-4, 0.028940214, -0.02813333, -0.0062096394, -0.011733428, -0.056320455, 0.014254939, -0.026237156, -0.0023197895, -0.029720202, -0.03746628, -0.0090034725, 0.034480814, -0.016810069, 0.022189291, 0.011793944, -0.0027602133, -0.016541108, 0.031576034, -0.0039940723, 0.023964435, 0.0028442636, -0.0224717, -0.013972529, -0.01811453, 0.026707837, -0.022364115, 0.002918228, 4.3369978E-4, -0.027191967, -0.008048661, -0.004733715, -0.0025164674, -0.011457743, 0.016729381, -0.0057019754, 0.0010044016, -0.02170516, -0.014886997, -0.03534149, -0.009978456, 7.4132404E-4, -0.0065458408, 0.017643848, -0.012748756, -0.020615868, 0.025040278, 0.01783212, 0.017442128, 0.0030090024, 0.018370043, -0.003671319, -0.005083365, -0.015720777, -0.013972529, 0.0074569467, 0.015478712, 0.014483555, 0.026156466, -0.023466855, -0.0040007965, 0.009877596, -0.0052514654, -0.015855256, -0.032463606, 0.0022659972, 0.023480304, 0.013421159, -0.019284511, -0.0021180687, -0.027649201, 0.020615868, 0.0040747607, -0.0039301943, 0.019513128, -0.017737985, 0.0011943554, 0.02460994, -0.010160006, -0.008317622, 0.016137665, -0.0050329347, 0.007483843, -0.0044613923, -0.022700317, -0.0049858666, 0.0048345756, 0.06299069, -0.012130146, 0.0039739003, 0.019271063, 0.0011027405, -0.022754109, -0.012728584, -0.0025887506, 0.03028502, -0.020871382, 0.0052178456, -0.014389419, -0.016931102, -0.007974696, -0.0017768242, -0.020857934, -0.012466347, 0.024166156, -0.017119374, -0.005197673, -4.0575303E-4, -0.023170998, -0.006579461, -0.014833204, -0.031683616, -0.029155383, -0.008768132, -0.0029787442, -0.044082724, -0.0018171684, -0.01748247, 0.022875141, 0.03547597, 0.006623167, -0.013441331, -0.001978545, 0.02178585, -0.02923607, -0.0049085403, 0.025631992, 0.009682599, -0.014954237, 0.010489483, 0.006592909, -0.008976577, 0.011693084, -0.002213886, -0.03372772, -0.029074695, 3.3851276E-4, 0.0027955144, 0.008351242, -0.022982726, -3.0342175E-4, 0.010671032, 0.010939993, 0.0018037204, -0.0112627465, 0.018356595, 0.0033552898, -0.0030443035, -0.004730353, -0.027568514, 0.036471125, -0.0021197498, -0.018854173, -0.0034729603, -0.0045588906, -0.016003186, 0.006407998, 0.003647785, -0.006740838, 0.001333879, -0.032302227, -0.0165949, -0.02080414, 0.01929796, -0.024462013, -0.008371415, 0.0092589855, -0.0012103249, -0.029020904, 0.023534097, -0.0057994737, -0.04230758, 0.0155593995, -0.015788017, -0.0098507, -0.03090363, -0.0021752228, 0.04741784, 0.018961757, 0.0035267523, 0.0064483425, -0.00964898, -0.023762714, -0.022283427, 0.00494216, 0.018907966, 0.004921988, 0.031145696, 7.287165E-4, 0.019728297, 0.01549216, 0.036901463, -0.020508284, -0.00722833, 0.0057893875, 0.021879986, 0.01769764, 0.00435717, -0.041473802, -0.028563669, 0.024677182, 0.026667492, 0.013932185, 0.011363607, -0.007181261, 0.0028156866, 0.0072686737, -0.0038125236, 0.037735242, 0.025914403, -0.011484639, -0.043114465, -0.011585499, -0.0045555285, 0.014523899, 0.0016616753, 0.00636093, -0.022754109, -0.014712173, 0.0076788394, -0.002958572, -0.0050262106, -0.014483555, -0.013232886, 0.018612107, 0.0039301943, -0.017065581, 0.055405986, 0.0076519432, -0.008142797, -0.0014498684, 0.021664817, -0.01819522, -0.0064046364, 0.011141714, -0.025833713, -0.008250382, -0.0013616156, 0.024394771, 0.011040853, -0.0033468846, -0.013569088, -0.016070426, -0.021866538, 0.045212362, 0.013259782, -0.03015054, -0.017226959, 0.014322178, -0.0112156775, 0.00929933, 0.011329986, -0.016971445, -0.042415164, 0.007793148, -0.010765168, -0.043813765, -0.009144678, 0.038837984, 0.011941873, 0.006838336, -0.007416602, 0.19483542, 0.008425207, -0.0061625713, 0.029908475, 0.0026106036, -0.014631484, 0.022162395, 0.003859592, -0.0018205305, -0.013535467, 0.013878393, 0.023682024, -0.007066953, 0.0015969565, 0.024031674, -0.014698724, -0.050995026, -0.025631992, -8.968172E-4, -0.013797704, -0.0128361685, 0.010597067, -0.01652766, -0.023829954, 0.0123654865, 0.01268824, -0.017495919, -0.020575523, 0.0102810385, 0.019392096, -0.00833107, -0.019028997, 3.2548496E-4, 0.0060314527, -0.022001019, -0.008801752, 0.0020625954, -0.003412444, -0.003637699, 0.028294709, -0.005147243, -0.014147354, 0.015357679, -0.026035435, -0.0045857867, 0.009561568, -0.01819522, 0.004454668, -0.009776736, -0.0064853244, -0.023843402, 0.009682599, -0.0027467653, 0.042468958, -0.014994581, -0.029962266, 0.02469063, -0.029262967, -0.0042327754, 0.012728584, -0.014604588, 0.017818673, -6.6357746E-4, 0.016621796, 0.0037620934, 0.0050262106, -0.027434032, -0.0359601, 0.008707616, -0.01058362, -0.013797704, 0.0018138065, 0.0029955544, 0.011524983, -0.029289864, -0.019472783, -0.0018390216, 0.011108094, 0.0031216298, 0.01652766, 0.0051875873, -0.015653536, 0.014765965, 2.5866492E-4, -0.005668355, -0.026815422, 0.013118578, -0.010247418, 0.016984893, -0.0037889895, -0.0036444229, 2.683307E-4, -0.0049556084, 0.009010197, -0.0011237531, -0.004168897, -0.041016567, 0.029155383, -0.00923209, -0.0043235496, -0.025470616, 0.041662075, -0.0077259075, -0.0036040787, -0.029935371, 0.0072485018, -0.004192431, 0.009016921, 3.981885E-4, -0.045508217, -0.025699234, -0.035099424, 0.01819522, -0.0027837474, 4.900135E-4, -0.0062365355, -0.003124992, -0.0114308465, 0.00539267, -6.79547E-4, 0.030580876, -0.019405544, 0.008082281, 0.0045857867, 0.020642765, -0.029693305, -0.016312491, 0.012594104, -0.015734224, -0.028456084, 0.009931388, 0.009857425, 0.009810356, 0.0035771825, -0.012533587, 0.0025332773, -0.010543275, -0.009460706, 0.007161089, -0.024986487, 0.008055385, 0.003419168, 0.019970361, -0.009965009, 0.018840725, -0.018477628, 0.00788056, -0.019808985, -0.015021478, -0.0071274694, -0.013179094, -0.014254939, 0.0026996972, -0.00781332, 0.016433524, 0.013589259, -3.8915308E-4, -0.041446906, -0.013495123, 0.008203314, -0.030446397, -0.0012195705, 0.010987061, -0.011121541, -0.026492668, -0.029585721, -0.1694455, 0.023843402, 0.025779922, 0.006972817, -0.003883126, -0.0010329788, 0.025094071, 0.012795825, -0.035852514, 9.590144E-4, 0.024717525, -0.008310898, -0.015330783, -0.02891332, 0.00839831, -0.006323948, -0.017966602, 1.6967663E-4, 0.017536264, 0.0030258123, 0.003148526, -0.04155449, 0.014254939, -0.010731548, -0.03222154, 0.011639291, -0.00447484, 0.036605604, 0.027487824, 0.0011262746, -0.0150080295, -0.043437216, 0.036901463, -0.022431355, 0.016998341, -0.0088152, -0.018988654, 0.0027534892, -0.0062836036, 0.036255956, 0.025699234, 0.009353123, 0.0066735973, 0.0037721794, -0.0013557321, 0.040747605, -0.0013885117, -0.004333636, 0.016971445, -0.008990025, 0.037520073, -0.027366793, 0.014160802, -0.019849328, 0.019418992, -0.0067273895, -0.013710292, 0.022162395, 0.018356595, -0.02392409, -0.035583552, -0.0065458408, 0.003435978, -0.014160802, -0.00394028, -0.018706245, -0.006882042, 0.023292031, -0.026371635, 0.004945522, -0.008990025, -0.006387826, -0.011383778, 0.015680432, 0.023103759, 0.020198978, -0.024166156, -0.0069526443, 0.034453917, -0.001709584, 0.0010682798, 0.042603437, 0.01016673, 0.0023332376, -0.020024154, -6.022207E-4, -0.018168323, 0.004905178, 0.019674504, -0.026398532, -0.01873314, -0.030500188, -0.01020035, -0.014187698, -0.007994869, 0.009185022, 0.0019886312, -0.008889165, 0.010590344, -0.0030291744, 0.0037284733, -0.016285595, -0.015640087, 0.01943244, 0.0511564, 0.004394152, 0.009427086, 0.025981642, -0.002893013, 0.02370892, -0.029908475, 0.0076990114, 0.019136582, 0.028214019, -0.0101532815, 0.012795825, -0.021745505, -0.037385594, 0.03310911, 0.0042798435, 0.015774569, -0.001955011, -0.023910642, -0.011168609, -0.014254939, -0.00539267, -0.06605685, -0.0112156775, 0.018921413, 0.025134414, -0.016030082, 0.016957998, -0.013192542, 0.026801974, -0.013838049, 0.029289864, -0.024058571, -0.021960674, -0.004989228, 0.026290948, 0.006018005, -0.0010481077, 0.006202915, -0.017119374, -0.017132822, 0.024798214, -0.024623388, -0.028751941, -0.015250094, 0.0050194864, -0.012533587, -0.0097700115, -0.014510452, 0.021342063, 0.021005861, 0.005570857, 0.003449426, -0.008499171, -0.0024677182, 0.004142001, -0.021315167, -0.009225366, -0.012479795, -0.009023645, 0.008041937, -0.028536772, 3.828493E-4, 0.008310898, -0.0035301144, -0.02634474, -0.032598086, -0.018127978, -0.008452103, 0.03006985, -0.0038360576, -0.0054498245, 0.011020681, -0.019593816, 0.006784544, -0.003708301, 0.009117781, -0.0059978324, 0.008868992, -0.012318418, -0.016433524, 0.011867909, -0.0011271151, 0.025134414, -0.010334831, 0.018127978, 0.018235562, -0.016164562, 0.001983588, 0.024219947, 0.01819522, -0.0014044812, -0.011000509, 0.006814802, -0.0022878502, 0.029128488, -0.032087058, 0.0064517045, -0.025699234, -0.013327023, 0.0074502225, 0.003933556, -0.030042956, -0.012385659, 0.0131320255, -0.04098967, 0.024435116, 0.051532947, 0.005412842, -0.004158811, 0.02011829, -0.044620648, 0.008425207, 0.018544868, 0.0601397, -0.0027602133, -0.0057355957, -0.002728274, 0.008095729, -0.001106943, -0.014120458, -0.0042058793, -0.063421026, 0.0012641172, -0.0788594, 0.039375905, 0.006391188, -0.011195506, -0.0035334765, 0.005664993, 0.032167748, -0.012076354, -0.003173741, 0.020911725, -0.009608636, 0.02060242, -0.012217558, 0.0028274537, -0.017415231, 0.0016473867, 0.01831625, -4.0344166E-4, 0.01819522, 0.030096747, 0.009420362, 0.006818164, -0.00933295, 0.025941297, -0.016339388, 0.023144104, -0.017549712, 0.01798005, 0.02212205, 0.011975493, 0.0304195, -0.024771318, 0.0066567874, 0.046288207, -0.0011548518, -0.0034998562, 0.007369534, 0.0024979762, -0.008788304, -0.05906386, -0.02116724, -0.0068921284, -0.007483843, 0.008391586, -0.012957201, 0.0035166664, 0.016904205, 0.0073560863, 0.0040310547, 0.038004205, 0.0071476414, 0.005100175, -0.006596271, -0.026546462, -0.0053960322, -0.013784257, -0.0079410765, -0.011081197, 0.011565328, 0.004868196, 0.06869266, -0.017159719, -0.0020138463, -0.029989162, -0.0027887905, -0.01839694, -0.018450731, 0.018127978, 0.016272146, -0.008015041, -0.053926703, -0.010173454, 0.013259782, 0.020414148, -0.006549203, 0.0052615516, 0.018329699, -0.016204907, -0.015653536, 0.013111854, 0.02053518, -0.016568003, -0.0049825045, -0.0037385593, 0.01123585, -0.004938798, -0.026640598, 0.020306563, -0.004898454, 0.024058571, -0.028590566, 0.015720777, -0.006323948, -0.0049287123, 0.034615293, -0.0020978965, -0.009595187, -0.010361726, 0.036148373, 0.03165672, -0.011511535, 0.0013910332, -0.012022561, 0.0026307758, 7.5435186E-5, 0.0074502225, -0.0030409414, -0.014443211, 0.004895092, -0.0047269915, 8.396629E-4, -0.017226959, 0.010133109, 0.017711088, -0.015572848, 0.0055405986, 0.0064752386, -0.012318418, -0.020817589, 0.023641681, 0.018517971, 0.006102055, -0.0025484064, 0.0019028998, 0.022364115, 0.0023248326, 0.016258698, -0.008136073, 0.0071274694, -0.021758953, 0.022525493, -0.021382408, 0.009225366, 3.704519E-4, -0.024004778, -0.011726704, 0.01694455, 0.020911725, 0.013394263, 0.113178834, 0.0028056004, -0.0032527484, 0.0023214705, -0.00843193, 0.026048882, 0.025147863, -0.017240407, -0.010032249, -0.040397957, 3.35571E-4, 0.0074502225, -0.028886423, 0.0073762583, -0.02240446, 0.0136430515, 0.010381899, -9.2297785E-5, -0.0021634558, -0.0030308554, 0.021422751, -0.026143018, 0.010112938, -0.0010044016, -0.004404238, 0.0064214463, 0.013878393, 0.019849328, -0.0010993785, -0.03090363, 0.01213687, -6.1945105E-4, -0.035583552, -0.021005861, -0.0083243465, -0.010186901, -0.01846418, 0.028482981, 0.018006945, -0.0136430515, 0.006925748, 0.011666188, -0.019526577, -0.0074300505, 0.0037116632, -0.016003186, -0.015855256, -0.036202163, -0.054921858 ], - "id" : "83c55d66-8cad-4c75-84c6-4bfda42cc392", - "metadata" : { - "name" : "Velocity X1" - }, - "text" : "8mm, 93mm reach, 123mm drop, 400mm width\nSize: XL\nBontrager Elite Aero VR-CF, alloy, 31.8mm, 93mm reach, 123mm drop, 420mm width\nGrips\tBontrager Supertack Perf tape\n*Stem\tSize: S, M, L\nBontrager Elite Blendr, 31.8mm clamp, 7 degree, 90mm length\nSize: XL\nBontrager Elite Blendr, 31.8mm clamp, 7 degree, 100mm length\nBrake\tShimano Ultegra R8070 hydraulic disc, flat mount\nBrake rotor\tShimano RT800, centerlock, 160mm\nRotor size\tMax brake rotor sizes: 160mm front & rear\n\nWeight\nWeight\tM - 8.15 kg / 17.97 lbs\nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg).\n\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| S | 162 - 170 cm 5'4\" - 5'7\" | 74 - 78 cm 29\" - 31\" |\n| M | 170 - 178 cm 5'7\" - 5'10\" | 77 - 82 cm 30\" - 32\" |\n| L | 178 - 186 cm 5'10\" - 6'1\" | 82 - 86 cm 32\" - 34\" |\n| XL | 186 - 196 cm 6'1\" - 6'5\" | 87 - 92 cm 34\" - 36\" |\n\n\n## Geometry\n| Frame size letter | S | M | L | XL |\n|---------------------------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 50.0 | 52.0 | 54.0 | 56.0 |\n| B — Seat tube angle | 74.0° | 73.5° | 73.0° | 72.5° |\n| C — Head tube length | 13.0 | 15.0 | 17.0 | 19.0 |\n| D — Head angle | 71.0° | 72.0° | 72.0° | 72.5° |\n| E — Effective top tube | 53.7 | 55.0 | 56.5 | 58.0 |\n| F — Bottom bracket height | 27.5 | 27.5 | 27.5 | 27.5 |\n| G — Bottom bracket drop | 7.3 | 7.3 | 7.3 | 7.3 |\n| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 6.0 | 6.0 | 6.0 | 5.8 |\n| K — Wheelbase | 98.2 | 99." - }, - "4d0567e6-c7fa-44e9-aaf8-edbb6c31be2d" : { - "embedding" : [ 0.01137508, -0.014914437, -0.019084636, -0.018911984, -0.016840165, 0.02304234, -0.009668486, -0.042073853, 0.009595442, -0.007258005, -3.0587544E-4, 0.0076232296, -0.032936603, -0.023241553, -0.006394747, 0.021129893, 0.009960665, -0.021461915, -0.023586856, -0.010286047, 1.2398954E-4, 0.02379935, -0.0041237157, -0.00733105, 0.009230217, -0.012045765, 0.035380285, -0.01032589, -3.7082727E-4, -0.011614136, 0.01301527, 0.022776723, -0.026309438, -0.0055912538, -0.02796955, 0.0058435905, 0.02977575, -0.0056443773, 0.036336508, 0.006690247, 0.01796904, 0.0031243288, -0.021501757, 0.0017862794, -0.013334012, 0.021528319, -0.0033716853, -0.0029749188, 0.008041577, 0.0069193426, -0.014648819, 0.031024154, -0.011541092, 0.01347346, -0.0066039213, -0.020386163, 0.018566681, -0.013705876, 0.055301618, 0.0119461585, -0.0017895997, 0.0050068945, -0.040772326, -6.989067E-4, -0.04143637, -0.012284821, -0.008891555, 0.009090767, 0.022218926, 0.018858861, -0.0054518045, 0.024941508, 0.03503498, 0.024808697, -0.012928944, -0.018301062, 0.002035296, -0.012789494, 0.0033750057, -0.0076365103, 0.019974455, -0.01614956, -0.021275982, 0.0034231488, 0.030253863, 0.004727996, -0.006271899, -0.016574549, -0.017464368, 0.0076697124, 0.019815084, 0.017411243, 0.013280888, 0.01690657, -0.010604789, 0.007364252, -0.035433408, 0.017185468, -0.013971494, -0.017437806, 0.011023137, 0.02286969, -0.030306986, -0.022258768, -0.036920868, -0.017092502, -0.00643459, -0.006464472, 0.009914183, 0.012205136, -0.019350253, 0.020558814, -0.0013671013, -0.011793428, -0.0081876675, -0.00643127, 0.028766403, 0.005428563, 0.031767882, 4.8641252E-4, 0.028447662, 0.01751749, -0.004963732, -0.04146293, -0.0034762723, 0.004671552, -0.0042432435, -0.0060096015, 0.029855436, -0.020518972, -0.0067998143, -0.007523623, 0.024582922, 0.013161359, -0.02694692, 0.009807936, -0.008858352, 0.024118092, -0.039231744, -0.0113684395, 0.012371147, -0.0021415432, -0.0036754857, -0.0043793726, -0.010943452, -0.0075767464, -0.024901664, 0.024941508, 0.037027113, 0.0071119154, 0.025127439, -0.006673646, 0.012477394, 0.038381767, 0.0091173295, -0.01824794, -0.010445418, 0.019483062, -0.012816057, -0.022218926, -0.014449606, -0.0075037014, -0.006029523, -0.014409763, 0.02709301, 0.024968069, 0.008486487, -0.023719665, 0.014290235, -0.022524385, -0.030944468, 0.02648209, -0.028474223, 0.019323692, -0.0070455107, 0.016826885, 0.0036223622, -0.012078967, -0.0122649, -0.0087255435, 0.022484543, 3.14176E-4, -0.0016709017, 0.006069366, 0.001826122, 0.014077741, 0.0075833867, -0.03514123, 0.01406446, 2.9000063E-5, 0.005202788, -0.01658783, -0.0023108744, 0.013294169, -0.6047585, -0.02123614, -0.008712262, -0.014183988, -0.007862286, -0.0022809925, 0.0023772789, 0.010970013, -0.011866473, -0.009190374, -0.018659648, 0.006520916, 0.0022809925, -0.01854012, -0.025512585, -0.027889865, 0.0063814665, -0.014462886, 0.00792205, -0.010896969, -0.023865756, 0.0018941866, -0.032803793, -0.003262118, -0.0068794996, -0.01824794, 0.009024363, 0.013187922, -3.3160715E-4, 0.011335238, -0.030785097, 0.047333084, 0.005667619, -0.006985747, 0.03665525, -0.042445716, -0.005428563, 0.023586856, 0.012165293, 0.0398161, -0.0242509, 7.150928E-4, -0.0042565246, -0.015671447, -0.015060526, 0.008811869, 0.023865756, 9.338124E-4, -0.008758745, -0.02527353, 0.02139551, -0.013121517, 0.013825404, -0.0073376903, -0.011401642, -0.0130617535, 0.032856915, -4.7520676E-4, -0.010452058, 0.018739333, 0.008612656, 2.903119E-4, -0.0021033606, -0.021793937, -0.014794908, 0.013234405, -0.0457925, -0.033706892, 0.027544562, -0.0123379445, 0.01585738, 0.023241553, 8.814152E-5, 0.029111706, 0.008141184, 0.027783617, 0.01616284, 2.8201134E-4, -0.01211881, 0.015591762, -0.010491901, 4.1565028E-4, -0.006374826, -0.039736416, 0.023719665, -0.0035991205, 0.009708329, -0.014848032, 0.024370428, 0.0095091155, 0.019708836, -0.003379986, -0.01077744, -0.018872142, -0.0033766658, 0.021475196, 0.0019456501, 0.029988244, 0.0074107354, -0.04188792, -0.022657195, 0.013128158, 0.034025636, 0.010033711, 0.008718903, 0.0058469106, 0.007530263, -0.03413188, 0.020107264, -0.013984775, -5.1214424E-4, -0.02454308, -0.023068901, 0.005069979, -0.01795576, -0.030253863, 0.008513049, 0.0021249421, 0.0030097812, -0.0141972685, 0.011853192, -0.020054141, 0.012669967, -0.016826885, -0.017889356, 0.016534705, 0.019204164, -0.011853192, -0.01840731, -0.008559532, 0.006939264, 0.021169735, 0.049006477, -0.016640952, 0.025552427, 0.025977416, 0.023228273, -0.008758745, -0.013652752, -0.024861822, -0.017650299, 0.017490929, 0.011003216, -0.04802369, -0.010398935, -0.016069874, -0.024131373, 0.009177093, -0.026415685, -0.007975173, -0.009920823, -0.0043196087, -0.01286918, -0.007091994, -0.0070255897, -0.029536694, -0.010385654, -0.027438315, -0.021528319, -0.03848801, 0.022816565, 0.0031210086, -0.017942479, 0.0025715118, 0.009701689, 0.010936811, -0.008685701, 0.022829846, -0.0071849604, -0.02707973, -0.007238084, 0.0039743055, -0.0023988604, 0.024582922, -0.026243035, 0.0071451175, -0.010232924, -0.018606523, 0.0091372505, -0.012683248, 0.009442711, 0.018925264, -0.041701987, 0.015472234, 0.023361081, 0.011441485, 0.0037784125, 0.024662608, -0.007211522, -0.012882461, 0.0147550665, 0.008307195, -0.009821217, 0.005969759, -0.003665525, 8.781987E-4, 0.015737852, 0.0042698053, 0.00867906, 0.024503238, 0.013539865, 0.0067699323, 0.0115742935, 0.0025781523, 0.009077487, -0.028102359, 0.011395002, -0.010936811, 0.022099396, 0.019204164, 0.018579962, -0.02903202, -0.0091372505, -0.0010823923, -0.017079221, -0.0028404498, 0.0027873262, 0.042737897, -0.015419111, -0.012669967, -0.002915155, 0.009296621, 0.031449143, -0.004894007, 0.005823669, 0.008466566, 0.0022726918, 0.035274036, -0.013446899, -0.030546041, 0.008898195, 0.032910038, 0.023361081, -0.017490929, 0.015591762, -5.5738224E-4, 0.016069874, -0.014183988, 0.056364086, -0.002666138, 0.027491437, 0.041675426, 0.00866578, -0.019429939, 0.01778311, 0.00838688, 0.002979899, 0.007430657, 0.034928735, 0.0113684395, -0.020890836, -0.009714969, 0.016056594, 0.00793533, 0.0020850995, -0.01824794, -0.013626191, 0.020386163, 0.002782346, 0.004897327, 0.016255807, -1.06662126E-4, 0.019642433, 0.026614899, 0.02406497, -0.008141184, -0.012557079, -0.01915104, 0.007862286, -0.05609847, -0.012052406, -0.013334012, 0.0018327625, 0.013094955, 0.019854927, 0.013148079, 0.01181335, 0.0049404902, 0.007868926, 0.0316882, -0.013513303, -0.025645394, 0.0039477437, 0.002558231, 0.0027773657, 0.0053953608, -0.00957552, 0.007663072, 0.010385654, 0.052778248, 0.0123379445, 0.018128412, -0.0075833867, -3.9116363E-4, -0.019974455, 0.0063814665, 0.038992684, -0.023520453, 0.021581443, -0.0015887262, 8.020411E-5, 0.010312609, -0.019576028, -0.028766403, 0.021926746, -0.01751749, 0.008758745, -0.021740813, 0.011388361, 0.0034198286, -0.0023208351, -0.045526884, -9.986605E-5, -0.035831835, -0.004502221, 0.01137508, 0.011620777, -0.010392294, 0.017145626, -0.013300809, -0.00493385, -0.017172188, -0.013573067, -0.025804766, 0.056310963, 0.038992684, 6.7857036E-5, 0.023108745, -0.032219432, -0.009462632, -0.022763442, -7.304488E-5, 0.005966439, 0.02423762, -0.0060162423, 0.010877047, -0.031103838, -0.017451087, -0.012085608, -0.019828366, 0.012663326, -0.019854927, 0.004668232, -0.016030032, -0.01944322, -0.011580934, -0.002765745, 0.008539611, 0.0075501846, -0.0024636046, 0.02620319, 0.0132676065, -0.0014086041, -0.015737852, -0.0055414503, -0.0035858396, 0.03309597, -0.013181281, -0.036389634, 0.017304996, 0.007523623, -0.0035791993, 0.02665474, 0.018739333, -0.001706594, 0.020758027, -0.010724316, 0.001646, 0.0031010872, -0.014781628, -0.011986001, 0.007510342, 0.022643913, -0.019483062, 0.03561934, 0.01046534, -0.03229912, 0.0052725123, 9.6120423E-4, 0.020133825, -0.014635538, -0.009814576, -0.011727024, -0.024622766, -0.003545997, -0.017690143, 0.0032189551, -0.008200948, 1.937142E-4, -0.021754093, 0.009236857, 0.020160388, 0.011434845, -0.013719157, -0.051875148, 0.0044490974, -0.022006432, 0.011620777, -0.0027408432, 6.856258E-4, -0.003394927, -0.026389124, 0.019111197, 0.0060527646, -0.010226283, 0.02379935, 0.021169735, -0.011992642, -0.008267352, -0.006398068, 0.026787551, 0.008021656, 0.033999074, 0.012557079, 0.02858047, -0.005730703, 0.022683756, 0.0067068483, -0.010677834, 0.0151269315, 0.0049404902, 0.033839703, 0.016202683, -0.011195788, 0.013559787, -0.028394537, 0.002573172, 0.0023839194, 0.009495835, -0.008738824, -0.0021764054, -0.0077892407, 0.025326652, -0.018008884, -0.0050201756, 0.0051795463, -0.015472234, 0.006554118, -0.038700506, 0.011627417, 0.0018875462, -0.0050367764, -0.020093983, 0.006258618, 0.010013789, -0.060826465, 0.038780194, -0.008858352, -0.024317306, 0.041223876, 0.010764159, 0.018858861, 0.009177093, 0.016255807, 0.041834798, 0.03697399, -0.008778667, 7.358442E-4, -0.0053223157, -0.015445672, -0.020598657, 0.0056012142, -0.0017016138, -0.0074904207, 0.004200081, 0.01152781, 0.0027176016, 0.0096751265, -0.008858352, -0.020558814, -0.031316333, 0.0055746525, -3.573389E-4, 0.045101896, -0.013187922, -0.018327625, -0.007390814, -0.0236267, -0.019376814, -0.015246459, -0.006341624, -0.01899167, 0.025818046, 0.024768855, -0.016680796, -0.0070720725, 0.005265872, 0.0058535514, -0.0028919133, -6.1880634E-4, -0.010511823, -0.0013089975, -0.02183378, 0.02887265, 0.035805274, 0.0062818597, -0.009781374, -0.033919387, -0.0024337226, 0.031236649, -9.3547255E-4, -0.025539147, -0.021647846, -0.012430911, -0.0031326294, -0.0071583986, -0.011248912, -0.0035393566, -0.04860805, -0.012948865, 0.038036462, 0.005458445, 0.023998564, 0.018898703, -0.017119065, -0.021342386, 0.045819063, -0.003619042, 0.023361081, 0.019576028, -0.005807068, -0.032538176, -0.023825912, 0.02451652, -0.011003216, 0.013068394, 0.016468301, -0.010199722, -0.0026080343, 0.0079618925, 0.014250392, -0.028899211, -0.0016667515, -0.010671193, -0.0026545175, -0.01300863, -0.0140113365, -0.034849048, -0.0043926537, 0.021262702, -0.028182043, 0.023812631, -0.019350253, 0.011919596, 0.041489493, 0.021727532, 0.020678341, 0.0060494444, 0.01733156, 0.006660365, -0.008307195, 4.772819E-4, -0.029881997, -0.0066105616, 0.009157172, 0.03216631, 0.011295395, -5.659941E-5, -3.8493823E-4, 0.014715224, -0.011341878, -0.01569801, 0.006361545, 0.00898452, 0.0075037014, 0.02903202, -4.0900984E-4, 0.001108124, -0.012005922, -0.008347038, -0.009794654, 0.021448633, 0.012829337, -0.005073299, 0.012736372, 0.024011845, -0.032564737, 0.026163349, -0.010903609, -0.021594724, -0.0020253353, 0.0019124479, -0.008506409, 0.016043313, 0.004472339, 0.06746691, -0.014091021, 0.0068595787, 0.029935122, -0.0034895532, -0.010266126, -0.01689329, 0.021501757, 0.022697037, -0.01989477, 0.0143832015, 8.765386E-4, -0.02186034, 0.014423044, -0.01705266, -0.0044192155, -0.008991161, -0.017915918, -0.020279916, 0.0018726052, 3.8473072E-4, -0.018872142, -0.015950346, -0.007809162, -0.036416195, -0.023706384, -0.009608722, 0.0034961938, -0.021355668, -0.00942279, -0.008772027, 0.033892825, 0.0158441, 0.023547014, 0.010491901, -0.009157172, 0.018327625, -0.006461152, -0.0055912538, 0.025711799, -0.0016443399, -0.0115543725, -0.0018742653, 0.009449352, -0.03272411, 3.2226904E-4, 0.0047346363, -0.026096944, -0.06242017, -0.006567399, -0.021767374, 0.003768452, -0.020625219, 0.008612656, 0.010445418, 0.017597176, -0.005355518, -0.016919851, 0.021435352, 0.0035692386, 0.0021598043, -0.0028670116, -0.022936093, 0.013666034, -0.008918116, -0.0021946668, -0.018394029, -0.008652498, -0.012809416, 0.017729985, 0.020080702, -0.009402868, -0.007676353, -0.012165293, -0.014157427, -0.01721203, 0.0024503237, -0.009050925, 0.008513049, 0.011501249, -0.012357866, 0.009947385, 0.02140879, -0.0030629048, -0.014954279, 0.0018792456, 0.0029284358, -0.035699025, -0.027996112, -2.6125996E-4, 0.046270613, 0.007523623, -0.012238338, 0.013592988, -0.013666034, -0.0595515, -0.018819017, -0.010379014, 0.031077277, 0.031635076, -0.0024021806, 0.0075169825, 3.5796143E-4, 0.02722582, 0.03790365, -0.018447153, -0.0014841392, 0.003874699, 0.006965826, 0.009748171, 0.017238593, -0.03455687, -0.004100474, 0.03593808, 0.032219432, -0.0015463934, -0.0045387433, -0.01632221, -0.011547732, 0.009774733, -0.01629565, 0.015392548, 0.027863303, 0.010219643, -0.04178167, -0.01779639, -0.018168254, -0.01286254, -0.0022793324, 0.0027458235, -0.014091021, 0.0045586647, 0.008552891, -0.004727996, 0.0015945366, -0.024184497, -0.004163558, 0.017437806, 0.016627671, -0.0059498376, 0.027252382, 0.028660156, -0.012105529, -0.01286254, 0.01778311, -0.008194308, -0.023175148, 0.016388616, -0.035327163, -0.009110689, -0.015087089, 0.0032737388, 0.02305562, 2.0180724E-4, 0.010365733, 1.8084834E-4, -0.014582415, 0.023613418, 0.011036417, -0.029350761, -0.023307959, 0.0057805064, -0.009954025, 0.0073376903, -0.011448125, 0.0028753122, -0.02887265, 0.014715224, -0.011906316, -0.021262702, -0.024968069, 0.016215963, 5.9514976E-4, -0.004475659, -0.009548958, 0.18317, 0.0049404902, -0.01795576, 0.032086626, 0.03317566, -0.0073443307, -0.0037717721, 0.0076829935, -0.005743984, -0.013367213, 0.0060793264, 0.016388616, -0.025592271, -0.0028454303, 0.027757056, -0.031103838, -0.04473003, -0.0054982873, 0.0021598043, -0.0121320905, 7.1011245E-4, -0.010186441, 0.008845071, -0.037159923, 0.006235377, 0.0015621644, -0.02229861, -0.009834497, 0.0047346363, 0.017132346, 0.005551411, -0.0076497914, 0.014037898, 0.0038248957, -0.028846089, -0.007297848, 0.018221378, -0.0028221887, -0.011308676, 0.050679866, 0.017530771, -0.0026960203, 0.008572813, -0.0058137085, -0.010963373, 0.0121320905, -0.014290235, 0.013035191, -0.020744747, -0.016362054, -0.033308465, 0.015339425, -0.0063781464, 0.023547014, -0.0028902532, -0.02709301, 0.0021515037, 0.0028055876, 0.0021050207, -0.019031512, -0.01613628, 0.031927254, 0.0151269315, 0.034742802, -0.021156454, 0.015047246, -0.009011082, -0.016255807, 0.026495371, 0.019589309, -0.016919851, 0.0011014836, 4.889027E-4, -0.003768452, -0.00463835, -0.04727996, 0.031342894, 0.0014758386, 0.01092353, 0.019323692, 0.023228273, -0.016534705, 0.014781628, 0.0010060272, 0.006238697, -0.044198792, 0.025791483, -0.0057473043, 0.016189402, 0.0010342491, -0.004356131, 0.018022165, -0.017079221, -0.018154973, 0.013108236, 0.007948611, -0.006939264, 0.020997083, -0.021979868, -0.013559787, -0.031342894, 0.049564272, -0.015219897, 0.004741277, -0.03708024, 0.004967052, 0.0010085175, 0.025034472, 0.009416149, -0.02544618, 0.0051828665, -0.034769364, -0.010206362, -0.0070455107, 0.014768347, -0.005043417, -2.631276E-4, -0.019854927, 6.9683156E-4, -0.02961638, 0.01585738, -0.013241045, -7.408245E-4, -0.018301062, 0.038673945, -0.021169735, -0.007689634, 0.025074316, 0.0027275623, -0.016335491, 0.011355159, 0.012185214, 0.012557079, -0.0074704993, -0.025871169, 0.006899421, 7.491251E-4, -0.009714969, 0.002483526, 0.011773507, -0.0017829592, 0.021183016, 0.011302035, 0.003129309, 0.018951826, -0.028633595, 1.05002015E-4, 0.0136394715, -0.030997591, -0.022697037, -0.034928735, 0.013174641, 0.01852684, -0.021422071, 0.016375335, 0.004206721, -0.024782136, -0.02767737, -0.015724571, 0.009681767, -0.039444238, -0.029058583, -0.0036721653, 0.01571129, -0.021315824, 0.0025217086, -0.16585173, -0.0031309694, 0.013174641, -0.0079818135, 0.0027790258, 0.022776723, 0.009190374, -0.016694076, -0.011541092, -0.0021349026, 0.011487968, 0.008320476, -0.050334565, -0.018128412, 0.022683756, 0.0039743055, -0.024038406, 7.0762227E-4, 0.027039887, 0.007822443, -0.0031508906, -0.031183524, 0.01511365, -0.019031512, 0.0074173757, 0.022471262, 0.0070056682, 0.0380099, 0.02167441, 0.012669967, 0.007941971, -0.045420635, 0.020877555, -0.02572508, 0.0043196087, -0.014144145, -0.018274501, 0.008207588, 0.012948865, 0.056204718, 0.0016875028, 0.007689634, 0.029377323, 0.017769828, 0.026495371, 0.02349389, -0.024224339, -0.0073841736, 0.0012243318, -0.014994122, 0.059923366, -0.0021581443, 0.0224447, -0.0020834391, 0.031130401, 0.0122649, -0.007424016, 0.016547985, 0.028633595, -0.029457008, -0.024848541, -0.021076769, -0.0057771862, -0.006597281, -0.002963298, -0.045819063, -0.017703423, 0.02916483, -0.02903202, -0.0061158487, 9.047605E-4, -0.002335776, -0.0019639113, 0.006826376, 0.025512585, 0.009608722, -0.021528319, 0.011142665, 0.026880516, -0.0066138823, -0.01810185, 0.033335026, -0.014117584, 0.022816565, -0.017716704, 0.0014210549, 0.0023606778, 0.022962654, 0.004432496, 0.003112708, -0.026973482, -0.028792964, 0.021143174, 0.006042804, 0.005146344, 0.009847778, -0.002063518, -0.008911476, -0.0020004336, 0.013971494, -0.0053920406, -8.4167626E-4, -0.038913, 0.008347038, 0.03500842, -0.009681767, 0.017623737, 0.029563256, 0.03545997, 0.0064744325, -0.017530771, 0.020532252, 0.014104303, 0.042711336, 0.01211881, 0.011155945, -0.013161359, -0.03158195, 0.016561266, -0.006119169, 0.027411751, -0.02483526, -0.024556361, 0.016853446, -0.011434845, -0.05487663, -0.07389486, -0.0021498436, 0.021754093, 0.017318277, -0.021820499, -0.0074704993, -0.010458699, 0.026415685, 0.0027408432, 0.037797406, 0.0041834796, -0.024755575, 0.004664912, 0.017119065, 0.013493381, 0.009568879, 0.004395974, -0.0027142814, -0.05822341, 0.040559832, -0.027252382, -0.023400923, 0.005252591, -0.003486233, -0.0040938337, -0.0024436833, -0.01525974, 0.03036011, 0.027252382, 0.008101341, 0.0018742653, -0.023002498, 0.008041577, 0.0215416, -0.016959693, -0.014688661, -6.146561E-4, -0.02662818, 0.012218417, -0.03277723, -0.0038946203, 0.004455738, -0.007835723, -0.018473715, -0.013891809, -0.01047862, -0.025220405, 0.022351734, 0.011361799, -9.7199494E-4, -0.018978389, -0.007556825, 3.8701337E-4, -0.011580934, -0.0020386162, -0.0302273, -0.005893394, -9.073544E-5, -0.009714969, 0.008838431, -0.0215416, 0.006507635, -0.014104303, 0.006520916, 0.0015314524, -0.024317306, 0.0064146686, 0.008798588, 0.029908558, -0.017637018, 0.003921182, 0.009967307, -0.010126676, 0.019562747, -0.04310976, 0.008685701, -0.016441738, -0.008772027, 0.011800068, 0.015804257, -0.026309438, -0.010339171, 0.0067832135, -0.034503747, 0.012178574, 0.038355205, 0.010339171, -0.013891809, 5.997151E-4, -0.046376858, 0.029457008, 0.025539147, 0.044198792, 0.008347038, -0.018154973, -0.02288297, -0.0119262375, 0.0100669125, -0.011328598, -0.01047862, -0.03272411, -0.011335238, -0.0807478, 0.021448633, 0.009044285, -0.013772281, -0.009954025, 0.023998564, 0.022006432, -0.008891555, 0.022404857, 0.009289981, 0.006826376, -0.0010209682, 0.008625937, 0.012517236, -0.020837713, -6.984917E-4, 0.00493717, -0.031103838, 0.0072513646, 0.022112679, 0.0031558708, 0.0069791065, -0.010651272, 0.022032993, -0.034450624, 0.005309035, -0.029457008, 0.014263674, -9.3464245E-4, -0.008851712, 0.016694076, -0.023706384, 0.004130356, 0.059870243, -0.018872142, -0.007955251, -0.008479847, 0.006985747, -0.008048218, -0.023068901, -0.02123614, -0.013539865, -0.029828874, 2.2536007E-4, -0.002603054, 0.0029948403, 0.008366959, -0.0041867997, 6.4578315E-4, 0.014117584, 0.005103181, 6.1880634E-4, -0.0034762723, -0.043030076, 0.012596922, -0.025804766, 4.3702422E-4, -0.002963298, 3.2351413E-4, 0.0066537247, 0.043561313, 0.0087454645, 0.021780657, -0.005096541, -0.005624456, -0.012052406, -0.011627417, -0.00568754, 0.0018211417, -0.020306477, 4.081798E-4, -0.008712262, 0.021262702, 0.021714251, -0.016375335, 0.0072048814, -8.1760465E-4, -0.0132476855, -0.014237111, 0.012284821, -7.4580486E-4, 0.006225416, -0.008957959, 0.00433621, 0.013307449, 0.0036754857, -0.019828366, 0.02004086, -0.022856407, 0.020133825, -0.029005459, 0.023865756, -0.020718185, -0.0043129683, 0.020054141, 0.003469632, -0.0037916934, -9.944064E-4, 0.028102359, 0.0052459505, 8.454115E-4, 0.011893035, 0.0030728653, -0.017451087, -0.0024320625, 0.002780686, -0.027278943, -0.03232568, 0.0023606778, 0.0146621, -0.0098677, -0.014781628, -0.014091021, 0.009967307, -0.0107907215, 0.0127098095, -0.004967052, -0.019244006, -0.025818046, 0.032352243, 0.04233947, 0.01286918, -1.3011119E-4, 0.0037186486, 0.03468968, -0.015392548, 0.018367467, -0.0051131416, 0.020505691, -7.5037015E-4, 0.017251873, 0.016401896, 0.0028537307, -0.019323692, -0.007888847, -7.047171E-4, -0.024330586, 0.0054152817, 0.0093032615, 0.089831926, 0.027863303, -0.008127904, -6.847958E-4, -0.0042100414, 0.035327163, 0.008360319, 0.0070455107, -0.033839703, -0.019695556, 0.02034632, 1.7690557E-4, -0.021222858, 0.0012010903, -0.044517536, 0.03516779, 0.02423762, 0.021621285, 0.005896714, -0.014675381, 0.03171476, -0.018154973, 0.0035393566, -0.005040097, 0.011288755, 0.0047944007, 0.032219432, 0.036256824, -0.013705876, -0.03604433, 0.016680796, 0.008041577, -0.0153128635, -0.0031973736, 0.011461406, 0.010432137, -0.00973489, -0.012450832, 0.025977416, 0.0049504507, 0.003831536, 0.006600601, -0.0031641715, -0.013891809, -0.0010143277, 0.0041768393, -0.011302035, -0.027159415, -0.054079775 ], - "id" : "4d0567e6-c7fa-44e9-aaf8-edbb6c31be2d", - "metadata" : { - "name" : "VeloCore X9 eMTB" - }, - "text" : "price: 1299.99\nname: VeloCore X9 eMTB\nshortDescription: The VeloCore X9 eMTB is a light, agile and versatile electric mountain bike designed for adventure and performance. Its purpose-built frame and premium components offer an exhilarating ride experience on both technical terrain and smooth singletrack.\ndescription: ## Overview\nIt's right for you if...\nYou love exploring new trails and testing your limits on challenging terrain. You want an electric mountain bike that offers power when you need it, without sacrificing performance or agility. You're looking for a high-quality bike with top-notch components and a sleek design.\n\nThe tech you get\nA lightweight, full carbon frame with custom geometry, a 140mm RockShox Pike Ultimate fork with Charger 2.1 damper, and a Fox Float DPS Performance shock. A Shimano STEPS E8000 motor and 504Wh battery that provide up to 62 miles of range and 20 mph assistance. A Shimano XT 12-speed drivetrain, Shimano SLX brakes, and DT Swiss wheels.\n\nThe final word\nThe VeloCore X9 eMTB delivers power and agility in equal measure. It's a versatile and capable electric mountain bike that can handle any trail with ease. With premium components, a custom carbon frame, and a sleek design, this bike is built for adventure.\n\n## Features\nAgile and responsive\n\nThe VeloCore X9 eMTB is designed to be nimble and responsive on the trail. Its custom carbon frame offers a perfect balance of stiffness and compliance, while the suspension system provides smooth and stable performance on technical terrain.\n\nPowerful and efficient\n\nThe Shimano STEPS E8000 motor and 504Wh battery provide up to 62 miles of range and 20 mph assistance. The motor delivers smooth and powerful performance, while the battery offers reliable and consistent power for long rides.\n\nCustomizable ride experience\n\nThe VeloCore X9 eMTB comes with an intuitive and customizable Shimano STEPS display that allows you to adjust the level of assistance, monitor your speed and battery life, and customize your ride experience to suit your needs.\n\nPremium components\n\nThe VeloCore X9 eMTB is equipped with high-end components, including a Shimano XT 12-speed drivetrain, Shimano SLX brakes, and DT Swiss wheels. These components offer reliable and precise performance, allowing you to push your limits with confidence.\n\n## Specs\nFrameset\nFrame\tVeloCore carbon fiber frame, Boost, tapered head tube, internal cable routing, 140mm travel\nFork\tRockShox Pike Ultimate, Charger 2.1 damper, DebonAir spring, 15x110mm Boost Maxle Ultimate, 46mm offset, 140mm travel\nShock\tFox Float DPS Performance, EVOL, 3-position adjust, Kashima Coat, 210x50mm\n\nWheels\nWheel front\tDT Swiss XM1700 Spline, 30mm internal width, 15x110mm Boost axle\nWheel rear\tDT Swiss XM1700 Spline, 30mm internal width, Shimano Microspline driver, 12x148mm Boost axle\nTire front\tMaxxis Minion DHF, 29x2.5\", EXO+ casing, tubeless ready\nTire rear\tMaxxis Minion DHR II, 29x2.4\", EXO+ casing, tubeless ready\n\nDrivetrain\nShifter\tShimano XT M8100, 12-speed\nRear derailleur\tShimano XT M8100, Shadow Plus, long cage, 51T max cog\nCrankset\tShimano STEPS E8000, 165mm length, 34T chainring" - }, - "8cdc9162-19c1-4881-8ffd-81d47fcced0f" : { - "embedding" : [ 0.012304231, 0.00832849, -0.020221438, -0.016273117, 0.0061349785, 8.589827E-4, -0.004883991, -0.023731057, 0.0034924822, -0.051657204, 0.0023151832, 0.0148199145, -0.034054272, -0.020495627, 0.006426304, 0.0246633, -8.7483425E-4, -0.014326374, 0.00709464, -0.023484286, 0.020070633, 0.011851819, -0.0031771648, -0.0012364209, 6.5633986E-4, 0.0031223272, 0.017136812, -0.0024008674, -0.004277348, -0.023415739, 0.01690375, -0.009027672, -0.021743186, -0.016396502, -0.012352214, -0.004448716, 0.012626403, -0.0020375669, 0.030681748, 0.015354583, 0.029420478, 0.026692297, -0.033478476, 0.0023340338, -0.0088768685, 0.020194018, 0.024156049, -0.01019983, -0.0055009164, 0.020948038, -0.0055694636, 0.023731057, -0.018219858, -0.0010881876, 0.008191396, -0.006487997, 0.008397038, 0.027583411, 0.024992326, -0.0015560224, 0.0032954088, 0.021414159, -0.024704428, 0.0041162623, -0.009260733, -0.03704293, 0.0032405711, 0.014710239, -0.010275233, 0.0029252537, 0.015985217, 0.026335852, 0.025115712, 0.001645134, 0.029502735, -0.038715485, -0.009411537, -0.013846544, 0.001118177, 0.0013692313, 0.025472157, -0.028899519, -0.011838109, 0.021811733, 0.022730267, -0.008917997, -0.013065105, 0.018219858, -0.012845754, 0.002440282, -0.003062348, 0.030188207, -0.01033007, 0.021208517, 0.025773764, -0.012249392, 0.0045069815, 0.011536501, -0.0061178417, -0.03783808, -0.013558646, 0.00796519, -0.006278928, -0.018795654, -0.027473737, -0.03487684, -0.010014753, -0.0057476866, -0.006563399, -0.004085416, -0.018110182, 0.017150521, 0.002880698, 0.009514358, 0.0075059235, 3.0931944E-4, 0.018000508, -0.0023563115, 0.016396502, -0.019988377, 0.030818842, 0.013963074, 0.022346402, -0.04104609, 7.698712E-4, 0.03213495, -0.005209591, -0.009740564, -0.01282519, -0.0075059235, 0.01619086, -0.0013718017, 0.006491424, 0.0074099572, -0.0068273055, 0.006577108, -0.02138674, 0.0046200845, -0.039702564, 0.0031857332, -0.005319266, 0.03484942, -0.0069472636, 0.01591667, -0.016848912, -0.017808575, -6.6994224E-5, 0.013010267, 0.011310295, -0.020701269, 0.015505387, -0.0083422, 0.020714978, 0.028954357, 0.010268377, 0.0035815935, 0.014298956, 0.008794611, -0.0149433, 0.009452665, -0.011015543, 0.02240124, 0.011399407, -0.020605301, 0.018781945, 0.020673849, 0.0018182157, -0.004219083, -0.0022055076, -0.0042259376, -0.026815683, 0.009480084, -0.03633004, -0.011769562, 0.0033416783, 0.015573935, 0.01246189, -0.019810155, -0.008828885, 0.0069129895, 0.009411537, -0.008753483, 0.019028716, 0.029776923, -0.0030811988, -6.3406205E-4, 0.0012826903, -0.025280224, -0.0027281805, 0.017877122, 0.018260986, -5.895063E-4, -0.0024437094, 0.0017068264, -0.58566767, -0.0288721, 0.007663582, -0.018041635, -0.008040592, 0.026198758, -0.004472708, 0.007492214, -0.024238307, 0.027021324, -0.017548095, 0.047215343, -0.0026682015, 0.0013906523, -0.023264935, -0.020975458, 0.008568406, -0.012715514, 0.008376474, 0.0033948023, -0.038468715, 0.0016956875, -0.019453708, 0.009521212, -1.7886548E-4, -0.002440282, 0.0093772635, -0.0020084344, 0.0045104087, -0.01716423, -0.035946175, 0.03885258, 0.0075539066, -0.014655401, 0.041183185, -0.041457374, -0.009041382, 0.01642392, 0.03737196, 0.011502228, -0.027610831, -0.020536754, -0.028570492, -0.007643018, -0.023223806, 0.013846544, 0.03388976, -0.0070021013, 0.008383328, -0.04652987, 0.0066627925, 0.022771396, 0.0155190965, -0.011502228, 0.0034976231, -0.015532806, 0.019261776, 0.008479294, 0.0071837516, 0.013675176, -0.014751367, 0.031394638, -0.007039802, 0.005559182, -0.010480874, 0.0066456557, -0.030517234, -0.00747165, 0.010755063, -0.027268095, -9.5623406E-4, 0.01418928, 0.016259408, 0.013455824, 0.010014753, 0.041731562, 0.049463693, 0.0039791674, 0.01034378, 0.029530155, 0.016629562, -0.003680987, 0.014778786, -0.0323543, 0.051191084, -0.0027915866, -0.029064033, -0.004472708, 0.0031754512, -0.014449759, 0.040250942, 0.0072591533, 0.020852072, 0.01195464, -0.013531227, 0.013236473, -6.0021685E-4, 0.01690375, -0.008815176, -0.0358365, -0.009007108, 0.02985918, 0.030544654, -0.012873173, 0.014298956, 0.016958589, -0.0034633495, 0.007732129, 0.0051136245, -0.020728687, -0.0021678067, -0.025979407, -0.019590802, 0.007122059, -0.009809111, -0.034767162, 0.0027761634, 0.02192141, 0.023004455, -0.022702849, 0.016519886, 0.0046783495, 0.035013933, 0.020372242, -0.022730267, -0.006933554, 0.037426796, 0.0013709449, -0.0036432862, 0.0014309238, 0.034712326, 0.020235147, 0.043239605, -0.010659097, 0.025458448, 0.0046954863, 0.02562296, 0.020893201, 0.0038832014, -0.033423636, -0.038879998, -9.965056E-4, -0.0219077, -0.037399378, -0.014038476, 0.004863427, -0.020440789, 0.0075470516, 0.022058504, -0.016300535, -0.028789843, -0.015039266, -0.0110909445, -0.003944894, -0.001681978, -0.031230126, -0.04376056, -0.03287526, 0.004297912, -0.019673059, 0.0060595768, 0.013229619, -0.01620457, -0.016136022, -0.013784851, -0.0046612127, 0.0038352185, 0.011502228, 0.009507503, -0.04504925, -0.023552833, -0.020673849, -0.013339294, 0.00860268, -0.013387277, 0.0058882083, -0.02591086, -1.6055051E-4, 0.008698646, -0.021112552, -0.0148336245, 0.019344034, -0.06827306, 0.0024814103, 0.020029506, 0.021537544, 0.024814103, 0.006974682, -0.0026253595, 0.0043184767, -0.0031051903, 0.0071974606, -0.02362138, 9.4937935E-4, 1.463323E-5, -0.004277348, 0.002171234, -0.008904288, 0.005117052, 0.014518307, 0.022223018, 0.019357743, 0.026706006, -0.008266798, 0.023182679, -0.013771142, 0.026568912, 0.013051395, 0.014669111, 0.022606881, 0.018027926, -0.02540361, 0.0034376443, -0.004798307, -0.009288152, -7.90007E-4, 0.010090155, 0.0358365, 0.0076772915, -1.542313E-4, 0.0072797174, 0.019069843, 0.034383297, 0.008561551, -0.016108602, 0.0051821717, 0.016835203, 0.029530155, 0.011872383, -0.019439999, 0.004883991, 0.012345359, 0.0085204225, -0.008678081, 0.011769562, -0.004452144, -0.0036912693, -0.02288107, 0.046392776, -0.013414696, 0.019001296, 0.023086712, 0.018823074, -0.023840733, 0.030955937, 0.008445021, 0.040415455, 0.022072213, 0.027555993, 0.015546516, -0.01082361, -0.008362764, -0.002601368, 0.030489815, 0.0041848095, -0.0022757687, -0.0051821717, 0.016396502, 0.0070877853, 0.02489636, 0.032299463, 0.013373568, 0.017835993, -0.009809111, 0.029036613, -0.01938516, -0.030462395, 4.4941288E-4, -0.010672806, -0.014723948, 0.013270747, -0.014312665, -0.0031891607, 0.0048085894, 0.007067221, 0.0064468686, 0.024786685, 0.0013992207, -9.4680884E-4, 0.033944596, -0.013030832, -0.017342454, 0.0029355357, 0.03287526, -0.005322694, 0.007882933, 0.0063714664, -0.0037049786, -0.0126058385, 0.028789843, 0.009233314, -0.008431312, -0.005497489, 0.020742396, 3.3181152E-4, -0.0076567275, 0.039784823, -0.010001043, -0.02862533, 0.0046852045, -0.042142846, 0.01295543, 0.01764406, -0.007876079, 0.033999436, -0.005202736, 6.147831E-5, -0.02090691, 0.02688423, -0.016547306, 0.008938561, -0.029310802, -0.017630352, -0.02663746, -0.010830465, -0.013702595, 0.012139717, -0.020358533, 0.018315824, -0.04227994, -0.027980985, -0.023045585, -0.02168835, -0.011310295, 0.030983355, 0.03879774, -0.017040845, -0.009754273, -0.0110909445, 0.009452665, 0.002848138, -0.0033091183, 0.0035815935, 0.021756897, 0.0019364597, 4.5369708E-4, -0.021414159, 0.006755331, -0.012400197, -0.01468282, -0.009185331, -0.03010595, 0.012468744, 0.017479548, -0.00430134, -0.03800259, -0.01616344, 0.017342454, 0.0071083494, 0.001719679, 0.011796981, -0.006923272, 0.016218279, -0.019892411, -0.004380169, 0.0105768405, 0.0073482646, -0.014641692, -0.012187701, 0.02013918, 0.03208011, -0.022867361, 0.022634301, -0.008246234, 0.008890578, 0.0022003667, 0.016807785, 0.017136812, 0.023059294, 0.0032919815, 0.0028772706, 0.021770606, 0.0032714172, -0.010295796, 0.021702059, 0.002445423, -0.008527277, 0.010117574, 0.0032971224, -0.0024094358, 1.985728E-4, -0.022935908, -0.007876079, -0.030051112, 0.004623512, -0.038907416, 0.022360113, 0.006745049, -0.0063509024, 4.6826337E-4, -0.013250182, 0.0057888147, 0.010720789, -0.0027453173, -0.03493168, -0.010960705, -0.0149433, 0.04005901, 0.017219068, -0.018247277, 0.027199548, -0.02290849, -0.007163187, -0.0047057685, -0.024581043, 0.009747419, -0.017369872, 0.0041950913, -0.003127468, -0.0012364209, 0.010432891, 0.012475599, 0.010837319, 0.02462217, -0.0015774434, -0.0139767835, 0.006594245, -0.00947323, 0.013010267, -0.0053089843, 0.01244818, -0.0023460295, 0.0037323975, -0.011851819, 0.020098053, -0.027747925, 0.002015289, 0.015491677, 0.022017375, 0.0024745555, 0.0019518828, -0.0071152044, -0.010103864, -0.005857362, -0.02492378, 9.5966144E-4, -0.006515416, -0.0014463469, -0.004448716, -0.0034564948, -0.01564248, -0.013846544, 0.008746629, -0.025718927, 0.020289985, -0.038989674, 0.03712519, 0.0092058955, -0.023552833, 0.0338075, -0.0034325034, -0.01318849, -0.030654328, 0.012886882, 0.014381212, 0.022894781, -0.005432369, 0.02440282, -0.029722085, -0.030736584, -0.012516727, 0.012893737, 0.0039860224, -0.019960959, -0.015573935, 0.010816756, 0.0070329476, 0.016327955, -0.015039266, -0.02216818, -0.01742471, 0.013250182, -0.009925641, 0.038907416, -0.021441579, 0.0012295662, -0.010467164, -0.0077595483, -0.025006035, -0.00947323, -0.003504478, -0.023511706, 0.011666741, 0.034026854, 0.012036896, 0.018617433, 0.010227249, 0.020056924, 0.008527277, 0.0065531167, -0.014477178, -0.0031326092, -0.037426796, 0.0020598448, 0.032546233, 7.647302E-4, -0.0253899, -0.018014217, -0.015779575, 0.02840598, -0.0011421685, -0.0062960647, -0.013284456, -0.047187924, -0.002327179, -0.023210097, -0.0010899012, -0.012509872, -0.029475316, -0.010933286, 0.013510662, 0.004558392, -0.0033176867, -0.015998928, 0.011358279, -0.0144908875, 0.041923497, 6.147831E-4, 0.027816473, -0.016341664, -0.037234865, -0.031175287, -0.05796355, 0.0044589983, -0.03589134, 0.020070633, -0.0029783777, -0.011515938, -0.009322425, 0.0023066148, -0.00847244, -2.7526004E-4, 0.0069095623, 0.0023031875, 0.0010933286, -0.0298866, -0.024416529, -0.015039266, -0.04406217, 0.010803046, 0.002736749, 0.030955937, -0.02813179, -0.01343526, 0.016369082, 0.002279196, 0.012832045, 0.00895227, 0.005346685, 0.030188207, -0.02463588, -0.004133399, -8.555553E-4, -0.001075335, -0.009774838, 0.014038476, 0.036631647, -0.009130493, -0.008630098, -0.010028462, 0.0057751057, -6.5805356E-4, -0.02264801, 0.016369082, 0.041018672, 0.0022603455, -0.02416976, -0.001622856, -0.030681748, 0.015724739, 0.0062583634, 0.0074990685, 0.011632468, -0.0050964877, -0.0040819887, 0.020002086, 0.0018096473, 0.016999718, 6.5291254E-4, -0.009829675, 0.0129485745, -0.001085617, -0.01069337, -0.00721117, -0.020468207, 0.068108544, -0.021702059, -0.0068718614, 0.011392552, 0.004493272, -0.016862623, -0.01442234, -0.012928011, 0.030736584, -0.031010775, 0.009713145, -0.022634301, 0.0076978556, -0.026514076, -0.019248066, -0.0114199715, -0.008376474, -0.005840225, -0.014518307, 0.0057853875, -0.018411791, -0.005363822, -0.010165556, -0.0074990685, -0.029557573, -0.0100627355, -0.0056414385, -0.010789337, -0.046200845, -9.5377065E-5, -0.053082988, 0.021756897, 0.046886317, 0.012173991, -0.024032664, 0.0035027643, 0.027185839, -0.03284784, 0.0012167136, -9.588046E-4, 0.019769026, -0.02463588, 0.015806995, -0.0020170028, -0.015998928, 0.011632468, -0.001977588, -0.0053295484, -0.03208011, 0.023018165, -0.0052472916, -0.0044864174, -0.014559435, 0.013346149, 0.0126058385, 1.391295E-4, -0.017479548, -0.037152607, 0.014244118, 0.0018593441, 0.0033605287, 0.0048291534, -0.023415739, 0.025239095, -0.009109929, -0.012002623, -0.013839689, -0.012646967, -0.005685994, 0.014038476, 0.032052692, -0.032518815, 0.0061555426, -0.029557573, -0.016958589, -0.009754273, 0.024964906, -0.0145045975, -0.008684936, 0.007924061, -0.009932496, 0.0041094073, 0.035233285, -0.0019690196, -0.034959096, 0.009027672, -0.025239095, -0.029228546, -0.02440282, 0.008753483, 0.05823774, 0.017548095, 0.0016314244, -0.014463469, -0.003160028, -0.034767162, -0.01693117, 0.0044418615, 0.008369619, 0.010871593, 0.00709464, -0.008026882, 0.002359739, 0.0070329476, 0.029420478, -0.02087949, 0.005696276, 0.008965979, 0.028926939, 0.015793286, 0.007711565, -0.04307509, 1.4619842E-4, 0.014353793, 0.023799604, 0.022716558, -0.007451086, 0.005278138, -0.0034222212, 0.011467954, 0.0035884483, 0.02614392, 0.0055660363, -0.0114611, -0.06405055, -0.01964564, 0.015889252, 0.009233314, 0.008157122, 0.0018884767, -0.0019021861, -0.0021095416, 0.011022397, -0.00969258, -0.014532017, -0.0010119288, -0.029749505, 0.02958499, -0.012921155, -0.01420299, 0.04853145, -0.007999464, -0.008499859, 0.013544936, 0.015464258, 0.0029852325, -0.010247814, -0.016492467, -0.04085416, 0.0074853594, -0.014038476, 0.014449759, -0.008726064, -0.014792495, -0.004709196, -0.040250942, -0.006169252, 0.026157629, -3.840788E-4, -0.03128496, -0.028981775, 0.015697319, -0.016602144, 0.052863635, 0.0057648234, -0.011371988, -0.028680168, 0.015148941, 0.017479548, -0.013065105, -0.019289196, 0.027679378, 0.0035610294, -0.009103075, -0.008650662, 0.20553206, -0.012359069, 0.01920694, 0.023292353, 0.011296586, -0.01059055, 0.02512942, 0.0024694146, -0.0066182367, -0.010172411, 0.022346402, 0.029173708, -0.0037940901, 0.0029012621, 0.022977037, -0.0114611, -0.040689643, -0.0107482085, -0.024210887, -0.007930917, -0.0064571504, 0.009480084, -0.039428376, -0.022949617, 0.026596332, 0.0013820839, -0.011522792, -0.014655401, 0.018877912, 0.014874753, -0.012770352, 0.008801467, -0.015327164, -0.015573935, 0.009438956, -0.0029303948, 0.009390973, 0.006015021, 0.0026219322, 0.028159209, 0.0029303948, 0.008013173, 0.037728403, -0.02238753, -0.006642228, -0.04307509, -0.02039966, 0.0053021293, -0.016602144, -0.007560761, -0.025115712, 0.015875543, 0.024430238, 0.033505894, 0.0035713115, -0.019714188, 0.0010033603, 0.005970465, -0.0033125456, -0.0032388575, -0.041210603, 0.035781663, -0.011207474, 0.031476896, -0.017328743, 0.005603737, -0.009151057, 4.2285083E-4, 0.009788547, -0.0029115442, -0.028707586, -0.004219083, -0.0025482439, 0.0022877643, -0.0438154, -0.04200575, 0.011440535, 0.01019983, 0.025499575, 0.016081184, -0.012667531, -0.027268095, 0.0066765016, 0.0035336106, -0.0061555426, -0.04055255, -4.05714E-4, -0.011029252, -0.0046200845, -0.0021763751, 0.009685726, 0.02316897, 0.015985217, 0.0034976231, -0.0078623695, -4.140682E-4, -0.029283384, 0.024827812, -0.0064742872, -0.0013435261, -0.025266515, 0.044363778, -0.0040511424, -7.65587E-4, -0.02042708, -0.007855514, 0.005552327, -0.015820704, 0.026198758, -0.036439717, 0.0013949365, -0.04897015, 0.00491141, 0.0025602398, 0.0067381943, -0.010234104, 0.025266515, -0.009315571, 0.0072660083, -0.0039654584, 0.027172128, -0.005165035, 0.026445527, 0.00795148, 0.00883574, -0.020481918, -0.005713413, -0.016519886, -0.013928801, -0.03188818, 0.015094103, 0.014723948, 0.004476135, -0.004883991, -0.033067193, -0.019015007, -0.0037289702, 0.0024745555, 0.013462679, -0.010165556, 0.008506713, 0.018987587, 0.0031223272, -0.0149433, 0.011063525, -0.021962538, 0.0018216431, -0.007361974, -0.01820615, -0.0071083494, -0.015272327, -0.014710239, 0.00969258, -0.017068265, 0.028460817, 0.01743842, -0.020838363, -0.03534296, -0.017986797, 0.0022774823, -0.05220558, 0.011557066, 0.0021952256, -9.819393E-4, -0.021126261, -0.024868941, -0.17339711, 1.5755156E-4, 0.03956547, -8.658374E-4, 0.0053569674, 0.0151626505, 0.019261776, 0.022552043, -0.020029506, -0.0036124398, 0.017808575, -0.013736868, -0.038989674, -0.015409421, 0.0061144144, -0.002558526, -0.0028241465, 0.010254668, 0.0036330041, 0.013716304, -0.005607165, -0.007238589, -0.0042636385, -0.004949111, -0.009541777, 0.013544936, 0.013819125, 0.04148479, 0.0034650634, 0.0027418898, -0.0023871579, -0.024210887, 0.009041382, -0.013311875, -0.005305557, -0.00391062, -0.018014217, 0.016752947, -0.00882203, 0.04307509, 0.010542567, 0.013586064, 0.013380422, 0.0053021293, 0.006148688, 0.024594752, -0.0035027643, 0.019234357, 0.0148199145, -0.0013255323, 0.027761634, -0.014915881, 0.011906656, -0.0025516714, 0.0064400136, 0.005689421, -0.010405472, 0.0075813252, 0.010001043, -0.010042172, -0.028049532, -0.032957517, 0.024471367, -0.015258617, -0.012030042, -0.008986544, -0.011776417, 0.013771142, -0.027926149, -0.013798561, -0.010686516, 0.003358815, 0.0066011, 0.022634301, 0.028076952, 0.018823074, -0.004626939, -0.0051890267, 0.023525415, 0.0053535397, -0.010028462, 0.05552327, -0.0038523553, -0.0035267558, 0.008438166, -0.0236488, -0.01443605, 9.88794E-4, 0.0041711, -0.03528812, 0.0083490545, -0.03487684, -0.0055694636, -0.007492214, 0.015615063, 0.0021900844, 0.010103864, -0.017877122, 0.025760055, -0.007910352, 0.008794611, -0.01768519, -0.0442541, 0.01169416, 0.036549393, -0.0016597002, 0.009665161, 0.019234357, 0.011481664, -7.377397E-4, 0.007067221, 0.02066014, 0.03460265, 0.034712326, -0.0052233003, 0.033149447, -0.0472976, -0.024060084, 0.006080141, -0.0033228279, 0.041238025, 0.014984428, -0.0051581804, -0.0034530675, -0.010837319, -0.008109139, -0.078966424, -0.027898729, 0.02290849, -0.0059738923, -0.017397292, 4.3591764E-4, -0.01355179, 0.029255964, -0.006292637, 0.02018031, -0.023827022, -0.021962538, 0.014847334, 0.02565038, 0.006453723, 0.028022114, 4.2306504E-4, -0.025060873, 0.010357489, 0.032272045, -0.0037118334, -0.02314155, -0.020276275, -0.0036535682, -0.013743723, -0.01617715, -0.02636327, 0.021373032, 0.023470577, -0.0075264876, 0.017849702, -0.031449478, 0.004750324, -0.0053501124, -0.031394638, 0.010638532, -0.04153963, -0.0042430745, 0.036686487, -0.040388037, 2.04892E-4, -0.008657517, 0.006100705, -0.017054554, -0.018754527, -0.010384908, -5.8779266E-4, 0.036302622, 0.0021780888, -0.009055091, 0.0056140195, -0.008582115, 0.010631678, -0.008513568, 0.012667531, -0.008931706, 0.013359859, 0.0065428345, -0.015313455, 0.0055557545, -0.007869224, 0.008273653, 0.01295543, 0.0115776295, 0.03756389, -0.003595303, -0.010172411, 0.018356953, 0.044308938, -0.01342155, -0.013764287, 0.006930127, -0.026692297, 0.03805743, -0.016807785, 0.0149433, -0.03493168, -0.020344822, 0.016780365, -0.017602934, -0.015615063, -0.0107482085, 0.017753737, -0.04258155, 0.01594409, 0.04557021, 0.015395711, 0.0011147496, 0.0030674892, -0.018096473, 0.03114787, 0.012283666, 0.027021324, -0.00441787, -0.0033656699, -0.022360113, -0.008465585, 0.014806205, -0.018480338, -0.0075264876, -0.049957234, 0.005305557, -0.07255041, 0.031449478, -0.004435007, -0.028296303, -0.004198519, -0.009624033, 0.01568361, -0.0017719463, 0.01442234, 0.014532017, -0.0039688856, 0.020605301, -0.006803314, -0.011755853, -0.0053741043, -0.0077869673, 0.0039860224, -0.007773258, 0.03561715, 0.03841388, -0.024855232, 0.004455571, 0.012126008, 0.0148336245, -0.0073482646, 0.017561805, -0.008780902, 0.0058128065, 0.011248603, -0.021304484, 0.051712044, 0.009445811, 0.00397574, 0.022538334, -0.023635091, -0.010049026, 0.011344569, 0.00982282, -0.005819661, -0.032683328, -0.046392776, -0.01181069, -0.013387277, -0.024046374, -0.004798307, 0.025746346, 0.016314244, 0.010899012, 0.007015811, 0.013928801, 0.01913839, 0.008465585, 0.017767446, -0.035507474, 0.007615599, -0.027980985, -0.006364612, 0.011371988, 0.0021558108, -0.002704189, 0.0497653, -6.7390513E-4, 0.0019535965, -0.035671987, 0.005168462, -0.017575514, -0.0078486595, -0.00860268, 0.020523045, -0.006230945, -0.040141266, 0.0039688856, 0.0136203375, 0.016848912, 0.001036777, 0.0103917625, 0.006234372, 0.026322143, -0.033697825, 0.010604259, 0.0085204225, -0.013736868, 9.947919E-4, 0.002477983, 1.6654839E-4, -0.008904288, -0.019344034, 0.0050108037, 0.0025688082, 0.010364343, -0.039017092, 0.011742143, -0.007903498, -0.005627729, 0.012804626, 0.005987602, -0.029009195, -0.009987334, 0.039784823, 0.029475316, -0.033259124, -0.0068135965, -0.016794076, -0.013949364, 0.012715514, 0.005439224, -0.017287616, 0.0027436034, 0.032463975, -0.0074099572, -0.008959125, -0.0057271225, -0.007985754, 0.0114199715, -0.017123101, -0.00782124, -0.0048668543, -0.017452128, -0.027734216, 0.03635746, 0.032217205, 0.011317151, 0.01764406, 0.01006959, 0.019810155, -0.0054597883, -0.0066182367, -0.0067621856, -0.0051307613, 0.004411015, 0.0099050775, -0.020810943, 0.01046031, 0.0071974606, -0.029228546, -0.007944626, -0.018877912, 0.0268431, 0.034246203, 0.116365805, 1.5690894E-5, -0.008780902, -0.009466374, -0.011029252, 0.016711818, 0.024018954, -0.022414949, -0.012537291, -0.036494553, 0.030297883, -0.0151763605, -0.04652987, -0.003766671, 0.0023014739, 0.0122768115, 7.394534E-4, 0.011310295, -0.009466374, -0.0054220874, 0.009027672, 0.019631932, 0.014093313, 0.0065599713, 0.002714471, 0.0032765584, 0.03537038, 0.0076772915, 0.0017445274, -0.018055344, 0.01121433, 0.017520675, -0.020125471, -0.008253088, 0.017219068, -0.012907446, -0.0039894497, 0.010117574, 0.039455794, -0.020893201, 0.01381227, -7.1888923E-4, -0.02588344, -0.012413906, 0.012269957, 0.0024951198, -0.0067587583, -0.027501155, -0.055386174 ], - "id" : "8cdc9162-19c1-4881-8ffd-81d47fcced0f", - "metadata" : { - "name" : "SwiftRide Hybrid" - }, - "text" : "4 | 29.4 | 29.4 | 29.4 |\n| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 |\n| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 |\n| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 |\n| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 |\n| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 |\n| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |\ntags: [bicycle, mountain bike, professional]" - }, - "11f83053-39e0-45ab-b8b7-6c540827826d" : { - "embedding" : [ 0.024404077, 0.0059942766, 0.0054739052, -0.021055022, -0.009460082, -0.0046599912, -0.0069849836, -0.010180596, -0.008219197, -0.024684276, 0.006234448, 0.00804574, -0.010447454, -0.008866326, 0.0013851549, 0.009893726, 0.011508211, 0.011067896, 0.019520594, -0.01908028, 0.00888634, -0.0031505811, -0.01646508, -0.0077388547, -0.014050024, -3.452463E-4, 0.042510327, -0.0030972096, -0.0076454547, -0.01982748, 0.020267794, 0.009973782, -0.015531081, -0.015264223, -0.014036681, -0.0017178922, 0.02492445, 0.008005711, 0.025511535, 0.009640211, 0.009293297, 0.0118551245, -0.008225868, -0.031889416, -0.0034557988, 0.03298353, 0.01814628, 0.0015010709, 0.0013242781, 0.013522981, -0.016598508, 0.016385023, -8.2850776E-4, 3.675539E-4, 0.009239925, -0.019734079, 0.017372394, 0.025831763, 0.028420277, 0.0024550848, 0.008906354, -0.001919703, -0.021495335, 0.006067662, -0.015744567, -0.018746708, 0.007605426, 0.006431255, 0.0049702125, 0.02152202, 0.012662367, 0.034077644, 0.017145565, -0.0017479137, 0.018359765, -0.032102905, -0.007918983, -0.01627828, 0.01687871, 0.0024617563, 0.011995224, -0.0418165, -0.0033907525, -7.343781E-5, 0.026939219, 0.013069324, -0.015451023, 0.016665222, -0.018132936, 0.021815564, -0.009306639, 0.011234682, -0.016771967, 0.003107217, 7.5105665E-5, -0.002638549, -0.010754339, -0.0014502013, -0.0019280422, -0.028793875, 0.0013542995, 0.0113080675, -0.016691908, -0.012242068, -0.019787451, -0.03922799, -0.016358336, 0.011868468, -0.0030388348, -0.028126733, -0.007265183, 0.00804574, 0.0071250834, 0.013969967, 0.029434333, -0.028126733, 0.03119559, 0.021495335, 0.002591849, -0.031409074, 0.0036125774, 0.030715248, 9.465086E-4, -0.041656386, 0.010827725, 0.012428868, -0.0048434553, -0.032076217, -0.009580168, -0.010327368, 0.009186554, -0.02202905, 0.013556338, 0.0061810766, -0.0034257774, 0.012608996, 0.0010182265, 0.022522734, -0.02217582, -0.017319024, 0.0067348047, 0.016264938, 0.0013984977, 0.014530366, -0.008179168, 0.0047367127, 4.945195E-4, 0.014863938, -0.011147954, -0.025324734, 0.030368332, -0.021201793, 0.02740622, 0.029300904, 0.0114948675, -0.003035499, -0.0034090988, 0.016211566, -0.004439834, -0.011908496, -0.016438395, 0.026565619, 0.013636395, -0.009113168, 0.0401353, 0.02820679, 0.022536078, -0.0013517977, -0.0032523202, -0.0039227987, -0.030795304, 0.021401936, -0.02451082, -0.0073185544, -0.008119126, 0.02975456, 0.006477955, -0.009720268, -0.024804363, 0.0019213707, 0.002081485, 5.754105E-4, 0.013176067, 0.025604934, -0.010747667, -0.0039494843, 0.01122801, -0.014743852, 0.010113882, -0.013382881, 0.021135079, 0.0044698557, 0.0018212994, -0.012702396, -0.5939171, -0.044725243, -0.0022249208, -0.015557766, 0.0051670196, 0.011941853, 0.0055272765, 0.022149134, -0.020387879, 7.893131E-4, -0.023456736, 0.037066445, -8.589461E-4, -0.014316881, -0.029034046, -0.019760765, 0.0138498815, -0.006731469, 0.01613151, -0.0013651407, -0.04138953, -0.017812708, -0.028446961, 0.027379533, 0.015531081, 0.0035992344, 0.022949707, -0.014663795, 0.0055906554, 0.003652606, -0.0412561, 0.032396447, -0.0057974695, -0.0075987545, 0.039601587, -0.042910613, 0.00855944, 0.011608282, 0.025364762, 0.026939219, -0.027886562, 0.0041062627, -0.0044598486, -0.012555624, -0.0053938483, 0.018960193, 0.055826496, -0.017999507, 0.0045999484, -0.048941582, 0.004399806, 0.009987125, 0.020614708, -0.009533469, 0.011801753, -0.02581842, 0.01960065, 0.012415525, 0.011674996, 0.0028303526, 0.00239671, 0.029114105, -0.013176067, 0.0020014278, -0.004710027, 0.017906109, -0.03170262, -0.03170262, 0.029807933, -0.0017846065, 0.006748148, 0.016011423, 4.0393403E-5, 0.020547993, 0.00823254, 0.02048128, 0.030902047, -0.0043764557, 0.01248891, 0.006244455, 0.03242313, 0.007011669, 0.005233734, -0.009233254, 0.020547993, -0.01725231, -0.02044125, -0.004740048, 0.012388838, -0.0023283279, 0.04336427, 0.016411709, 0.013676424, -0.010173925, 0.010354053, 0.021268507, 0.017319024, 0.025458163, -0.013983309, -0.033197016, -0.009827011, 0.010380739, 0.03330376, 0.022642821, 0.01814628, 0.024577534, 0.0013242781, 0.009713597, 0.015571109, -0.033890847, 0.026045248, -0.029727876, -0.02380365, -8.664515E-4, -0.020094337, -0.029541075, 0.002453417, 0.020174393, 0.02072145, -0.014743852, 0.010160582, 0.0020331172, 0.022936363, 0.009533469, -0.024737649, 8.5144077E-4, 0.025711676, 0.020334508, 8.822961E-4, 0.0010649264, 0.02839359, 0.013196081, 0.026111962, -0.02455085, 0.026618991, 0.005397184, 0.015571109, 0.02240265, 0.008339283, -0.031462446, -0.03784033, -0.0010474139, -0.020894907, -0.028260162, -0.013603038, 6.3795515E-4, -0.0059509124, 0.010507496, 0.0075520547, -0.018506536, -0.02100165, -0.027099334, -0.006944955, 0.0034624704, -0.02475099, -0.025765048, -0.038053814, -0.020868221, -0.019480566, -0.017932793, 0.011114596, 0.015144138, -0.022509392, -0.020387879, 0.0034724774, -8.0974435E-4, 0.012789125, 0.020334508, 0.004072906, -0.038934443, -0.0061076907, 0.0052303984, -0.014797224, 4.986891E-4, -0.01674528, 0.013402895, -0.022082422, -0.0067247977, -0.0067881765, -0.015370966, 9.023104E-4, 0.022242535, -0.052090496, 0.020681422, 0.04363113, 0.00940004, 0.027432906, 0.010700968, -0.00916654, 0.016411709, -0.020561336, 2.303727E-4, -0.015184166, -0.005547291, 0.0027653063, 0.0093199825, 0.015224195, -0.021268507, 0.011301396, 0.010987839, 0.024777677, 0.010954482, 0.01954728, -3.7964585E-4, 0.014637109, -0.010707639, 0.013756481, 0.001849653, 0.03578553, 0.022976393, 0.026058592, -0.044138156, -0.0054739052, 0.005614005, -0.010734325, -0.015771251, 0.0026001884, 0.023176534, 0.0010574211, -0.020241108, -0.006851555, -0.006264469, 0.045765985, -0.0077988976, 0.0016144852, 0.02165545, 0.016918737, 0.019200364, -0.0063411905, -0.022562765, -0.009546811, 0.019347137, 0.014863938, -0.019440535, 0.0037393344, -0.0037760274, 0.03690633, -0.014783881, 0.0470469, -0.026125306, 0.025991878, 0.036586102, 0.032022845, -0.030608503, 0.025338078, 0.008739568, 0.033650674, 0.019187022, 0.011921839, 0.02637882, -0.013296152, 0.0050169127, -0.020134365, 0.012055268, 0.018760052, 2.38295E-4, 0.011474853, 0.018012851, -0.016438395, 0.00925994, 0.029567761, 0.037199873, 0.028313532, 0.005290441, 0.001802953, -0.020547993, -0.036132444, 0.010747667, -0.007058369, -0.008586125, 0.00851274, -0.013576353, -0.027072648, -0.0052070483, 0.005593991, -0.007638783, 0.006524655, -0.0026118634, 0.024257306, 0.037306614, 0.0028286849, -0.036079075, 0.011708353, 0.02689919, -0.0031489132, -0.0055306125, 0.0062711406, -0.014370252, 0.00188301, 0.017505823, 0.027005933, 0.031836048, 0.0050169127, 0.022282563, -0.0335973, -0.015290909, 0.0069516264, 0.004996898, -0.0010382407, 0.012869181, -0.027886562, 0.008632826, 6.0334714E-4, -0.014823909, 0.03212959, -0.014530366, -0.0073785973, -0.027486276, 0.018933509, -0.0068282047, -0.009827011, -0.03933473, -0.023243248, -0.00479342, 0.006131041, -0.008632826, 0.010294011, -0.03554536, 0.02549819, -0.04157633, -0.012689053, -0.019093622, -0.024764335, -0.015010709, 0.022429336, 0.005380505, -0.0046566557, -0.0038193916, -0.0055272765, 0.0023116493, -0.0025401455, -5.441382E-4, -0.008112455, 0.017238965, -0.030902047, 0.025004506, -0.015144138, 0.0032022847, -0.0113080675, -0.0116683245, 8.847979E-4, -0.017292337, 0.008726225, 0.008913025, -0.008426012, -0.015664509, -0.01945388, 0.021201793, 0.01730568, -0.022375964, -0.00256016, 0.017572537, 0.0027136027, -0.015931366, -0.007845597, -0.0048567983, -0.0011174639, -0.0050536054, -0.03236976, 0.01922705, 0.019307109, -0.010640925, 0.024590878, -0.022082422, 0.0022716206, 0.024270648, -0.006361205, 0.012088625, -0.0059942766, 9.615193E-4, -0.012795796, 0.013229438, 0.024030477, -0.009693583, 0.024430763, 7.230158E-4, -0.02525802, 0.01262901, 0.006884912, 0.01337621, -0.0073919403, -0.013783167, -0.034104332, -0.031409074, 0.0022482707, -0.03180936, 0.021415278, -0.015050738, -0.0045599197, -0.002850367, -0.017932793, -0.0032056205, -0.0027019277, 0.0039594914, -0.022963049, -0.02492445, -0.028366905, 0.009113168, -1.902399E-4, -0.018453166, 0.032823417, -0.036772903, 0.008019054, -7.763872E-4, -0.021295194, 0.011554911, -0.008686197, 0.0059108837, -0.015944708, 0.021361908, 0.027539648, -0.00399952, 0.015024052, -0.006417912, 0.027459592, 0.0052604196, 0.012662367, -0.0356521, 0.019680707, -0.015918024, 0.020174393, 0.0057941335, 5.22873E-4, -0.008405997, 6.7589886E-4, -0.01080104, 0.017372394, 0.027085992, 0.026405506, -0.0029737882, 0.004409813, -0.012422196, -0.0058808625, -0.012468896, -0.018186308, -0.014476995, -0.027232762, -0.012335467, -0.010440783, -0.0049401913, -0.0064579407, -0.009086482, 0.018266365, -0.026138648, 0.017866079, -0.03757347, 0.011061225, -9.840354E-4, -0.0050969697, 0.028980676, -0.0019280422, 0.0067548193, -0.02385702, 0.019467222, 0.045499127, 0.0356521, -0.010821054, 0.021108393, -0.025524877, -0.028446961, -0.018693337, -0.0041663055, 0.012775782, -0.015451023, -0.03896113, 0.019040251, 0.026685705, 0.013809852, -0.023163192, -0.024804363, -0.007792226, 0.018239679, -0.0087729255, 0.02451082, -0.006791512, 0.014957338, -0.013836538, -0.022762906, -0.021868935, -0.019520594, -0.030555133, -0.008526083, -0.0057641123, 0.04485867, 0.030154847, 0.020694764, 0.00799904, 0.02858039, -0.0044231554, 0.019293765, -0.026979247, 0.0025618277, -0.053344727, 0.011434825, 0.026992591, 0.004012863, -0.020294478, -0.005090298, -0.021588735, 0.029354276, -9.131515E-4, -0.006628062, -0.014383595, -0.05566638, -0.007338569, -0.035278503, -0.009546811, -0.022042392, -0.008939711, -0.017479137, 0.037333302, -0.009793654, -0.0027369526, -0.001466046, 0.006264469, -0.031729303, 0.031595875, -0.001989753, 0.012835824, -0.013556338, -0.024070507, -0.023096478, -0.013663081, 0.011034539, -0.01108791, 0.020654736, 0.0033273739, -0.023870364, 0.01248891, -0.00128008, -0.020414565, -0.0116683245, 0.018386452, -6.663087E-4, -0.008145812, -0.028500333, -0.023269935, -0.02455085, -0.026031906, 0.010554196, -0.007431969, 0.033277076, -0.029968048, -0.014770538, 0.014917309, -0.005490584, 0.019533936, -0.009907068, 0.019387165, 0.012422196, -0.0018713351, -0.019987592, -0.005313791, 0.0072718547, -0.013529653, 0.019413851, 0.022442678, 0.01028734, -0.011041211, 0.019120308, -0.0032006167, -0.007758869, -0.02932759, -0.0022949707, 0.02118845, 0.0087729255, -0.020828193, 0.0055506267, -0.014130081, 3.2366843E-5, 0.011674996, 0.0035792203, -0.009907068, -0.02348342, -0.0020080993, 0.037680216, 0.0061810766, 0.0046099555, -0.012035253, 3.1585034E-4, 0.007732183, -0.014863938, -0.011354768, -0.0052604196, -0.009006426, 0.061217006, -0.014863938, -0.010881096, 0.030955419, 0.010821054, 0.0023683563, -0.015971394, -0.0017362387, 0.019760765, -0.015824623, 0.006070998, -0.0024350707, -0.0070650405, -0.024137221, 0.0045532486, -9.848693E-4, 0.008953054, -0.009153197, -0.0033573953, 8.2850776E-4, -0.011735039, -0.005313791, -0.025097907, -0.023043107, -0.022362622, -0.004986891, -0.0044598486, 0.006174405, -0.024110535, -8.5644436E-4, -0.035892274, 0.00837264, 0.0491017, 0.005874191, -0.022589449, -9.657932E-5, 0.017359052, -0.022709535, 0.023816992, -2.0764815E-4, 0.011007854, -0.02647222, 0.01248891, -0.0044831983, -0.013676424, -0.0032489847, 0.018413136, -0.018733365, -0.03362399, 0.023963762, -0.01024064, 0.0019180351, 0.005780791, 0.0015577781, 0.0041996627, 0.00785894, -0.020187736, -0.035705473, 0.015824623, -0.0044698557, -0.012248739, -0.013536324, -0.026819134, 0.013282809, -0.0129425675, 0.001581962, 0.014370252, -0.002778649, -0.0024250634, 0.022749564, 0.0020681422, -0.021388592, -0.002907074, -0.03567879, -0.020014279, -0.009900397, 0.019560622, -0.01590468, -0.0080524115, 0.006811526, -0.013689767, -0.012522267, 0.03255656, -0.01618488, -0.03717319, 0.001174171, -0.012001896, -0.038560845, -0.019867508, 0.012342138, 0.061910838, 0.028553704, -0.012682381, -0.0129492385, -0.006871569, -0.034451246, -0.02305645, -0.005780791, 0.01646508, 0.01127471, 0.022642821, -0.008919697, 0.00818584, 0.005553962, 0.029167475, -0.017919451, -0.00991374, 0.009106497, 0.02553822, 0.0030755275, -7.8889617E-4, -0.034317818, -0.013502967, 0.02652559, 0.03442456, 0.012689053, 0.01562448, -0.003198949, -0.0057274196, 0.025097907, -0.0043664486, 0.02483105, 0.010294011, -0.018466508, -0.04552581, -0.0024584206, 0.006944955, -0.0018996886, -0.008739568, 0.0010574211, -0.018880136, -0.02006765, -0.007965683, 0.0026652347, -0.0064712837, -0.00521372, -0.0093199825, 0.037359986, -0.009827011, -0.012782453, 0.041416213, 3.7735255E-5, -0.009373354, -0.0032256346, 0.019373821, 0.008292583, -0.020961622, -0.004009527, -0.048754785, 0.0042029987, 3.3419675E-4, 0.029461019, 0.004359777, 0.0012834156, 8.208981E-5, -0.013809852, -0.03223633, 0.03373073, 0.019854166, -0.013402895, -0.02320322, 0.019347137, -0.029114105, 0.024283992, 9.431729E-4, -0.0024967813, -0.052704267, 0.008679526, 0.009673568, -0.01216201, -0.003986177, 0.015304252, -0.009847025, -0.006668091, 0.003152249, 0.20238438, -0.0014702156, 9.7069255E-4, 0.011961867, -0.0010740997, -0.014383595, 0.01777268, 0.008085769, 0.0024250634, 0.0055406196, 0.007825583, 0.032609932, 0.011268039, -0.002406717, 0.020934936, -0.017359052, -0.040669017, -0.019360479, -0.014903966, -0.003559206, 0.0010315693, 0.00251346, -0.037973758, -0.031489134, 0.0082392115, 0.0017412422, -0.023990449, -0.019920878, 0.0018896816, 0.0060142907, -0.002416724, -0.003324038, -0.0011683336, 0.018239679, -0.02525802, 0.0013109352, 8.572783E-4, 1.1393545E-4, 0.0032423132, 0.040001873, 0.008085769, -0.012155339, 0.033036903, -0.039735015, 1.1747965E-4, -0.0014635441, -0.011541568, -0.0024667599, -0.028420277, -2.5935168E-4, -0.013282809, 0.0028937312, 0.03311696, 0.046780042, 0.0021798885, -0.026552277, 0.023269935, -0.012015238, 0.0052070483, -0.011161297, -0.039494842, 0.024470791, -0.0053338055, 0.032049533, -0.0063411905, 0.016451737, -0.0072985403, -0.008592797, 0.019854166, -0.002580174, -0.003175599, 0.010007139, -0.001963067, -0.02128185, -0.04040216, -0.030902047, 0.025845105, 0.0067348047, 0.009493439, 0.013062653, -0.010487482, -0.03082199, 0.009113168, 0.033517245, -7.100899E-4, -0.021668792, 0.008472712, -5.779123E-4, 0.009533469, -0.0011199657, -0.002418392, 0.0030488418, 0.013009281, 0.007852268, -0.0056840554, -0.010734325, -0.017225623, 0.032076217, -0.0032022847, -3.9444808E-4, -0.030795304, 0.046513185, -0.015504395, -0.013716453, -0.015277566, -0.008859654, -0.00381272, -0.009440068, 0.009640211, -0.03437119, -0.012422196, -0.030581819, -4.699186E-4, -0.015264223, 0.005884198, -0.014370252, 0.013402895, -0.0036792916, 0.004019534, -0.0016169869, 0.016625194, -0.0077255117, 0.03349056, 0.003839406, 0.015771251, -0.015811281, -0.031862732, 0.0010415764, -0.0091465255, -0.0343445, 0.01842648, -0.003359063, 0.017038822, 0.0012016906, -0.004059563, -0.0075787404, 0.0045999484, 0.03698639, 0.025151277, -0.025097907, 0.016865365, 0.0022332598, -0.015050738, -0.01174171, 0.022589449, -0.021668792, 0.010874425, 0.0042496985, -0.023269935, -0.005160348, -0.01687871, -0.010854411, 0.01683868, 0.0065646833, 0.0025851778, 0.010420768, -0.006244455, -0.046219643, -0.017105537, 0.016972108, -0.02549819, 0.010127225, 0.003442456, 0.0032239668, -0.014837252, -0.017972823, -0.16715926, -0.0016845352, 0.021895621, -0.01693208, -0.006211098, 0.0072184834, 0.024684276, 0.017065508, -0.014837252, 0.0028970668, 0.027753133, 6.696444E-4, -0.046646614, -0.008426012, 1.1935599E-4, -0.014423624, -0.011468181, -0.0056907265, 0.023550134, 0.0059709265, 0.0030738597, -0.024497477, -4.699186E-4, 0.0069516264, -0.024857735, 0.014783881, -3.4149364E-4, 0.031142218, 0.030688561, -0.0010524174, -0.023470078, -0.027939934, 0.009746954, -0.013149382, 0.0040662345, 0.0015019048, -0.0074119545, 0.024257306, -0.028340219, 0.045258958, 0.010827725, -2.3871197E-4, 0.017465794, 0.008472712, 0.00958684, 0.009380026, -0.010294011, 0.0033523918, 0.003035499, -0.002580174, 0.04245696, -0.020307822, 0.03298353, -0.012882524, 0.013089338, 0.014637109, -0.015984738, 0.020454593, 0.023029763, -0.021588735, -0.040242042, -0.042777184, 0.027619705, -0.0058208196, 3.118892E-4, -0.016024766, -0.008365968, 0.021908963, -0.032796733, 0.0044264914, 0.006618055, -0.012702396, -0.0071117403, -0.0014226816, 0.03685296, 0.0027986635, -0.03180936, -0.015597795, 0.03970833, -0.0028753846, -0.011027868, 0.050676156, 0.012382167, -0.0027286133, -0.009920411, -0.006581362, -0.0046099555, -0.0100471685, 0.014690481, -0.012588982, 0.0042163413, -0.029300904, 0.011054553, 0.0052370694, 0.016825337, 0.0014969013, 2.4100527E-4, -0.014783881, -0.010480811, -0.0025334742, 0.0026669027, -0.0049335198, -0.028073361, 0.028446961, 0.038293988, 0.0025117921, 0.0075053545, 0.018986879, 0.0017053833, 0.03567879, -0.015931366, 0.013502967, 0.014637109, 0.017599223, 8.009881E-4, 0.029674504, -0.033970904, -0.026605649, 0.009466754, 0.0050435984, 0.026232049, -3.0855346E-4, -0.015357624, 0.012548953, 0.0032990202, -0.010187268, -0.06735472, -3.767271E-4, 0.021962335, 0.03306359, -0.007358583, 0.013616381, 0.0054605627, 0.01211531, -0.007905641, 0.029834619, -0.0016645208, -0.03784033, -0.008719554, 0.037493415, 0.009066468, 0.0058441693, 0.008552768, -0.02717939, -0.003442456, 0.022149134, -0.006964969, -0.034824844, -0.0061377124, 0.017078852, -0.03597233, -0.012669039, -0.031515818, 0.025177963, 0.03026159, 0.002164878, 0.017198937, -0.016385023, -0.014623767, 0.02114842, -0.030741932, -0.011915168, 2.0160216E-4, 0.007165112, 0.037973758, -0.037653532, 0.013149382, -0.0012925889, 0.017158909, -0.023229906, -0.02193565, -0.02777982, -0.0022882991, 0.04560587, 0.0042029987, -0.039067872, -0.0035158417, -0.022469364, 0.001185012, 0.00406957, 0.033357132, 0.009033111, 0.010127225, -0.0014126746, -0.035892274, 0.030741932, -0.020694764, 0.034024276, -0.015264223, 0.024163906, 0.0030838668, 9.792142E-6, -0.015984738, 0.024951134, 0.04683341, -0.0042597055, -2.5184633E-4, -0.0050636125, -0.015757909, 0.03236976, -0.0468601, 0.00846604, -0.014823909, -0.022282563, 0.014743852, -0.022896335, -6.97998E-4, -0.019747421, 0.011488196, -0.035091702, 0.02389705, 0.036372617, 0.009159869, -0.019920878, 0.0022165815, -0.028233476, 0.026018562, 0.029060733, 0.039681643, 0.0061777406, -0.016731936, -0.0064012334, -0.008846311, 0.013209424, -0.014410281, -0.004916841, -0.056680437, 0.0012992603, -0.0787762, 0.033543933, 0.02305645, -0.01683868, -0.0053905123, -0.011808424, 0.022909679, -0.023336649, 0.013229438, 0.019427193, -0.024964478, 0.015197509, -0.0066113835, -0.0019213707, -0.014343566, 0.0022766243, 0.004543241, 4.7450518E-4, 0.014903966, 0.0087729255, 0.0011616622, 0.025378106, 0.0023333314, 0.04008193, -0.019267078, 0.018679993, -0.008385983, -0.0022749563, 0.0010707639, 0.012068611, 0.03180936, -0.013576353, 0.004836784, 0.039601587, -0.001873003, -0.013342853, 0.007825583, -0.0018913493, -0.017892765, -0.033223704, -0.026365478, -0.019960908, -0.025338078, -0.0125823105, -0.009466754, 0.00216321, 0.016385023, -0.0034724774, 0.0041262773, 0.034718104, -0.010974497, 0.014143424, -0.007665469, -0.02703262, 0.0040662345, -0.013876567, 0.0046433127, 0.020521307, 0.016771967, 0.0034224417, 0.053131238, -0.016718594, 0.014290195, -0.02764639, -0.004760063, -0.03554536, -0.011368111, 0.0037126488, 1.087234E-4, 0.009853696, -0.03989513, -0.011194654, 0.012028581, 0.047874156, -0.016545137, 0.0043531056, 0.0064445976, -0.0066814334, -0.029968048, 0.013769824, 0.012368824, -1.181051E-4, 0.0021782208, -0.0025268027, 0.004666663, -0.0047033555, -0.012855838, -0.00530712, 0.009546811, 0.029914675, -0.03597233, 0.023776963, 4.8451233E-4, -0.018786736, 0.012195367, 0.010700968, -0.013369538, -0.012795796, 0.03236976, 0.024524163, -0.009853696, 0.00888634, -0.01038741, -6.271141E-4, 0.014490338, 0.029007362, -0.008192511, -0.029007362, 0.028473647, 0.0022382636, -0.017145565, -0.0021715492, -0.006000948, 0.01057421, -0.015504395, 0.008639497, -0.007325226, -0.030181533, -0.023496764, 0.02488442, 0.026218705, 0.014850595, -0.011614953, 0.006224441, 0.023883706, -0.010654268, 0.009486768, -0.011081239, 0.006618055, -0.02122848, -0.0116683245, -0.010961154, -0.017705966, -0.0056540337, -0.02975456, 0.0017862744, -0.0053905123, -0.0042963987, 0.018960193, 0.090144314, -0.023376677, 7.90981E-4, 0.009513454, -0.010180596, 0.023189878, -5.9500785E-4, -0.001489396, 0.0020664744, -0.029994734, 3.8145704E-6, -0.005570641, -0.02535142, 0.01622491, 0.003312363, 0.026125306, 0.007665469, 0.0030655204, -0.010467468, -0.014183452, 0.0045499126, -0.012295439, 0.009046454, -0.011107924, -1.3217764E-4, 0.019493908, 0.035305187, 0.036265872, 0.0030405025, -0.042056672, 0.014303538, 0.018172964, -0.030475076, -0.005780791, -0.0077255117, -0.036586102, -0.008439355, -0.007465326, 0.02652559, -0.015744567, -0.003592563, 0.008659512, -0.007418626, -0.027806506, 0.017145565, 0.0017112208, -0.0113147395, -0.0074986834, -0.067141235 ], - "id" : "11f83053-39e0-45ab-b8b7-6c540827826d", - "metadata" : { - "name" : "SonicRide 8S" - }, - "text" : "| L | 175 - 186 cm / 5'9\" - 6'1\" | 82 - 88 cm / 32\" - 35\" |\n| XL | 186 - 197 cm / 6'1\" - 6'6\" | 87 - 93 cm / 34\" - 37\" |\n\n## Geometry\n| Frame size letter | M | L | XL |\n|---------------------------|-------|-------|-------|\n| Wheel size | 27.5\" | 27.5\" | 27.5\" |\n| A — Seat tube | 44.6 | 49.1 | 53.4 |\n| B — Seat tube angle | 73.0° | 73.0° | 73.0° |\n| C — Head tube length | 16.5 | 19.5 | 23.0 |\n| D — Head angle | 69.5° | 70.0° | 70.5° |\n| E — Effective top tube | 59.5 | 60.7 | 62.2 |\n| F — Bottom bracket height | 29.5 | 29.5 | 29.5 |\n| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.4 | 4.4 | 4.4 |\n| J — Trail | 8.6 | 8.1 | 7.9 |\n| K — Wheelbase | 114.6 | 115.0 | 116.4 |\n| L — Standover | 79.5 | 83.7 | 87.9 |\n| M — Frame reach | 40.5 | 40.8 | 41.2 |\ntags: [bicycle, road bike, professional]" - }, - "57d42afe-21dc-4e35-8794-7d443d1fb5bd" : { - "embedding" : [ 0.026625324, 0.009913241, -0.0051721255, -0.020299202, -8.1292394E-4, 0.022454254, -0.007605249, -0.021939823, -0.019173013, -0.028669147, 0.016600855, 0.01642011, -0.0029127966, -0.004556893, -0.0038686665, 0.020382624, 0.017796561, -0.0031057084, 0.0061592786, -0.024511982, -0.004351815, 0.0077512367, -0.0076678153, -0.0021724317, -0.0036844444, -0.009788109, 0.025902338, -0.009572604, -0.01357683, -0.01650353, 0.01876981, 0.006979589, -0.0059993877, -0.005596184, -0.018755907, -0.016322784, 0.016920637, 0.009266725, 0.010956008, 0.036510758, 0.020215781, -0.011129802, -0.01611423, -0.020382624, -0.012005727, 0.008488125, 0.015113173, 0.0062322724, -0.003792197, 0.00842556, 0.003979895, 0.0253601, -0.016475722, -0.008335186, 0.0050191865, -0.028696954, -0.0057908343, 0.016169844, 0.034313995, -0.0070143477, -0.0060967123, 0.0098159155, -0.027751513, 0.0020281824, -0.015544184, -0.026152603, 0.004615983, 0.0040459367, -0.007354985, 0.0059715803, 0.02903064, 0.027459538, 0.008926088, -0.013131916, 0.018366607, -0.016670372, -0.017045768, 0.006652855, -0.0013938323, -0.0038895218, 0.018811522, -0.016142037, -0.006965685, 0.0081127295, 0.032506533, 0.0037192032, 0.003854763, 0.0038304317, -0.020104554, 0.0017266488, -0.01654524, 0.02138368, 0.0024418132, 0.022384737, -0.004403954, 0.0049427166, -0.014654356, 0.0079389345, -0.013479505, -0.00516865, -0.005947249, -0.0060341465, -0.0091694, -0.024122683, -0.017963404, -0.012631387, -0.01810244, 0.0038095764, 0.007292419, -0.009475279, -0.011407874, 0.021411488, 0.036566373, 0.0018387462, 0.007813803, -0.029169677, 0.008606305, -0.006774511, 0.017351648, -0.010483286, 0.0152939195, 0.026347253, 0.01954841, -0.023427505, 0.015127077, 0.030448804, -0.01018436, -0.013277903, -0.019951614, 0.017490683, 0.015766641, 0.009037316, -0.007038679, 0.007848562, 0.0061245197, 0.023038205, -0.004452616, 0.0021116037, -0.020966573, -0.016712083, -0.004622935, -1.5217885E-4, -0.024803957, -8.4551045E-4, -0.008217006, -0.004431761, -0.02672265, 0.009954952, 0.014612645, -0.026653131, 0.012714809, -0.03386908, 0.015863966, 0.021314163, 0.020035034, 0.008884377, 7.9424103E-4, 0.024678824, -0.023733383, 0.004963572, -0.0034115869, 0.029114062, 0.005255547, -0.0023340606, 0.030643454, 0.009753349, -0.004365719, -0.022190087, -0.0029371278, -0.015001945, -0.013361325, -0.009614314, -0.031922583, -0.0027668092, 0.0015676267, 0.01915911, -0.012054389, -0.027264887, -0.020354817, -4.0863443E-4, 0.011574716, -0.009739446, 0.018992268, 0.028530112, -0.01591958, 0.001433805, 0.00464379, -0.005596184, -0.0014789916, -0.010754406, 0.020438239, 0.011943161, 0.013020687, -0.004129358, -0.6028585, -0.048328787, -0.010198263, 0.0071186246, 0.0060862848, 0.02114732, -0.003667065, 0.020410432, -0.019729156, 0.0027337882, -0.020438239, 0.013472553, 0.0022541152, 0.0098367715, -0.023858516, -0.025221065, 0.018199764, -0.0055892323, 0.018032921, -0.027751513, -0.043518152, 0.010080083, -0.019284243, 0.026388964, 0.0074314545, -0.022231799, 0.013604636, -0.0141260205, -0.01888104, 0.0071881423, -0.04162727, 0.03328513, -0.009899337, -0.01626717, 0.04974695, -0.049607914, 0.011491295, 0.010990767, 0.03820699, 0.038179185, -0.015460762, -0.016517432, -0.0125549175, -0.02555475, -0.0033872556, -0.0025269727, 0.06579166, 0.0055231904, 0.031366438, -0.028321559, 0.0037365826, 0.015043655, 0.01345865, 0.014459706, -0.012478448, -0.024400754, 0.02602747, 6.849949E-6, 0.009072075, -0.0051999325, -6.903988E-4, 0.0027164086, -0.004800205, -0.009864578, 0.0028033059, 0.021939823, -0.031644512, -0.024803957, 5.4419415E-5, -0.0031978195, 1.1546475E-4, 0.021244645, -0.01829709, 0.003625354, 0.024372946, 0.026347253, 0.013681106, 0.01689283, -0.013354372, 0.023052108, 0.01849174, 0.008599354, -0.0069934926, -0.037400585, 0.015127077, -0.0054641003, -0.015460762, -7.9728244E-4, 0.030865911, 0.007890272, 0.018700292, -0.0014094737, 0.015905676, 0.0124854, 0.0018908846, 0.03734497, -0.005516239, 0.017462876, -0.025374003, -0.03492575, -0.007354985, 3.4389595E-4, 0.012666146, 0.007031727, 0.03698348, 0.017309936, -0.005484956, 0.008960847, 0.012262943, -0.03106056, 0.0070873415, -0.006037622, -0.018463932, 0.004713308, -0.022760132, -0.035454087, 0.020618984, 0.021912016, 0.012061342, 0.0062427, 0.009384905, 0.014091262, 0.020174071, 0.024400754, -0.03222846, -0.0012687001, 0.015127077, 0.0024053166, 0.003503698, 9.6542866E-4, 0.020466045, 0.02453979, 0.042155605, -0.004515182, 0.03678883, 0.011268838, 0.03523163, 0.022134474, 0.00827262, -0.02903064, -0.025095932, -0.011894498, -0.01654524, -0.026639227, -0.014237249, -0.018422222, -0.021912016, 0.021439295, 0.0015137504, 0.01076831, -0.011609475, -0.009315387, -0.03956954, -0.0044387127, -0.014334573, -0.031143982, -0.008043211, -0.03698348, -0.015669316, -3.4259248E-4, 0.014292863, 5.7569443E-4, -0.0067710355, -0.0069309263, -0.010288637, 0.009183303, 0.021397583, 0.048106328, -0.013757576, -0.035759967, -0.010239975, -0.0125757735, -0.0062635555, 0.018547354, -0.04218341, 0.015641509, -0.00842556, 0.013722817, -0.003534981, -0.019854289, -0.005293782, 0.0084950775, -0.06629219, 0.011095043, 0.010587564, 0.015474666, 0.019214725, 0.027306598, -0.018074632, 0.003338593, 0.0038026245, 0.0042822976, -0.013945274, 0.0028119958, -0.008766197, -0.006788415, 0.004073744, -0.0075635384, 0.0056796055, 0.029725818, 0.01548857, 0.016086422, 0.02481786, -0.009913241, 0.006524247, -0.022259604, 0.034592066, -0.015307823, 0.017351648, 0.010518046, 0.031422053, -0.017421165, 0.0017370764, -0.0021116037, -0.009252821, 0.012082197, 0.00210639, 0.012742616, 0.008550691, 0.006819698, -0.0033472828, 0.01081002, 0.011950113, -0.004668121, -0.015280016, 0.008286524, 0.0014285911, 0.021467103, 8.7549E-4, -0.038540676, -0.008362994, 0.005505811, 0.036566373, -0.014265056, 0.00928758, -0.0124854, 0.029058447, -0.01864468, 0.052777927, -0.011609475, 0.017713139, 0.032367494, 0.027501248, -0.02177298, 0.032367494, 0.0020542515, 0.029781433, 0.03328513, 0.03842945, 0.016434012, 0.004967048, 0.01775485, 0.007598297, 0.04577053, 0.013090204, 0.018755907, -0.004205828, 0.008724486, 0.018324897, 0.009732494, 0.013840998, 0.03453645, 0.016142037, 0.036343914, 0.013333517, -0.022120569, -0.011345307, -0.014306767, 0.010107891, -0.03859629, 0.007890272, -0.03203381, 0.015627606, -0.009635169, -9.515251E-4, 0.01814415, 0.0044491403, 0.0026190837, 0.016712083, 0.025026415, -0.00967688, -0.034397416, 0.017574104, 0.026527999, -0.0032291026, 6.7041244E-4, 0.009058172, 0.0032551717, -0.015307823, 0.02337189, -0.013827094, 0.033173904, 0.009781157, 0.009628218, 7.1473005E-5, -0.0108308755, 0.012089148, -0.0035905952, -0.015168788, -0.021216838, -0.04307324, -0.0025669453, 0.020855345, -0.026236024, 0.04115455, -0.02477615, -0.011261886, -0.02676436, -0.010865634, -0.017532393, 0.0050782766, -0.024790054, -0.00905122, 0.00936405, 0.009155496, 0.0054015345, 0.012645291, -0.013701961, -0.0044456646, -0.040403754, -0.016364494, -2.3006053E-4, -0.011609475, -0.013312662, 0.015113173, 0.020021131, 0.021369778, 0.010420721, -0.029114062, 5.548391E-4, -0.018255379, 0.018978365, -0.008898281, 0.033535395, 0.015933484, 0.0019378092, 0.019562313, -0.009231966, -0.0023340606, -0.01876981, 0.007952838, -0.029586783, 0.009829819, -0.013521215, -0.0027581195, -0.0072785155, 0.001943023, 0.029169677, 0.009572604, -0.0072437567, 0.008849618, 0.009252821, 0.016489627, -0.025221065, 0.003310786, 0.01377148, 0.030921524, -0.0010036635, -0.02294088, 0.0018370083, 0.023747286, -0.02914187, 0.03378566, 0.018867135, 0.010163505, 0.021411488, 0.022482062, -1.5369956E-4, 0.009475279, -0.0018283186, -0.00579431, 0.026847782, 0.0085715465, -0.02969801, 0.03370224, 0.0046855006, -0.033146095, 0.001114892, 0.017713139, 4.483899E-4, 0.0037991486, -0.017879983, -0.02177298, -0.044407982, 0.003018811, -0.026792167, 0.021675656, -0.010816973, -0.0032968824, -0.0011261887, -0.02052166, 0.017810464, -0.004358767, 0.032673374, -0.010469384, -0.009503085, -0.025026415, 0.017782658, -0.011616427, -0.007480117, 0.041377004, -0.023886321, 4.0733095E-4, 0.014584838, -0.01369501, 0.008627161, 0.012714809, -0.01635059, -0.009781157, 0.00858545, 0.020785827, -0.0071186246, -0.0014581362, -0.011644234, 0.004588176, -0.017574104, 0.013076302, -0.02270452, -0.0023045156, 0.0049948553, 0.034953557, 0.035593122, 0.0023288468, -0.020549467, 0.0057247924, -0.023497023, 0.012492351, 0.04240587, 0.029002832, 0.0075426833, -0.0064408258, -0.012186473, -0.0031004946, -0.022037148, -0.016725987, -8.9938677E-4, -0.027681995, -0.016489627, -0.0057525993, 0.011400922, -0.0019030502, 0.0075357314, 0.015168788, -0.018894942, 0.0075357314, -0.03414715, 0.036510758, 0.017782658, -0.0042371107, 0.02473444, 0.008522884, 0.009864578, -0.006559006, 0.008766197, 0.03414715, 0.030031696, -0.027987873, -0.0029944798, -0.011435681, -0.022092761, -0.0040633166, 0.00854374, 0.0018926226, 0.0073758406, -0.0094335675, 0.009899337, 0.0053632995, 0.020702407, -0.016948443, -0.014021744, -0.0058534, 0.0135907335, -0.011074188, 0.055224955, -0.023691673, 0.022495966, -0.025930146, -0.005829069, -0.01853345, -0.028099101, -0.021369778, -0.005884683, 0.022148376, 0.046521325, 0.014737777, 0.028863797, 0.014035647, 0.015057559, 0.0057977857, -0.013403035, -0.027793223, -0.006114092, -0.038929977, 0.015405148, 0.043768417, 0.005241643, -0.009913241, -0.004417857, -0.009767253, 0.017838271, -0.0129581215, -0.024359044, -0.008077971, -0.040598404, 0.013597685, -0.026778262, 0.0040459367, -0.003854763, -0.022092761, -0.030587839, 0.04579834, -0.0035141257, -0.005637895, 0.016475722, 0.012888603, -0.033924695, 0.02914187, -3.043577E-4, 0.03097714, -0.012582725, -0.029642398, -0.024803957, -0.03350759, 0.013138867, -0.021856401, 0.01591958, 0.015613701, -0.022398641, -0.009419664, 0.020035034, 0.0033194758, -0.023983646, 0.017143093, -0.005349396, -0.003753962, -0.0339525, -0.030810297, -0.027014624, -0.0050469935, 0.0054571484, 0.0026521047, 0.032589953, -0.03425838, -0.024470272, 0.02903064, 0.0034828426, 0.02270452, -0.0032377923, 0.0043483395, -0.0029232241, -0.024942992, -0.008147488, -0.01646182, 0.014320671, -0.0046368386, 0.00936405, 0.035426278, -0.024637114, -0.008807908, 0.017671429, 0.011984872, -0.02153662, -0.024498079, 0.007507924, 0.019367663, 0.006743228, -0.024623211, 0.0023045156, -0.017657526, 0.0015850062, 0.005411962, -8.3377934E-4, 0.006875312, -0.023747286, 0.007104721, 0.0064443015, -0.013674155, 0.0030448805, 0.004845392, -0.01272176, 0.004967048, 0.0036218783, -0.0045673205, 0.003029239, -0.014404092, 0.060563922, -0.02695901, -0.008147488, 0.009204159, 0.020841442, -0.0021481006, -0.0036809684, 0.012110003, 0.023149433, -0.0026920775, 0.005220788, -0.007904176, -0.008529836, -0.017727043, 0.009551748, -0.0062009892, -0.028613534, -0.001969092, -0.0032777651, 0.0023427503, 0.0015737095, -0.024053164, -0.027250985, -0.015363437, -0.035092592, -0.013639396, 0.0023027777, 0.011831933, -0.045714915, -0.008891329, -0.037484005, -0.016211554, 0.042350255, 0.0068892157, -0.01642011, 0.002327109, 0.017143093, -0.040097877, 0.015085367, -0.002450503, -0.008877425, -0.015196594, 0.013326566, 0.013646347, -0.0075009726, -0.0037122513, 0.0076678153, -0.004014654, -0.009426616, 0.023510925, -0.019089593, 0.016406205, -0.006718897, 0.010893442, -0.015043655, -0.0095100375, -0.018310992, -0.024623211, 0.0045047547, 2.6992464E-5, -0.008912184, 0.010309492, -0.025221065, 0.0253601, -0.0011201059, -0.00870363, 0.008724486, -0.02266281, -0.006433874, 0.020813635, 0.010754406, -0.02036872, -0.024748342, -0.041655075, -0.009134641, -0.013701961, 0.01650353, -0.008084922, -0.018005114, 0.029948276, 0.0066146203, -0.021939823, 0.014612645, -0.022621097, -0.02177298, 0.007584394, -0.020257492, -0.018060729, -0.030949332, -0.0057143643, 0.04265613, 0.010796117, -0.036927864, 0.001273045, -0.0031317777, -0.034035925, -0.0039034253, -0.012388075, 0.010017517, 0.006114092, 0.03347978, -0.0013573354, -0.004807157, 0.023149433, 0.011553861, -0.018463932, -0.014417995, -0.007869417, 0.03378566, 0.01256187, -0.0070491065, -0.0464379, -0.009343195, 0.019882096, 0.018185861, 0.012638339, 0.012492351, 0.009516989, -0.0065138196, 0.013882708, 0.003945136, 0.019701349, -0.017435068, -0.019214725, -0.03765085, -0.015516377, 0.01026083, -0.00337509, 0.0067606075, 0.009204159, -0.00554057, -0.013347421, 0.003597547, -0.0055544735, -0.029864853, -0.002234998, -0.01959012, 0.024178296, -0.00866192, -0.008411656, 0.050859235, -0.0010236498, -0.030587839, 0.008766197, 0.008251765, 0.0042162556, -0.011199321, -0.004198876, -0.026792167, -0.0061627543, -0.011345307, 0.005947249, -0.00924587, 0.014849005, -0.012492351, -0.014390188, -0.024067068, 0.026555806, 0.012742616, -0.023636058, -0.020160167, 0.010038373, -0.02680607, 0.022078859, 0.005095656, 0.007904176, -0.03183916, 0.008689727, -0.008182247, -0.016795505, -0.013298758, 0.04538123, -0.008578499, -0.015071463, 0.0031022325, 0.19798674, -0.0023844612, -0.0031265637, 0.020813635, 0.002417482, -0.0032082472, 4.688108E-4, 0.010392914, 0.009398809, -0.012388075, 0.014320671, 0.019284243, 0.0011505198, -7.1733695E-4, 0.028001776, 0.003990323, -0.037789885, -0.023316275, -0.009843723, 0.0073063225, 0.015766641, 0.009767253, -0.041015513, -0.037400585, 0.008891329, 0.017893886, -0.012269895, -0.015474666, 0.01357683, 0.022273509, 0.0048210607, -0.0050713248, -0.008912184, 0.012207328, -0.01736555, -0.011067237, -0.0019569267, -0.0040250816, 8.7679346E-4, 0.027723705, 0.02719537, -0.015085367, 0.039235856, -0.031088367, -0.020646792, -0.009009509, -0.016322784, 0.003632306, -0.004810633, -0.0040389854, -0.006590289, 0.0018561257, 0.06584728, 0.02559646, 0.013674155, -0.021661751, 0.025346195, -0.014765584, 0.017184805, -0.014153828, -0.019381568, 0.04685501, -0.009294532, 0.011317501, -0.0019134779, 0.026124796, -0.03233969, -0.037484005, 0.024094876, -0.0018874088, -6.269638E-4, -0.009850674, 0.00452561, 0.022774037, -0.03792892, -0.034313995, 0.010128746, -0.00944052, 0.03311829, 0.013270951, -0.010761358, -0.027084142, -0.0029041069, 0.014306767, 0.0023427503, -0.034508646, 0.011199321, 0.009162448, 0.0095587, -4.2275523E-4, -4.2471042E-4, 0.006802318, 0.0061731823, -0.012547966, -0.023900226, 0.008105777, -0.020618984, 0.027501248, -0.0010453742, -0.0058464482, -0.017059673, 0.047828257, -0.018714197, 0.0016154202, -0.030560032, -0.007514876, -0.017504586, 0.02095267, 0.0075565865, -0.040153492, 0.0011331404, -0.032061618, 0.0076956223, 0.0038999496, 0.00776514, -0.012610532, 0.00948223, -0.009628218, -0.006625048, -0.023830708, 0.015321727, -0.0024800482, 0.022565484, -0.025846723, 0.01244369, 0.0040285573, -0.02091096, 0.02376119, -0.01751849, -0.021453198, 0.0171709, -6.9409194E-5, -0.0060063396, 0.020535562, -0.02941994, -0.0072993706, -0.0037748176, 3.667065E-4, 0.011366163, -0.0026208216, 0.008926088, 0.02739002, 1.8987054E-4, -0.022273509, 0.015349534, -0.016586952, -0.0023636057, -3.632306E-4, -0.006920499, -0.0072785155, -0.017435068, -0.0066076685, 7.677374E-4, -0.019047882, 0.006044574, 0.021759076, -0.019604024, -0.020215781, -0.02360825, 0.008168343, -0.035537507, 0.0012878176, 0.024678824, -0.013145819, -0.023232855, -0.017810464, -0.17707579, 7.568752E-4, 0.044741668, -0.02453979, 0.0058568763, 0.01260358, 0.028669147, 0.017782658, -0.030448804, 0.0062774587, 0.020507757, -0.005050469, -0.032284074, -0.0064790607, -0.00979506, -0.01361854, -0.018755907, 0.017643621, 0.024053164, 0.0128816515, 0.010712695, 0.0075287796, -0.011908402, -0.0046298867, -0.011873643, 0.003312524, 0.0043101045, 0.024873475, 0.014862909, 0.0012991142, 0.010643178, -0.014417995, 0.0068231737, -0.0129581215, 0.012297702, 0.010093987, -0.02013236, 0.017601911, -0.009843723, 0.039430507, -0.012318557, 0.018199764, 0.033034865, 8.9938677E-4, 0.018839328, 0.033340745, 0.020618984, 0.015377341, -0.00554057, -0.018894942, 0.035871193, -0.014362381, 0.0040285573, -0.0038443352, 0.00776514, 0.008515933, -0.012228184, -2.1995872E-4, 0.026986817, 0.014751681, -0.026305541, -0.031505473, 0.026750457, -0.005380679, -0.015419052, -0.03375785, -0.029864853, 0.02941994, -0.019993324, 0.004810633, -0.003910377, -8.985178E-4, -0.015307823, 0.0018526498, 0.018519547, 0.018366607, -0.020410432, -0.0027894024, 0.014362381, -5.344182E-4, -0.0093570985, 0.048551243, 0.014640452, -0.002739002, -0.009996662, -0.009954952, -0.014160779, 0.015655413, -0.006788415, -0.03347978, 0.010281685, -0.04907958, -0.004372671, 3.7827467E-5, 0.012527111, 0.022329124, -0.0017231728, -0.015947387, -0.017588008, -0.015154884, 0.0037678657, -0.016767697, -0.033841275, 0.0071464316, 0.005478004, 0.0055857566, 0.006746704, 0.011505199, 0.0030379286, 0.018853232, -0.005450197, 0.010114842, 0.01490462, -0.0055857566, -0.013729769, 0.010803069, -0.029169677, -0.018602967, 0.024651017, 5.5261233E-5, 0.016434012, -7.2287665E-5, -0.007709526, 0.01166509, -0.002702505, -0.025902338, -0.09465546, -0.013389131, 0.026277734, 0.019812578, -0.022648904, 0.0071742386, 0.0070560584, -0.0018283186, -0.015989099, 0.031533282, -0.021633945, -0.031894773, -0.016434012, 0.03417496, -0.0010931677, 0.014445802, 0.0064894883, -0.031616703, -0.029253097, 0.03464768, -0.021091705, -0.026931202, -0.015321727, 0.005321589, -0.01147044, -0.006774511, -0.0010140912, 0.021133415, 0.031366438, -0.0053911065, -0.0040459367, -0.051832486, 0.013250096, 0.014320671, -0.018005114, -0.009607363, -0.018477837, 0.0010392914, 0.028279848, -0.032256268, 0.0127078565, 0.006937878, 0.007855513, -0.047772642, -0.012631387, -0.002009065, -0.02587453, 0.033257324, -0.008328235, -0.027598573, -4.2840355E-4, -0.001371239, -0.016128134, 0.0038686665, 0.021244645, -0.017893886, 0.0041641174, -0.0016736414, -2.3418815E-4, 0.018505642, -0.010031421, 0.016753795, -0.002676436, 0.0069517815, 0.017588008, -0.0104485275, 0.0098159155, 0.016573047, 0.04248929, 0.01685112, -0.015599798, 0.020438239, -0.025777206, 0.0238029, -0.0027772367, -0.0041502137, -0.018255379, -0.01954841, -0.008488125, -0.010100938, -0.013006783, -0.008606305, 0.003505436, -0.019645736, 0.018811522, 0.024080971, 0.004497803, 0.0088009555, 0.0049844272, -0.03531505, 0.0024400754, 0.02337189, 0.042433675, -0.004675073, 0.005825593, 0.0067362767, 0.012659195, -0.0017075314, -0.021731269, -0.0121725695, -0.059729706, 0.009092931, -0.08303208, 0.036427338, 0.025540845, 0.0028832515, -8.4551045E-4, 0.0076956223, -0.007229853, -0.0017301247, 0.005922918, -0.005860352, -0.021759076, 3.682272E-4, -0.014765584, 0.0084186075, -0.014682163, 0.013361325, 0.024553694, 0.0041328343, 0.028613534, 0.01650353, -0.02438685, 0.0037991486, -0.0027894024, 0.018394414, -0.018019019, -0.002488738, -0.009892385, 0.0035871193, 0.0036496853, 0.021647848, 0.016100327, -0.013708914, -0.0038165282, 0.02512374, -0.012666146, -7.607856E-4, -0.009642121, 0.005123463, -0.029308712, -0.018867135, -0.035203822, -0.006426922, 0.004935765, -0.021870306, -0.021175127, -0.0012799968, 0.008397752, 0.00649644, 0.028641341, 0.0127078565, 0.0060862848, 0.0017727043, 0.014529224, -0.025387907, 0.0011965755, -0.005596184, -0.0047028805, -3.6844442E-4, 0.01572493, -0.006597241, 0.042628326, -0.002229784, 0.012972024, -0.031533282, 0.012499304, -0.012214281, -0.008564595, 0.014390188, 0.010385962, 8.6202094E-4, -0.020076746, 0.016281072, -1.2556656E-4, 0.021355873, 0.0057838825, 0.01049719, 0.012082197, -0.002264543, -0.037623044, 0.0098367715, 0.012471496, 0.010288637, 0.013340469, 0.0013668941, 0.0029406038, -0.01689283, -0.029753625, 0.012812134, -1.731428E-4, 0.012262943, -0.03906901, 0.015015848, -0.04045937, -0.008140536, 0.020299202, 0.008578499, -0.015627606, -0.013354372, 0.038846556, -0.003625354, -0.0034202766, -0.012311606, -0.020090649, 0.0052034087, 4.0689646E-4, 0.018199764, -0.01045548, -0.021175127, 0.019534506, -0.012749568, 0.007640008, -0.018797617, 0.018283186, 0.0065207714, -0.023274565, -0.0027494296, -0.024998607, -0.022565484, -0.026430674, 0.017504586, 0.025095932, 0.00267296, 0.010775262, 0.018589064, 0.011699849, -0.008745342, 0.0026573185, -0.012123907, 0.024790054, -0.025109835, -0.0038964737, -0.014876813, -0.012200377, -0.003952088, -0.030699069, 0.001275652, -0.0015858752, 0.011762415, -0.011678993, 0.112285174, -0.008217006, -9.958427E-4, 0.011672041, -0.008592403, 0.012999832, 0.0049183858, -0.018908845, -0.009649073, -0.034953557, 0.0027998302, -0.005123463, -0.013243144, 0.0047550187, -0.009725543, 0.028168619, 0.011213223, 0.025860628, -0.012478448, -0.022996495, 0.022092761, 0.006492964, 0.02118903, -0.009739446, -0.00540501, -0.00971859, 0.012478448, 0.021675656, 0.013250096, -0.049107388, 0.0048905783, 0.0051373667, -0.016100327, -0.0037331067, 0.022815747, -0.017421165, -0.013952225, 0.01864468, 0.012311606, -0.030393189, 0.013152771, 0.013298758, -0.018992268, -0.017379453, 0.01974306, -0.015071463, -0.0071603353, -0.035704352, -0.03311829 ], - "id" : "57d42afe-21dc-4e35-8794-7d443d1fb5bd", - "metadata" : { - "name" : "Avant SLR 6 Disc Pro" - }, - "text" : "| K — Wheelbase | 97.2 | 97.4 | 97.7 | 98.1 | 98.3 | 99.2 | 100.1 | 101.0 |\n| L — Standover | 69.2 | 71.1 | 73.2 | 74.4 | 76.8 | 79.3 | 81.1 | 82.9 |\n| M — Frame reach | 37.3 | 37.8 | 38.3 | 38.6 | 39.1 | 39.6 | 39.9 | 40.3 |\n| N — Frame stack | 50.7 | 52.1 | 53.3 | 54.1 | 56.3 | 58.1 | 60.1 | 62.0 |\n| Saddle rail height min (w/short mast) | 55.5 | 58.5 | 61.5 | 64.0 | 67.0 | 69.0 | 71.0 | 73.0 |\n| Saddle rail height max (w/short mast) | 61.5 | 64.5 | 67.5 | 70.0 | 73.0 | 75.0 | 77.0 | 79.0 |\n| Saddle rail height min (w/tall mast) | 59.0 | 62.0 | 65.0 | 67.5 | 70.5 | 72.5 | 74.5 | 76.5 |\n| Saddle rail height max (w/tall mast) | 65.0 | 68.0 | 71.0 | 73.5 | 76.5 | 78.5 | 80.5 | 82.5 |\ntags: [bicycle, city bike, professional]" - }, - "c4da4426-429f-4bd8-80af-ab7364180523" : { - "embedding" : [ 0.0029922356, 0.014202056, -0.016380703, -0.025885051, -0.007216769, 0.0046194126, -0.014556087, -0.02908494, 0.002774371, -0.02080608, -0.0099468855, -0.013391872, -0.01599944, 0.017946607, 0.017592575, -0.0064031803, 0.025680803, 0.020560982, -0.002999044, -0.019512508, 0.008837137, 0.027736902, -0.022753246, 0.009545198, -0.02671566, -0.023937885, 0.03523962, -0.0012799551, -0.009906036, -0.025408473, 0.005276411, 0.0040679425, -0.027205857, -5.0934387E-4, -0.013146774, -0.029765766, 0.008462682, -0.016571335, 0.013841217, -0.005395556, 0.013984191, 0.0133237885, 0.016884515, -0.011669379, -0.019498892, 7.795472E-4, 0.024496164, 0.009429458, -0.01414759, 0.005899368, -0.006648278, 0.025531022, -0.014351838, 0.0052049244, 9.286909E-5, -0.03472219, -0.0044730348, 0.020860547, 0.01824617, -0.010777495, -0.022807712, 3.2296742E-4, -0.03254354, 0.018668283, -0.0012978269, -5.544487E-4, -0.028867075, 0.031181887, 0.006859334, -0.0048100445, 0.0059538344, 0.042265754, 0.015713492, 0.00539896, 4.978549E-4, -0.011819161, -1.0132624E-4, 0.0024662965, 0.00534109, 0.020996712, 0.028131781, -0.011015785, -0.011921285, 0.029384503, 0.022548998, 0.0184368, 0.013221665, 0.01292891, -0.014161207, 4.6338805E-4, 0.021092027, 0.013378255, 0.009436266, 0.035021752, 0.019771222, 0.017565344, -0.029302804, 0.01525053, 0.005000676, -0.004932593, 0.013657395, -0.015332229, -0.015931357, -0.02084693, -0.02301196, 4.0700703E-4, 0.02723309, -0.012942526, 0.0017071743, -0.0043164445, 0.00459218, 0.018300636, 0.019635057, -0.002047588, 0.017075147, -0.010566439, 0.020479282, -0.025517404, 0.007196344, -0.003846674, 0.009150318, 0.03254354, 0.028894307, 0.009803913, 0.0048372773, 0.010688988, 0.0018569563, 0.004980251, 0.016843665, 0.011982559, 0.010273683, 0.04144876, 0.01891338, -0.0031930797, -0.014950966, 0.01150598, -0.009940078, 0.023815338, -0.021977102, -0.014351838, -0.012615729, 0.032952037, -0.028022848, -0.015890507, -0.0095724305, 0.02450978, 0.007904404, 0.01064133, 0.0034415817, 0.016584951, -0.0010782601, -0.020588215, -0.015100748, 7.6890923E-4, -0.014379071, 0.015373079, -0.018218936, 0.036002144, 0.0033871154, 0.022671547, -0.009286484, 0.021173727, 0.026239082, -0.0030569143, 0.02352939, 0.00925925, 0.008095036, 0.0032169088, -0.0037105083, -0.010634521, -0.0044015483, 0.021255426, -0.03216228, 0.024046818, 0.0065427497, 0.026770126, 0.023597471, -0.0064916876, 0.001824617, -0.021078411, 0.015985824, 0.0076593063, -2.691395E-4, 0.026184615, -0.011029401, -0.010226025, 0.011608104, -0.026702045, 0.019812072, -0.02754627, 0.027246706, 0.0015514351, -0.012173191, -0.004701112, -0.60958546, -0.022358367, -0.01926741, -0.004929189, -0.0030773391, 0.028458579, -0.012336589, 0.00725081, -0.0058891554, 0.011220033, -0.020629065, 0.014133973, -0.025980366, -0.006069575, -0.022086035, -0.021459674, 0.018641049, -0.023202593, 0.032298446, -0.0168709, -0.016094755, 0.01710238, -0.021936253, 0.01446077, -0.0063078646, 0.029656835, 0.023556622, 0.0044934596, -0.015304997, -0.0023420458, -0.026579496, 0.053894285, -0.003799016, -0.0053172605, 0.035130687, -0.025789736, 0.0040645385, 0.019907389, 0.014065891, 0.045615423, -0.007918021, -0.0204112, -0.004231341, -0.013276131, 0.017946607, 0.01710238, 0.04136706, -0.02569442, 0.0077410056, -0.033442233, -0.004840682, -0.014025041, 0.027913917, 0.019485276, 0.0036390217, -0.015277763, 0.023624705, 0.0032152066, -0.0045275013, -0.0014910117, 0.0029871294, 0.009334141, -0.012527221, -0.04259255, -0.022807712, 0.009531581, -0.060185127, -0.02517699, 0.008605656, 0.006178507, -0.0067844433, 8.893306E-4, -0.029166639, 0.008020145, -0.007727389, 0.011989367, 0.027137773, 0.002794796, 0.024918277, 0.033877965, 0.018926997, 0.008959686, 0.009763063, -0.01269062, 0.03208058, 0.014882883, 0.01560456, -0.0109477015, 0.018001072, 0.010648138, 0.019757606, 0.004500268, -0.020901397, -0.010123901, -0.013065075, 0.032679707, -0.004724941, -0.002071417, 0.0046364334, -0.019648675, -0.016380703, -0.014297372, -0.003924969, -0.0030637225, 0.01529138, 0.028812608, -0.012261699, -0.027818602, 0.042075124, -0.029956399, 0.01229574, -0.005552146, -0.034286458, -0.03605661, 0.0052423696, -0.02273963, 0.010083051, 0.0013454849, 0.009109468, 0.01249318, 8.74863E-4, -0.021228192, -0.003822845, -0.002922451, -0.041830026, 0.014733101, 0.027655203, 0.0027590524, -0.018191705, 0.0040679425, 0.0083197085, 7.301872E-4, 0.04724941, -0.019716756, 0.01071622, 0.025680803, 0.01816447, 0.018749982, 0.00530024, -0.041203663, -0.005630441, -0.010423465, 0.012425097, -0.002651822, -0.021582223, -0.006481475, -0.011267691, 0.0050857794, -0.0061921235, 0.016108373, -0.012241274, -0.036029376, -0.040604535, 0.0018467439, -0.018504884, -0.035757046, -0.007570799, -0.020166103, -0.02163669, -0.013303365, 0.009340949, -0.008415025, -0.023556622, 0.00705337, -0.0223039, 0.019921005, 0.015890507, -4.970039E-4, -0.0074890996, -0.05816988, -0.018804448, -0.009027769, -7.301872E-4, 0.015808808, -0.010083051, 0.013888876, -0.014828417, -0.016407937, 1.19463904E-4, -0.007325701, 0.006733381, 0.031181887, -0.020424817, 0.015182448, 0.020833313, -0.0026654387, 0.020220568, 0.018450418, -0.007577607, 0.025272306, -0.0048304694, -9.957098E-4, -0.0064882836, 9.6847676E-4, -0.02124181, -0.012105108, 0.0061546783, 0.008149502, 0.014133973, -0.01269062, 0.01710238, 5.2849215E-4, 0.016598567, -0.016053906, 0.010157943, -0.01836872, 0.025898669, -0.012336589, 0.030691693, 0.021500524, -6.276376E-4, -0.021827321, -0.022399217, -0.018926997, 0.0044083563, -0.0018773811, -4.1828322E-4, 0.02293026, 0.00679806, -0.004323253, 0.0081971595, 0.007877171, 0.024482548, -0.003553918, -0.03412306, 0.02132351, -0.01454247, 0.018464034, -0.0034381775, -0.030065332, 0.0012527221, 0.001200809, 0.01525053, 0.011172375, 0.020969478, 0.014869267, 0.018218936, 0.0033190327, 0.043763574, -0.0030892536, 0.019104011, 0.022630697, 0.034776654, -0.021582223, -0.01095451, 0.0064065843, 0.018409569, 0.004173471, 0.00874863, 0.01150598, -0.015727108, 0.0030569143, 0.010566439, -0.012568071, 0.00795887, -0.00480664, 0.019281028, -0.006232973, -0.018654667, -0.0013625055, -0.0059538344, 0.02147329, 0.015359462, 0.017374711, 0.008605656, -0.009912845, -0.009109468, -0.035947677, -0.019839305, -0.025490172, 0.0067946557, 0.013187624, 0.0039215647, -0.0015088833, 0.04248362, 0.0051368414, 0.014215672, -0.0057359696, 0.010062627, 0.022548998, -0.020043554, -0.01115195, 0.007870363, 0.014215672, -0.018504884, 0.009177551, -0.0017429177, 0.010389424, 0.010103476, 0.025462938, -0.005429597, 0.001976101, 0.0065597706, -0.008108652, -0.006001492, -0.02794115, 0.02687906, -6.0168107E-4, -2.87224E-4, -0.007897596, -0.029411737, -0.011138334, -0.029820234, -0.011662571, 0.013092307, -0.016026674, -0.012629345, -4.727494E-4, 0.0051402454, -0.009994544, 0.03551195, -0.045424793, -0.02068353, -0.0044389935, 0.03692807, 0.012901676, 0.036900837, -0.006998904, -0.0067640184, -0.003075637, 0.004050922, -0.009150318, 7.599734E-4, 0.009374991, 0.054275546, 0.029520668, 0.010096668, 0.029956399, -0.027001608, -0.0037445498, -0.031753782, -0.0018671687, -0.0018075963, 0.008278859, 0.008095036, 0.014310989, -0.0010161346, 0.006879759, 0.010001352, 0.0033786052, 3.2637155E-4, -0.02656588, 0.011410665, -0.015182448, -0.001749726, 0.002372683, -0.008619273, 0.0371187, 0.011710228, -0.01174427, 0.03976031, 0.014488003, 0.0075844154, -0.0041836835, 0.001451864, -0.0085716145, 0.026620345, 0.0037888035, -0.04997272, -0.004428781, -0.03197165, 0.007298468, 0.053540252, 0.012057451, 0.005375131, 0.013507612, -0.0018654666, 0.008333325, 0.0014288862, -0.0055453377, 0.0076865396, 0.021446059, 0.0052423696, -0.025040826, 0.05462958, 0.00725081, -0.015808808, 0.0037888035, 0.0052968357, 0.01485565, -0.017279396, -0.015332229, -0.028594743, -0.029629601, -0.003421157, -0.03322437, 0.020220568, -0.007625265, -0.034477092, 0.0072371936, -0.0068899714, -0.002927557, -0.013895684, -0.011213224, -0.022208584, -0.029629601, -0.041938957, 0.013657395, -0.009354566, -0.0074210167, 0.013602928, 0.017034298, 0.034286458, 0.0223039, 0.011226841, -0.015114364, -0.012554455, -0.032598007, -0.010437082, 0.009279675, 0.019430809, 0.02234475, -8.6337404E-4, -0.007965678, 0.025422089, -0.018341485, -0.0011582574, -0.011771503, 0.01832787, 0.01595859, 0.031699315, -0.0042926157, -0.021704772, 0.0018297232, 0.0054602344, -0.034613255, -0.0067946557, -0.0032458438, 0.008619273, 0.005746182, -0.0052355616, -0.01525053, 0.0074074003, 0.00965413, 0.021650307, 0.0062363776, -0.0223039, 0.002971811, -0.017796824, 0.0049632303, -0.013371447, -0.0093001, -0.013841217, -0.022617081, -0.014991816, -0.0333333, 0.029520668, 0.005269603, -0.024727644, 0.017551726, 0.0045445217, -0.013385063, -0.013970575, 0.008735013, 0.033632867, 0.015005432, -0.0014842034, 0.014447154, -0.030228728, -0.02758712, -0.033088204, 0.0030552123, 0.018613817, -0.043082748, -0.025626337, 0.03050106, 0.0024645946, 0.012391056, -0.006716361, -0.016938983, -0.0026296952, -0.0070669865, -0.0017956818, 0.043491244, 0.005732565, 0.0053615146, -0.02147329, 3.7615706E-4, -0.026102915, 0.0064167967, -0.0056406534, -0.0079452535, 0.0040270933, 0.026702045, 0.012540838, 0.0037853995, -0.016816434, 0.020778848, 0.010654946, 0.0047828113, -0.031372517, 0.0028628786, -0.01103621, 0.040168807, 0.02908494, 0.014392688, -0.005606612, -0.03120912, -0.01922656, 0.002302898, -4.8211077E-4, -0.011097484, -0.040604535, -0.016911749, 0.002794796, -0.044825666, 0.014324605, -0.008483107, -0.047821306, -0.012785936, 0.036628507, -0.02762797, 0.0040270933, -0.005841498, -0.009429458, -0.037173167, 0.027056074, 0.006450838, 0.024645945, 0.014637786, -0.03322437, -0.03763613, -0.02163669, 0.0047419616, -0.010437082, -0.022017952, -0.006297652, -0.02750542, -0.011444706, 0.0045785634, -0.009633705, -0.0027607544, 0.021051178, -0.009640514, -0.010239641, -0.03338777, -0.040468372, -0.0446895, 0.028431345, 0.005844902, 0.010729837, 0.007203152, -0.021269042, 0.0015173937, 0.009374991, 0.01895423, 0.025054442, -0.004878127, 0.025517404, 0.02423745, 0.005181095, -0.01674835, -0.033197135, -0.015304997, -0.018491268, 0.008918837, 0.009626897, -1.8222767E-4, -0.006093404, 0.011887244, 0.011819161, 0.0076116486, -0.005150458, 0.007577607, 0.030718924, 0.024251066, -0.012874443, -0.013405488, 0.0045615425, 7.37421E-4, -0.014964582, -0.004217725, -0.01832787, 0.005930005, 1.4105889E-4, 0.018382335, -0.033523932, 0.009463498, 0.038044624, -0.045288626, 0.005984471, -0.014283756, -0.01591774, -0.015876891, 0.02226305, 0.04055007, 0.002376087, 0.017320246, 0.03826249, 0.020915013, -0.02147329, -0.009756254, 0.0204112, 0.026960758, -0.0054023643, 0.018218936, -0.020315886, -0.022017952, -0.015727108, -0.022889411, -0.004714729, 0.003673063, 0.007720581, 0.0039624143, 0.011397048, -0.014270139, -0.03545748, -0.011274499, -0.021827321, -0.010675371, 1.4520768E-4, -0.022630697, 0.015904125, -0.023379607, -0.011996176, -0.019566976, 0.003075637, 0.0026075684, 0.01036219, -0.023937885, 0.011397048, 0.024700413, -0.030364895, -0.0057632024, -0.008898412, 0.0037615704, -0.036791902, 0.0040645385, 0.012983375, -0.024182983, -0.0039862436, 9.965609E-4, -0.012642962, -0.008898412, 7.314638E-4, -0.016898133, 0.0042892117, 0.0057870317, -0.008626081, 0.016639417, 0.013051458, -0.013167199, 0.014488003, -0.017783208, -0.02278048, -0.005252582, 0.028758142, -0.028540278, 0.0031896755, -0.0078227045, 0.02538124, 0.013507612, -0.0062568025, -0.036791902, 8.62523E-4, 0.0023318334, -0.017333861, -7.0369875E-5, -0.034667723, -0.009136702, -0.024877427, 0.020383967, -0.020166103, 0.010334957, 0.0048815315, -0.009960502, -0.014842033, -0.0037615704, -0.01304465, 0.007734197, 0.01343953, 0.015577327, -0.003196484, -0.0043470818, -0.013385063, 0.045288626, 0.015032666, -0.021023946, -0.037145935, -3.9934771E-4, -0.04406314, -0.005068759, -0.040059876, 0.030528294, -0.0041700667, 0.016721116, -0.010831961, 0.017987456, 0.011485555, 0.017265778, 0.004319849, 0.0113221565, 0.0027437338, 0.011614912, -0.0039045443, 0.011281307, -0.031372517, -0.023107277, 0.028894307, 0.021759238, 0.024346381, 0.0055078925, -0.0223039, -0.0010382616, 0.046296254, 3.8573117E-4, 9.225209E-4, -0.0044083563, 0.0019778032, -0.03613831, -0.00886437, -0.018178087, 0.017388327, 1.03666585E-4, -0.00439474, -0.0047828113, -0.040958565, -0.009020961, 0.004078155, -0.005266199, -0.023788104, -0.011002168, 0.03837142, -0.0083197085, -0.033115435, 0.029112173, 0.019621441, -0.035757046, -0.007175919, 0.024087667, -0.0015633495, -0.0022943877, 0.014665019, -0.009776679, -0.009313717, -0.0103213405, 0.029575136, 0.02088778, 0.009075427, -0.02498636, -0.0056712907, -0.033823498, 0.02226305, 0.01525053, -0.011335773, -0.014610552, -0.017524494, 0.0063146725, 0.001648453, -0.004898552, -0.012908485, -0.027069692, -0.0021156706, -0.011730653, -0.012275315, -0.02821348, 0.01178512, 0.0011020891, -0.013555271, 0.011955326, 0.19139415, -0.014283756, -0.011540022, 0.04144876, -0.0019863134, 0.020125253, -0.020860547, -0.01493735, -0.006750402, -0.01288806, 0.007026137, 0.014801184, 0.008122269, -0.0080678025, 0.012813169, 0.0012705938, -0.029330038, -0.024251066, -0.01560456, -0.0015607964, -0.008074611, 0.0028407515, 0.006232973, -0.017007064, 0.010723029, -0.0033326494, -6.4806244E-4, 0.0013710158, 0.02490466, 0.021309892, -0.010804729, 0.0066721067, -0.0052934317, 0.0044594184, -0.03630171, 0.009170743, 0.014882883, -0.007856746, 0.0013871855, 0.020206952, -0.008299284, 0.022440067, 3.4849843E-4, -0.00760484, -0.011819161, 0.0102873, -0.008598848, 0.0010552822, -0.007938446, 0.013105924, -0.005266199, 1.52867E-4, 0.011247266, 0.01627177, -0.0028339433, -0.027709669, 7.335913E-4, -0.01635347, -0.0015514351, -0.034776654, -0.006399776, 0.048801698, -0.01190086, 0.021786472, -0.023951503, 0.00910266, -0.014665019, -0.023665555, 0.0015829233, -0.001148896, -0.0094430735, 0.006127445, -0.017401945, -0.012751894, -0.026620345, -0.016067524, 0.020261418, 0.025149759, 0.011172375, 0.026293548, -0.013269323, -0.013895684, 0.01706153, -0.016571335, 0.010539206, -0.041993424, 0.014419921, 0.008387792, 0.015223297, -0.00993327, 0.002573527, 0.0011174077, -0.016203688, 0.018382335, 0.0011786822, -0.0024135325, -0.015590943, 0.0047419616, -0.01986654, 0.025449323, -0.018491268, 0.06628534, 0.023352373, -0.016448786, -0.035784278, 0.0024101285, -0.0066925315, 0.027559886, 0.018178087, -0.042701483, 0.0012186808, -0.022099651, 0.012499988, -0.009334141, 0.02534039, -0.01828702, -0.016421553, -0.01218, -0.015550094, -0.018069156, 0.0034637086, 0.011172375, -0.0036322132, -0.017279396, 0.024264682, -0.015059899, -0.054874673, 0.0334967, -0.002575229, -0.030092563, 0.0011054932, 0.021868171, 0.02581697, -0.0083946, -0.0043300614, 0.0017684487, -0.0059742588, -0.026702045, 0.0041700667, -0.010423465, -0.0031062742, -0.00399986, 0.0044219727, 0.015468394, 0.0486383, -0.032026112, 0.017252162, 0.013269323, 0.0018331273, -0.011281307, -0.008843945, 0.009769871, 0.0037922077, -0.033632867, 0.022521764, -0.030310428, -0.028022848, -0.017429177, 0.010859194, -0.008646506, -0.010076243, -0.020356735, 0.0168709, 0.012186808, -0.030255962, -6.5104105E-4, -0.17233099, 0.010089859, 0.034150295, 0.021146493, 0.03197165, -0.0056168246, 0.037254866, 0.0016935577, -0.006232973, 0.0071895355, 0.014978199, 0.008401408, -0.019458042, -0.006144466, 0.017932989, -0.011825969, -0.0168709, 0.009020961, 0.018872531, -0.013548462, 0.012731469, -0.012840401, 0.025939517, -0.0083197085, -0.0015548392, 9.7613607E-4, -0.027137773, 0.028594743, 0.0044083563, 0.0048338734, -0.003502856, -0.007693348, 0.018736366, -0.005320665, 0.031426985, -0.009034578, 0.004857702, 0.002096948, -0.010273683, 0.03959691, -8.944368E-4, 0.024264682, 0.001026347, -0.03270694, 0.023856187, 0.014528853, -0.011778311, -0.007305276, 0.006951246, -0.008483107, 0.046759214, -0.013997808, 0.0021922637, 3.0126606E-4, 0.01194171, 0.013017417, -0.023978734, 0.016612185, 0.016339853, -0.017388327, -0.039106715, -0.008673739, -0.0058142645, -0.010546014, -7.6550513E-4, -0.037772294, -0.004755578, 0.02829518, 0.016653035, 0.018314254, 0.013255706, -0.026729276, 0.014665019, 0.007672923, 0.02194987, -0.020356735, -0.008850754, -0.015944974, 0.031372517, 0.012043834, 0.0041530463, 0.042238522, -0.015904125, -0.013405488, -0.015196064, -0.0055623585, 5.3359836E-4, 0.0100694345, -0.014923733, 0.013922917, -0.0014118655, -0.019757606, -0.018586583, 0.019090395, 0.0064133927, 0.010253258, 0.0052900277, -0.0260076, -0.013548462, -0.012922101, 0.018777216, 0.019812072, -0.027736902, 0.020206952, 0.012833593, 0.018137237, 0.020343117, 0.010457506, 0.014991816, -0.0036322132, 0.007700156, 0.027968382, 0.01359612, 0.029030474, -0.006719765, -0.009334141, -0.0116966115, -0.017483644, 0.017524494, -0.011669379, 0.026348013, -0.030119797, -0.016462402, 0.06584961, -0.012942526, -0.027832218, -0.07897596, -0.011798736, 0.024537014, 0.023747254, -0.0081971595, -0.009837953, -0.0051844995, 0.016462402, -0.013664203, 0.0518518, -0.021269042, -0.021977102, -0.018096387, 0.031753782, 0.02754627, 0.010654946, 0.006430413, 0.0020288653, -0.037745062, -0.004874723, -0.022576232, -0.014610552, 9.046492E-4, -0.009470307, -0.011199608, -2.719054E-4, -0.032761406, 0.034613255, 0.02450978, -0.0010952809, 0.014229289, -0.0061682947, -0.0069172047, -0.0035096644, -0.014515237, -0.0027624564, -0.020370351, -0.0035300893, 0.015863275, -0.018926997, 7.174217E-4, 0.006226165, -0.0010476229, 0.0023658746, -0.033251602, -0.03491282, -0.007523141, 0.01335783, -0.016966214, -0.03992371, -0.0070125205, -0.009129893, -0.007318893, -0.013432722, 0.014678636, -0.024128517, 0.0012042131, 0.015141598, -0.01993462, -0.007965678, -0.013228473, 0.007495908, -0.029248338, 0.01174427, 0.013936534, -0.019485276, 0.004350486, 0.011880435, 0.027764134, 0.009055003, -0.009429458, 0.024400849, -0.0033258412, -6.2933966E-4, -0.024768494, -0.012445522, 0.008803097, -0.0062806313, 0.04212959, 0.004925785, -0.023461306, -0.011376623, 0.0052832193, -0.0204929, 0.0031879735, -0.0058823475, 0.0012654876, 0.007400592, 0.01934911, -0.044199303, 0.0045104804, 0.02517699, 0.033796266, 0.015359462, -0.023543006, -0.0069035883, 0.006392968, 0.0075367573, -0.011158759, 0.008653314, -0.043355078, -0.0074074003, -0.08006528, 0.030664459, 0.027219472, 0.016149223, -0.006971671, 0.013562079, 0.013888876, 0.014488003, 0.026470562, -0.008830329, -0.016625801, 0.0033258412, -0.010859194, -0.0021360954, -0.005048334, -0.011512789, 0.0012263401, 0.002927557, -0.0242783, -0.0023352373, 0.008803097, -0.010117093, -0.020302268, 0.031617615, 0.006372543, 0.006723169, 0.009960502, 0.011730653, 0.0012263401, 0.020370351, 0.004095176, -0.0070125205, 0.014270139, 0.02640248, 2.5254436E-4, -0.016013056, -0.043355078, 0.0017463219, -0.026824594, -0.04272872, -7.995465E-4, -0.019022312, -0.013970575, -0.025667187, -0.0039930516, 0.006927417, 0.02667481, 3.3509466E-4, 0.009660939, 0.01525053, 0.0027028841, 0.0072848513, -0.006968267, -0.05021782, -0.00630446, -0.009470307, 0.007502716, -0.008013337, 0.0167075, 0.014406304, 0.04556096, 0.0059368135, 0.019716756, -0.0011378325, 0.017864907, -0.009586047, -0.005266199, -0.0052832193, 0.00886437, -0.029820234, -0.016013056, -8.808202E-4, 0.0055351253, 0.019498892, 0.008912029, -0.017864907, 0.003046702, 0.006821889, -0.025272306, 0.01591774, 0.015767958, 0.0044628223, -0.020928629, -2.5828884E-4, 0.032026112, -0.022290284, -0.02644333, 0.011662571, -0.020166103, 0.008973303, -0.03622001, 0.031481452, -0.011934902, -0.010729837, 0.043137215, 0.010232833, -0.015332229, -0.010709412, 0.01907678, -0.0030637225, 0.02569442, 0.0102873, -0.018273404, -0.004466227, 0.025599103, 0.0060593626, -0.022099651, -0.030065332, -0.005051738, 0.011853202, -0.00843545, 0.0034705168, -0.011104292, 0.022331133, -0.017551726, 0.015985824, -5.782776E-4, -0.006175103, -0.0031539323, 0.026906293, 0.0102056, 0.0067878477, -0.005681503, -0.0060457457, 0.013732285, 0.009395416, 0.014025041, -0.011458322, 0.015005432, 0.0045309053, -0.0077818553, 0.031018488, -0.023924269, -0.003795612, 0.0012961249, -0.013643778, 0.0057768193, 0.016693885, 9.369885E-4, 0.08850754, -0.01520968, 0.011771503, 0.009769871, -0.0014561192, 0.008980111, 0.016584951, -0.02715139, -0.048883397, -0.02293026, 0.0021207768, 0.014814801, -0.010355382, 0.006120637, -0.035593648, 0.011805545, 0.010723029, 0.0059334096, -0.03199888, -0.004469631, 0.016639417, -0.016816434, 0.0013837813, -0.008183544, -0.010607288, 0.015059899, 0.04240192, 0.031318054, 0.0037547622, -0.029820234, 0.019580591, 0.017755974, -0.029384503, -0.024210216, 0.020002704, -0.0035845554, -0.019063162, 0.013922917, -0.0044083563, -0.010770687, 0.0055861874, 0.040304974, -0.026688427, -0.022943879, 0.021078411, -0.015005432, -0.01296295, -0.016380703, -0.028267946 ], - "id" : "c4da4426-429f-4bd8-80af-ab7364180523", - "metadata" : { - "name" : "BikeMax InflaCharge Floor Pump" - }, - "text" : "price: 38.99\nname: BikeMax InflaCharge Floor Pump\nshortDescription: \ndescription: ## Overview\nThe BikeMax InflaCharge is a versatile floor pump designed to make tubeless tire setup and daily inflation tasks easier. This pump combines the functionality of a standard floor pump and a tubeless setup tool, eliminating the need for a separate air compressor. With its convenient features and high-pressure capabilities, the InflaCharge is the ultimate accessory for cyclists.\n\n## Product Details\n- Dual-chamber design with an \"Inflate\" setting for efficient use as a traditional floor pump.\n- \"Charge\" setting allows for pressurizing a chamber to easily seat tubeless tires without an air compressor.\n- Backlit digital gauge provides accurate pressure readings up to a maximum of 160 PSI.\n- Compatible with both Presta and Schrader valves for versatile use with different bike tires.\n- Inflation accessories conveniently stored in the handle for easy access and organization.\n\n## Features\n\n### All-in-One Pump Solution\nThe BikeMax InflaCharge eliminates the need for multiple pumps or additional tools. Its dual-chamber design allows it to function as both a standard floor pump and a tubeless setup tool, making it a versatile accessory for all your inflation needs.\n\n### Tubeless Tire Setup Made Easy\nSay goodbye to the hassle of using bulky air compressors for seating tubeless tires. The InflaCharge's \"Charge\" setting pressurizes a chamber, which can be quickly released to seat tubeless tire beads on a rim. This innovative feature simplifies the tubeless setup process.\n\n### Accurate Pressure Readings\nThe backlit digital gauge provides easy-to-read and precise pressure measurements up to 160 PSI. This ensures that you achieve the optimal tire pressure for a smooth and efficient ride.\n\n### Convenient Handle Storage\nNo more searching for misplaced attachments! The InflaCharge's handle-integrated storage keeps all the inflation accessories secure and easily accessible. Whether you need to inflate basketballs, pool toys, or other items, you'll always know where to find the necessary attachments.\n\n### Pump Up with Confidence\nWhen inflating tubeless tires, reaching the recommended pressure is crucial. The InflaCharge's digital gauge signals you're ready to go by displaying three dashes on the screen once the chamber reaches the maximum 160 PSI. This feature provides peace of mind and ensures a secure tubeless setup.\n\n## Specifications\n- Pump Type: Floor\n- Valve: Presta/Schrader\n- Gauge Type: Digital\n- Maximum Pressure: 160 PSI\n- Frame Mounted: No\ntags: [pump]" - }, - "181fc065-b242-4f35-80e4-a9130df99c47" : { - "embedding" : [ 0.01866902, 0.0129068075, -0.027565546, -0.0016201944, 0.006850326, 0.009129206, -0.0040376545, -0.038432997, 0.013728025, -0.032520227, 0.027018068, -0.003425163, -0.022870919, -0.012195085, -0.008670692, 0.014152321, 0.0060325298, -0.0038802545, 0.00827377, -0.02020196, 0.008075309, 0.0052044685, 0.0012822975, -0.014234443, -0.0020290925, 0.0066313343, 0.042758077, -0.0022515056, -0.0024499667, -0.031890627, 0.013700652, 0.024636537, -0.024568101, 0.0043592984, -0.009936736, -0.014343939, 0.0339163, -0.012181398, 0.02538932, 0.019681854, 0.025444068, -0.0012532127, -0.009094988, 0.010778485, -0.012154024, 0.013187391, 0.0035483455, 7.215597E-4, 0.024746032, 0.020270394, -0.013782773, 0.005088129, -0.0124961985, 0.006966665, 0.0026621146, -0.023787944, 0.0149461655, 0.019627107, 0.036900055, 0.01487773, 0.006573165, 0.006494465, -0.034737516, 0.016314862, -0.025471441, -0.011544955, 0.006145447, 0.008896527, -0.0031770866, 0.014959852, 0.028660504, 0.008780188, 0.027291808, 0.017519314, 0.0052557946, -0.033396192, -0.005779321, 0.001645002, -0.0041437284, 0.007719448, 0.022118134, -0.012058216, -0.0041437284, -0.002073575, 0.015781071, 0.008417483, 0.0140838865, 0.004191633, -0.018573212, 0.011832381, -0.008307988, 0.006939291, -0.00795897, 0.01623274, 0.014617678, -0.02371951, -0.012646755, -0.003996594, -0.021255856, -0.036544196, 0.0031787974, 0.029372226, -0.005183938, -0.012920494, -0.03224649, -0.021817021, -0.018641645, 0.017040271, 0.0067955777, 0.0053105424, -0.019722916, 0.017519314, -5.25665E-4, -0.018778516, 0.023596328, -0.0034833325, 0.050121665, 0.02772979, 0.018655332, -0.004034233, 0.022597179, 0.014603991, 0.0048554507, -0.0281404, 0.005864864, 0.019695543, -0.008321675, -0.010703206, 0.0124961985, -0.0045269635, 0.012290894, -0.0014431194, 0.0077262917, 0.011538111, -0.022405561, 0.010785328, 2.8122435E-4, 0.02741499, -0.03169901, -0.018422654, 0.0045543374, 0.023924815, -0.01849109, -0.013057364, -0.014768234, 0.006224147, -0.007260935, 0.0017134369, 0.009526127, -0.026443215, 0.034929134, 0.009998328, 0.034190036, 0.017327698, 0.0017793054, -0.009738275, -0.0063781254, 0.018737454, -0.034409028, -0.011524424, -0.025786242, 0.009765649, 0.0035859847, -0.011586015, 0.013399539, 0.012810999, 0.009936736, -0.01654754, -0.007774196, -0.016205367, -0.027072815, 0.019011194, -0.01835422, 0.009286606, 0.0066313343, 0.039172094, 0.017957298, -0.007288309, -0.008219022, 0.013344791, 0.02285723, -0.001485891, 0.03030294, 0.018600585, -0.027633982, -0.011661294, -0.003146291, -0.02601892, 0.010169415, -0.0068400605, 0.004670677, 0.013050521, -4.3092552E-4, -0.0056013903, -0.59434277, -0.026977006, 0.0012343931, -4.8888125E-4, -0.008684379, 0.01929862, -0.010799015, 0.016287487, -0.022569805, 0.008862309, -0.029372226, 0.019586047, 1.16873845E-4, -0.015288339, -0.02466391, -0.029317478, 0.01975029, 2.8592924E-4, 0.005074442, -0.01287259, -0.022419248, -0.011503894, -0.0027254168, 0.0137554, 0.026101042, -0.0025765712, 0.010053076, -5.752802E-4, 0.0047425334, 0.010716894, -0.025840988, 0.037584405, -0.012893121, -0.01222246, 0.0358051, -0.031343147, 0.0010804147, 0.027880346, 0.0075141434, 0.030193444, -0.018203663, 0.0034320063, -0.002448256, -0.018039418, 0.010853763, 0.030001827, 0.006836639, 0.0037365414, 0.0046569896, -0.043031815, 0.008622788, -0.004270333, 0.023651075, -0.019544985, 0.00811637, -0.011079598, 0.030001827, 0.0063507515, 0.010559493, -0.006491043, -0.009266075, 0.021734899, -0.019312307, -0.013488503, 0.005587703, 0.008232709, -0.038816232, -0.018833263, 0.020544134, -0.014207069, 0.011859755, 0.022911979, 0.006337065, 0.027154937, 0.016492791, 0.028551009, 0.026101042, -0.0012044528, 2.5513358E-4, 0.028551009, 0.001998297, -0.0012301159, 0.016520167, -0.029782835, 0.026525337, -0.009478223, 0.009799867, -0.005936721, 0.012687816, 0.021379039, 0.038980477, 0.009368727, -0.010422624, -0.014850357, 0.017382445, 0.00843117, -0.012133494, 0.013721182, 0.0140838865, -0.013029991, -0.017669871, -0.0040034372, 0.0033738369, -0.0013404671, 0.0325476, 0.003897363, -0.032574974, -0.02588205, 0.022802483, -0.031890627, -0.005272903, -0.029864958, -0.022241317, -0.0076578567, -0.011065911, -0.015986376, 0.017957298, 0.013940173, 0.016082183, -0.01875114, 0.0063165342, -0.011640763, 0.019859785, -0.0072335606, -0.012167712, 0.017095018, 0.010552649, 0.010395249, 0.0018101011, -0.008807561, 0.025813615, -0.003726276, 0.0345459, -0.012058216, 0.027647668, 0.011004319, 0.011914503, 0.005926456, 0.011763946, -0.030467182, -0.055760693, 0.01758775, -0.0028691299, -0.016095871, -0.008650161, -0.013214764, -0.007479926, 0.013420069, -0.015726322, -0.015698949, 0.009970954, -0.027072815, -0.009601406, 0.019955594, 0.015452583, -0.025320884, -0.01686234, -0.026703268, -0.014617678, -0.025225075, 0.012913651, 0.002853732, -0.0278256, -9.5209945E-4, 0.014973539, 0.00666213, 0.01619168, 0.022843543, 0.0012805866, -0.046015576, -0.01316686, -0.011859755, -0.0077126045, 0.0122019285, -0.025635684, 0.008999179, -0.011428615, -0.021543283, -0.003120628, -0.010217319, 0.008239552, 0.03260235, -0.04973843, 0.019627107, 0.019873472, 0.0013738291, 0.012947869, 0.015904253, -0.01591794, 0.01636961, -0.03462802, 0.010949572, -0.016561227, 0.00921817, -0.0037057456, -0.007452552, 0.011038537, 0.007363587, 0.0067442516, 0.009389258, 0.015959, 0.008109527, 0.0143576255, 0.010942728, 0.0103199715, -0.02912586, 0.01902488, 0.0055842814, 0.01884695, 0.023555266, 0.017012898, -0.01727295, -0.016807593, 0.01456293, -0.016520167, -0.014891418, 0.0300292, 0.03936371, -9.2472555E-4, -0.011079598, -0.011291746, 0.01699921, 0.028852122, -5.038514E-4, -0.016944462, 0.030823044, 0.032410733, 0.037447535, -0.0072061867, -0.028988991, -0.004564603, 0.024828155, 0.009621936, -0.009190797, 0.020133525, 0.021584343, 0.020845247, -0.017505627, 0.036681063, -0.020420952, 0.043031815, 0.02434911, 0.028030904, -0.027524486, 0.013283199, 0.005351603, 0.01560314, 0.02218657, 0.029235356, -0.0036167803, 0.0056082336, 0.017122393, -0.008444857, 0.0035620325, 0.023746883, -0.017396132, 0.0091839535, 0.005351603, -0.019777663, 0.013543252, 0.010703206, 0.021351665, 0.02556725, 0.009574031, 0.019791352, -0.013372164, -0.03276659, -0.022036012, -0.008814406, -0.020503072, 0.014261817, -0.0076647, -0.009033397, -0.0058717076, 0.0124961985, 0.0016817858, -0.009231858, 2.36314E-4, 0.01012151, 0.045522843, -0.0331772, -0.036626317, 0.009950424, 0.011291746, -0.019421803, 0.0025047145, 0.012290894, 0.023500519, 0.0019367054, 0.041143015, 0.00841064, 0.013529564, -0.0047870157, -0.004906777, -0.014727174, -0.007548361, 0.007418335, -0.0065321038, -6.4628135E-4, -0.0018220772, -0.021803334, -9.949782E-5, -0.010716894, -0.017533002, 0.04097877, -0.021228483, -0.0069632432, -0.03309508, 0.013153173, -0.014426061, 0.026361093, -0.03963745, -0.019681854, -0.024636537, -0.0015979531, 0.010196788, -0.01300946, -0.024814466, 0.027538173, -0.02655271, -0.01731401, -0.017122393, -0.034107916, -0.0057451036, 0.036188334, 0.033450942, -0.004112933, 0.024841841, -0.025840988, 0.024157492, 0.0037160108, -0.006398656, 0.008492761, 0.02371951, -0.011921346, 0.011709198, -0.015876878, -0.016410671, -0.013686964, -0.0127699375, -0.011380711, -0.023829006, 0.006911917, -0.006545791, -0.0027870082, -0.0045953984, 0.004694629, 0.005977782, 0.02592311, -0.010059919, 0.0062823165, 0.010196788, 0.010244693, -0.005840912, -0.019900847, -0.007760509, 0.01758775, 0.0012771649, -0.018258411, 0.012188242, -0.0014166009, -0.010716894, 0.017053958, 0.004523542, 0.00953297, 0.036051463, 0.0067237215, 0.011592859, 0.01088798, -0.0047527985, 0.011483363, 0.009676684, 0.012037685, -0.029016364, 0.022802483, -0.0049546813, 0.0014850356, -0.0039931717, 0.0045817113, 0.010217319, -0.009840927, -0.015096722, -0.009019709, -0.03922684, -0.0063781254, -0.011236998, 0.007863161, -0.008191648, -0.017067645, 0.007931596, 0.014330252, 0.008636475, -0.020229334, -0.00375365, -0.036051463, -0.02250137, -0.018518463, 0.026306346, -0.0015765672, 0.006805843, 0.028468886, -0.024403857, 0.03930896, 0.013467973, -0.0053892424, 0.006915339, -0.01817629, -0.024130119, 0.0075278305, 0.0038528806, 0.040294424, 0.015165157, 0.026935946, 0.002670669, 0.019914534, -0.010867449, 0.018053107, -0.02975546, 0.006754517, -0.008793875, 0.0027031754, -0.0011266082, 0.015302027, -0.0046912073, 0.006764782, -0.01970923, -0.0071788128, 0.012195085, -0.004889668, 0.0019401272, 0.016602289, -0.007479926, 1.7977507E-5, -0.019763976, -0.030768296, -0.017437194, -0.017012898, -0.0065663215, -0.037639152, 0.009368727, 0.01965448, 0.01010098, -0.01487773, -0.02177596, 0.015794758, -0.052749563, 0.026456902, -0.01332426, -0.0061762426, 0.030987287, -0.0015671575, 0.0010547517, 0.003818663, 0.02187177, 0.036133587, 0.028167773, 0.007849474, 0.024581788, -0.014056513, -0.031124158, -0.02741499, -0.0019726339, 0.010053076, -0.010545806, -0.030193444, 0.03698218, 0.012550946, 0.030713549, -0.019408116, -0.022870919, -0.030521931, 0.024472293, -0.008041091, 0.028961617, -0.0011325963, 0.007849474, -0.018231036, -0.029290104, -0.032027498, -0.01866902, -0.008362736, -0.017533002, 0.011777633, 0.02417118, 0.0010085582, -0.007363587, 0.0051120813, 0.015589452, -0.019914534, 0.0021095034, -0.017519314, 0.004889668, -0.04689154, 0.01776568, 0.0146998, -0.0062275687, -0.034299534, -0.035777725, -0.0023729776, 0.013556939, -0.034080543, 0.0027185734, -0.014768234, -0.044564757, 0.008075309, -0.032355983, -0.0035551891, -0.0050573335, -0.032027498, 1.2970538E-4, 0.049847923, -0.012030842, 0.012975242, 0.0146998, -0.004099246, -0.038651988, 0.05195572, 0.011900816, 0.027045442, 0.017190827, -0.016752845, -0.019846098, -0.018107854, -0.0010547517, -0.010217319, 0.0024208818, 0.0066313343, -0.0058511775, 0.00406845, 0.008177961, 0.008191648, -0.018053107, 0.0014841802, -0.02975546, 2.7240267E-5, -0.027401304, -0.010600554, -0.023746883, -0.00904024, 0.001446541, -0.009088145, 0.026005233, -0.012824686, -0.010306285, 0.019462863, 7.202765E-4, 0.03665369, 0.025690433, 0.017916236, 0.034737516, -0.014234443, -0.0069187605, -0.02560831, -0.006011999, 0.0050675985, 0.011688667, 0.0152199045, -0.0031497127, 0.027497113, -0.002008562, -0.011695512, -0.028797373, -0.0053379163, 0.016629662, 0.012325112, 0.032629725, -0.0010034256, -0.0031497127, -0.02024302, 0.017505627, -0.0064705126, 0.005977782, 0.0074730827, -0.026169477, 0.015726322, 0.009560345, -0.002261771, 0.012913651, 0.014398687, 0.015233591, 0.013385851, -0.0023712667, -0.024403857, -0.005970938, -0.0048554507, 0.05288643, 0.0035278152, -0.00245681, 0.027223373, 0.0016415804, 0.0039486894, -0.012523573, 0.0019076207, 0.024116432, -0.021830708, 7.908499E-4, -0.028605755, -0.013864895, -0.011695512, 0.0132010775, -0.007603109, -0.0021642512, 0.0020017186, -0.021091612, -0.0093002925, -0.022980414, -0.022706674, -0.03030294, -0.020448325, -0.02710019, -0.02177596, -0.014316565, 0.013515878, -0.04513961, 0.01619168, -0.023938501, 0.007603109, 0.034162663, 0.012318268, -0.0070145694, -0.019681854, 0.014549243, -0.024828155, -5.248095E-4, 0.016985523, 0.005125768, -0.018614272, 0.015740009, 0.0036920586, -0.017382445, 0.008171118, 0.002591969, -0.023911128, -0.049437314, 0.015370461, 1.0644823E-4, 0.009868301, -0.005509003, 0.015302027, 0.006388391, 0.015685262, -0.015315713, -0.014603991, -0.0017690401, 0.001228405, -0.0069461344, -0.0039692195, -0.036598943, 0.023254152, -0.008951275, -0.008219022, 0.009382415, -0.022446621, -0.028824747, 0.0049786335, -0.0027698996, -0.013207921, 0.0015295183, -0.023829006, -0.021351665, -0.009047084, 0.018299472, -0.011305433, 0.010340502, 0.007993188, -0.010176258, -0.0026244754, 0.03358781, -0.0150830345, -0.014412373, 0.011640763, -0.010251536, -0.04264858, -0.03287609, 0.011079598, 0.04965631, 0.012660442, -0.044181522, -0.0034320063, -0.009943579, -0.04264858, -0.035859846, -0.025758868, 0.03224649, 0.008328518, 0.014467121, -0.010066763, -9.965821E-4, 0.025991546, 0.034655396, -0.011846067, -0.022610866, -0.012639912, 0.012263521, -0.0035517672, 0.0062720515, -0.05384452, -0.012461981, 0.030385062, 0.023870066, 0.007288309, -0.0036578414, 0.0057143075, -0.0035859847, 0.0018083901, -0.009272918, 0.019777663, 0.012051372, 0.004547494, -0.043387678, -0.018888012, -0.0022189992, 0.010265224, 0.010018858, -0.020407265, -0.0033019802, -0.029536469, -0.0049786335, -0.02024302, 0.020708377, -0.018053107, 0.0034935977, 0.028195146, 0.014590304, 0.004663833, 0.043031815, 0.019148063, -0.022953039, -0.0154936435, 0.028660504, -0.008492761, -0.0055021597, 0.016930776, -0.025840988, -0.00634733, -0.0016715205, 0.013816991, 0.007151439, -0.015343088, -0.0026552712, -0.008492761, -0.026703268, 0.049081456, 0.016068496, -0.038651988, -0.043004442, 0.01723189, -0.022008639, 0.026251597, 0.009307136, -0.016082183, -0.044291016, -0.0056253425, -0.012229303, -0.02448598, -0.045249104, 0.023801632, 0.008650161, -0.0027989843, 0.003055615, 0.178916, -0.008047936, -0.0067955777, 0.015863191, -0.002523534, -0.0093002925, 0.01880589, 0.0073567433, 0.0038905197, 0.003979485, -0.005211312, 0.027401304, 0.0017305455, -0.0033071127, 0.037885517, -0.02759292, -0.042320095, -0.0059675165, -0.0068297954, -0.014289191, 5.5090035E-4, 0.0069598216, -0.0146998, -0.02904374, 0.012708346, -0.010956415, -0.035038628, -0.025211388, -0.0058443337, 0.00512919, -0.0022720362, 0.013467973, 0.0069735083, 0.009813554, -0.033697307, 0.010107824, 0.0144944955, 0.009574031, 0.012701503, 0.02926273, 0.013474816, -0.01776568, 0.017190827, -0.009519284, -0.0050812857, -0.0030213974, -0.022255005, 0.0104773715, -0.022843543, 0.0011591148, -0.015302027, 0.015247279, -0.016670723, 0.036188334, -0.014412373, -0.03435428, 0.01821735, -0.029782835, 0.0012155735, -0.0039486894, -0.018915385, 0.026429528, 0.001994875, 0.027839286, 0.00888284, 0.025375633, -0.008225866, -0.025827302, 0.010046232, 0.0028195146, 7.733135E-4, 6.6980586E-4, -6.454259E-4, 0.0066415993, -0.038651988, -0.02326784, 0.022583492, -0.018901698, -3.1822192E-4, 0.011544955, 0.009704058, -0.00666213, 0.020420952, 0.010313128, -0.012899964, -0.04103352, 0.019421803, 0.009478223, 0.0154936435, -0.005351603, -0.00398975, -0.007418335, 0.011154876, -0.0014200226, 0.011305433, -0.010922198, -0.023787944, 0.030467182, -0.012071903, -0.0023028317, -0.024266988, 0.065806925, -0.021077925, -0.011414928, -0.027250746, 0.0062036165, 0.006460247, 0.024047997, 0.0010077028, -0.036598943, -0.017574063, -0.041635748, 0.0042190067, -0.0025218232, 0.014008609, -0.010840076, 0.0040616067, 1.4569132E-6, -4.414046E-4, -0.01546627, 0.0136322165, -0.005813538, 0.027086504, -0.0049717897, 0.018039418, -0.028167773, -0.028797373, 0.029098487, -0.009252388, -0.039062597, -1.4221611E-4, 0.018313158, 0.0045030112, -0.010107824, -0.022077074, -0.018792203, -0.020092463, 0.004903355, 0.009704058, -0.007404648, 0.0062960037, 0.0023045426, 0.004458529, -0.009765649, 0.019312307, -0.017245576, 0.00906077, -0.013550095, -0.015274652, -0.025649372, -0.014781922, -5.2694813E-4, 0.014111261, 0.0041300417, 0.012742564, 0.008424327, -0.024732346, -0.04612507, -0.018053107, 0.02037989, -0.011312276, -0.019093316, -0.004680942, -0.0130847385, -0.01654754, -0.0062480993, -0.17289373, 9.84606E-4, 0.017012898, -6.896947E-5, 0.0058238036, 0.012037685, 0.03093254, 0.003924737, -0.013262669, 0.013077894, 0.043907784, -0.004609085, -0.020790499, 0.004338768, 0.0028845277, 0.002578282, -0.025827302, -0.0016296043, 0.022063388, 0.011647607, -0.008061622, -0.048232865, 0.008479075, 0.0146998, 1.7985527E-4, 0.019859785, 0.013255825, 0.041580997, 0.014549243, -0.007260935, -0.009101831, -0.020749439, 0.054994226, -0.01300946, -0.00825324, -0.013714339, -0.007151439, -0.002578282, -0.019449176, 0.038980477, 0.011387555, -0.01786149, 0.01605481, -0.015110409, 0.013091582, 0.029016364, -0.016615976, 6.518417E-4, -0.009615093, -0.030494558, 0.048725594, -0.02772979, 0.010792172, -0.0074593956, 0.012427764, 0.012680973, -0.018860636, 3.7853012E-4, 0.008657005, -0.021420099, -0.0060975426, -0.0050847074, 0.022884605, -0.014918791, 0.01654754, -0.030357687, -0.0040376545, 0.03413529, -0.03268447, 0.0025337993, 0.015356774, 0.017615123, -5.624487E-4, -0.0048212335, 0.036325205, 0.011503894, -0.03846037, -0.013721182, 0.046699923, -0.021734899, -0.004191633, 0.04048604, -0.00536529, 0.001599664, -0.007876848, -0.0162738, -0.021515908, 0.004492746, 0.01745088, -0.017149767, -0.0093002925, -0.0031531344, -0.016328549, 0.008383266, 0.0058751297, 0.00937557, -0.010176258, -0.010566337, 0.010046232, -0.0010171125, -0.0025081362, 0.00294783, -0.034518525, 0.01025838, 0.029810209, -0.009464536, 0.010053076, 0.03197275, 0.005656138, 1.334479E-4, -0.019284934, 0.01754669, 0.012995773, 0.032629725, 0.003278028, 0.0122019285, -0.01348166, -0.02623791, 0.025676746, -0.0011881996, 0.02124217, -0.010799015, -0.016150618, 0.014809296, -0.015822131, -0.018627958, -0.063781254, 0.0040000156, 0.022692988, 0.031178905, -0.023007788, -0.0033943672, -0.008212179, 0.014001764, -0.01269466, 0.04522173, -0.0012532127, -0.044482633, -0.009245545, 0.031726383, 0.025690433, 0.010840076, 0.01880589, -0.029536469, -0.018299472, 0.023555266, -0.008088996, -0.023596328, -0.004400359, -6.9675205E-4, -0.016834967, -0.0057485253, -0.036078837, 0.017067645, 0.022323439, 0.0031668213, 0.010155728, -0.017519314, -0.0041437284, -0.008150588, -0.026758015, -0.023733197, -0.003370415, -0.01749194, 0.019722916, -0.013967548, 0.0043011284, 0.010963258, -6.449982E-4, -0.035038628, -0.0331772, -0.015753696, -0.014179695, 0.03150739, 0.001466216, -0.008376422, -7.121499E-4, -0.020325143, 0.0049888985, -0.00428402, 0.031671636, -0.012523573, 0.0034268738, -0.0037707586, -0.00233876, -0.009286606, 0.008759657, 0.02340471, 0.007993188, -0.0011368735, 0.0110453805, 0.0053447597, 0.009225014, 0.0016509901, 0.026087355, -0.012509885, -0.010128354, 0.014138634, -0.00964931, 0.023829006, -0.038569868, 0.006196773, -0.022118134, -0.012407233, 0.04404465, -0.008992336, -0.017149767, -0.02877, 0.027688729, -0.03224649, 0.021337979, 0.040732406, 0.0063747037, -0.01906594, 0.015726322, -0.047822256, 0.0071582827, 0.0039213155, 0.05225683, -0.0016852075, -0.013043677, -0.012010312, 0.0027801646, -0.011346494, -0.023035161, -0.0019469707, -0.043168686, 0.0065663215, -0.08715859, 0.04256646, 0.014686113, -0.02061257, -0.0050025857, -0.0053892424, 0.028523633, -0.011380711, 0.0130642075, 0.01880589, -0.005632186, 0.01970923, -0.009957267, -0.009902519, -0.019627107, -0.016013749, 0.015274652, -0.025621997, 0.014781922, 0.022610866, -8.4517006E-4, 0.012078746, -0.0080068745, 0.02678539, -0.028687878, 0.0045132767, -0.008622788, 0.013604843, 0.013050521, -0.010012015, 0.034025796, -0.004718581, 0.017642498, 0.065971166, -0.0053995075, -0.026580086, 0.015740009, -0.011469676, -0.006432873, -0.037639152, -0.024787093, -0.020297768, 0.0047288463, -0.010155728, 0.011113815, -0.004232694, 0.019449176, 0.0067237215, 0.024102744, 0.031890627, -0.0064534037, -0.0016852075, 8.4645324E-4, -0.03336882, 0.010408937, -0.009587719, 0.027921408, -0.016711785, 0.019449176, 0.0020838403, 0.043278184, 0.00298718, 0.012687816, -0.03616096, 0.01346113, -0.010881137, -0.026497964, 0.009190797, -0.013077894, -0.004030811, -0.040294424, -0.013262669, 0.003818663, 0.03476489, -0.009662997, 0.012592007, 0.006213882, -0.0024722079, -0.022432934, 0.00422585, -0.01073058, 7.583434E-4, -0.00414715, -0.0070214127, 0.009929893, -0.016068496, -0.0029426974, 0.004119776, -0.012598851, 0.03268447, -0.027045442, 0.03594197, -0.014754548, 0.006337065, 0.036516823, 0.020037716, -0.015945313, -0.010710049, 0.051243994, 0.0339163, -0.01880589, 0.0058374903, -0.0025184015, -0.027401304, 3.402494E-4, -0.0030299518, -0.0127904685, -0.020817874, 0.0038939414, 0.013988078, 5.0000194E-4, -0.010408937, 1.632812E-4, 0.011435459, -0.0045406506, 0.028003529, 1.9910256E-4, -0.012660442, -0.03462802, 0.023924815, 0.009642467, -6.137748E-4, -0.015384148, -0.008937588, 0.017943611, -0.016068496, 0.008581727, -0.0014148899, 0.014740861, -0.027223373, 0.0104568405, -0.0046604113, 0.0019384164, -0.0017810162, -0.01636961, -0.00809584, -0.0099093625, 0.0026877776, 0.010874294, 0.09580875, 0.0047699073, -0.002538932, 0.027305495, -0.0149461655, 0.019695543, 0.010853763, -0.011312276, -0.002973493, -0.041362006, -0.0069598216, -0.0068161082, -0.009279762, 0.021433787, -0.038925726, 0.019763976, 0.02651165, 0.016629662, -0.011681824, -0.029098487, 0.019873472, -0.0081642745, 0.037639152, -0.0037057456, -0.013851209, 0.0080068745, 0.03616096, 0.02538932, 0.0045782896, -0.02096843, 0.009676684, 0.019900847, -0.015534705, -0.010559493, -0.002894793, 0.0021146361, -0.010162571, -0.009348197, 0.012071903, -0.024828155, 0.0032044605, 0.010374719, -0.012304581, -0.0020718642, 0.03183588, -0.022022326, -0.0015115541, -0.023596328, -0.07314314 ], - "id" : "181fc065-b242-4f35-80e4-a9130df99c47", - "metadata" : { - "name" : "Zephyr 8.8 GX Eagle AXS Gen 3" - }, - "text" : "Wheels\nWheel front\tDT Swiss HX1501 Spline One, Centerlock, 30mm inner width, 110x15mm Boost\nWheel rear\tDT Swiss HX1501 Spline One, Centerlock, 30mm inner width, SRAM XD driver, 148x12mm Boost\nTire\tBontrager XR4 Team Issue, Tubeless Ready, Inner Strength sidewall, aramid bead, 120tpi, 29x2.40''\nMax tire size\t29x2.60\"\n\nDrivetrain\nShifter\tSRAM GX Eagle AXS, wireless, 12 speed\nRear derailleur\tSRAM GX Eagle AXS\nCrank\tBosch Gen 4, 32T\nChainring\tSRAM X-Sync 2, 32T, direct-mount\nCassette\tSRAM PG-1275 Eagle, 10-52, 12 speed\nChain\tSRAM GX Eagle, 12 speed\n\nComponents\nSaddle\tBontrager Arvada, hollow titanium rails, 138mm width\nSeatpost\tRockShox Reverb Stealth, 31.6mm, internal routing, 150mm (S), 170mm (M/L), 200mm (XL)\nHandlebar\tBontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width\nGrips\tBontrager XR Trail Elite, alloy lock-on\nStem\tBontrager Line Pro, Knock Block, 35mm, 0 degree, 50mm length\nHeadset\tIntegrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom\nBrake\tSRAM Code RSC hydraulic disc, 200mm (front), 180mm (rear)\nBrake rotor\tSRAM CenterLine, centerlock, round edge, 200mm (front), 180mm (rear)\n\nAccessories\nE-bike system\tBosch Performance Line CX\nBattery\tBosch Powertube 625Wh\nCharger\tBosch 4A compact charger\nController\tBosch Purion\nTool\tBontrager multi-tool, integrated storage bag\n\nWeight\nWeight\tM - 24.08 kg / 53.07 lbs (with TLR sealant, no tubes)\nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n\n## Sizing & fit\n\n| Size | Rider Height | Inseam |\n|:----:|:------------------------:|:--------------------:|\n| S | 153 - 162 cm 5'0\" - 5'4\" | 67 - 74 cm 26\" - 29\" |\n| M | 161 - 172 cm 5'3\" - 5'8\" | 74 - 79 cm 29\" - 31\" |\n| L | 171 - 180 cm 5'7\" - 5'11\" | 79 - 84 cm 31\" - 33\" |\n| XL | 179 - 188 cm 5'10\" - 6'2\" | 84 - 89 cm 33\" - 35\" |\n\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\nSizing table\n| Frame size letter | S | M | L | XL |\n|---------------------------|-------|-------|-------|-------|\n| Actual frame size | 15.5 | 17.5 | 19.5 | 21.5 |\n| Wheel size | 29\" | 29\" | 29\" | 29\" |" - }, - "8879579e-e34b-4ebb-a13e-ebd86f7e03f3" : { - "embedding" : [ 0.013257776, 0.0055833007, -0.02659756, -0.0126495585, -0.009123263, 0.008467209, -0.015048259, -0.017522132, -0.022374205, -0.02665223, 0.004606052, 0.0016367203, -0.012430874, -0.0017819408, -0.021267112, 0.01590933, 0.007783818, -0.020064345, 0.005340697, -3.2525117E-4, -0.0056311376, -8.597907E-4, 0.0072439397, -0.006577634, -0.0019015342, -0.02028303, 0.044721074, -0.0037688988, -0.0062359385, -0.011269109, 0.019052928, 0.0053338627, -0.010442207, -0.034032848, -0.008064008, 0.007872659, 0.009772484, -6.9833966E-4, 0.03365015, 0.031244615, 0.03151797, -0.0013445709, -0.019900331, -0.0067245625, -0.019380955, 0.016661061, 0.03457956, 0.012724731, -0.019244276, 0.02334462, -0.012567552, 0.02260656, 0.0013975336, -0.013305614, 0.013606305, 0.009253108, 0.014187187, 0.017754486, 0.024383374, 0.009143765, -0.0142555265, 0.010209855, -0.032037348, 0.0033913255, -0.03414219, -0.027239947, 0.0068612406, -0.0015521507, -0.01573165, 0.0187249, 0.021062095, 0.016893413, 0.009950166, -0.011036756, 0.011453625, -7.4489566E-4, 0.0018024425, -0.01629203, 6.8392445E-5, -0.008918246, 0.02290725, -0.010783902, -0.024205692, 0.01610068, 0.023973338, -0.013722481, -0.0027472298, -0.0044283704, 0.010086844, -0.014829574, 0.010592553, -4.4313605E-5, -0.017371787, 0.011808988, -0.0011677436, 6.090718E-4, -8.8584493E-4, -0.004916995, -4.8435302E-4, -0.011528798, -0.02041971, -0.0022996091, -0.019558636, -0.015581303, -0.015649643, -0.029139772, -0.011118764, 0.0013889913, 0.0065366304, -0.03170932, -0.006382867, 0.01797317, -0.0035433797, -0.009246274, 0.01709843, -0.011808988, 0.02859306, 0.017248776, 0.024725068, -0.006680142, 0.009273609, 0.02059739, 0.010121014, -0.030533887, 0.0052347714, 0.023125935, 6.1675993E-4, -0.01497992, -0.019927667, 0.0068168202, 0.02171815, -0.017959503, 0.005046839, 0.019572305, -0.013797655, 0.02903043, 0.0015999881, 0.003741563, -0.033431463, -0.015157602, -0.009068592, 0.006194935, 0.002424328, 0.006642556, -0.00605484, -0.013749817, -0.014692896, 0.0076198042, 0.009184768, -0.031490635, 0.004961415, 0.006700644, 0.043108273, 0.02378199, 0.011050425, 0.0012745233, -0.0015769236, 0.022059847, -0.024752405, -0.0132646095, -0.024301367, -0.0014872286, 0.0074011195, -0.022893582, 0.031217279, 0.014515215, 0.014843242, -0.019654311, 0.0071550985, -0.0076539735, -0.022756904, 0.027745655, -0.021144103, -0.007045756, -0.014624557, 0.029877834, 0.0031948506, -0.0073601156, -0.0012651267, 0.011925165, 0.006984251, -0.0063794507, 0.022456212, -0.0025797992, -0.022360537, 0.009772484, 0.042588897, -0.013961668, 0.008535547, 0.006184684, 0.0153626185, 0.013626806, -0.009779318, 0.036793746, -0.6013836, -0.055627987, -0.005405619, -0.010312363, -0.018328534, 0.0070184204, -0.013941167, 0.017426457, -0.025736487, -3.8696988E-4, -0.020829743, 0.013496962, -0.008569717, 0.0021885582, -0.009054924, -0.017030092, 0.007141431, 0.0045787166, 0.026310535, -0.010476377, -0.037121773, -0.018055178, -0.014597221, 0.0059454977, 0.011207605, -0.010626722, 0.019244276, -0.0096904775, 0.008111846, 0.012150683, -0.0067724, 0.034251533, -0.01853355, -0.0063897013, 0.047181282, -0.061013106, 0.0074011195, 0.029139772, 0.016770404, 0.024137354, -0.051582318, -0.010982086, -0.007982002, -0.009847658, -0.00805034, -0.0021731819, 0.028975759, -0.04575983, 0.00541587, -0.02883908, 0.002424328, 0.017822824, 0.009512796, -0.011152933, -0.005692643, -0.02665223, 0.0059591653, -0.0072371056, 0.0056994767, -0.006194935, -0.009102762, 0.001237791, -0.02222386, 0.0037859834, -0.016387705, 0.025258113, -0.04912211, -0.0047085606, 0.006116345, -0.024820743, -0.0052313544, 0.021403791, -0.010503712, 0.012861409, 0.024588391, 0.043600313, 0.026501885, -0.0072986106, 0.008282693, 0.035426963, 0.01382499, 0.019681647, -0.0060343384, -0.019613307, 0.025859497, 0.011282777, -0.014897913, 0.0017665644, 0.022948254, 0.015840992, 0.025695484, 0.015280612, 0.021964172, 9.781027E-4, 0.0034118271, 0.02927645, -0.012219022, 0.020187356, -0.0017887746, -0.037777826, -0.017317116, 0.006123179, 0.033868834, -0.011118764, 0.011740649, 0.019134935, 3.382783E-4, -0.005388534, 0.01597767, -0.017891163, -0.026993925, 0.004988751, -0.038051184, 0.0031043014, -0.006974, -0.033103436, 0.0068168202, 0.021007424, 0.019175937, -0.018875247, 0.0028036095, -0.0018707815, 0.02227853, 0.024451712, -0.015799988, 0.009977502, 0.012123347, 0.0015051676, -0.024069013, -0.0014855202, 0.02385033, 0.019326285, 0.047153946, 0.0011771402, 0.040894087, -0.0046675573, 0.020201024, 0.0028463216, -0.003891909, -0.028511053, -0.035973676, -0.0039739157, 0.002449955, -0.015403622, -0.010660892, -0.028948423, 0.0013155268, 0.019080263, 0.014269194, 0.0030462132, -0.008139181, 0.003357156, -0.023918668, 0.0116654765, 0.016251026, -0.023112267, -0.024383374, -0.037777826, -1.9927775E-5, -0.013961668, 0.014173519, 0.009157433, -0.007571967, -0.019544968, -0.0136404745, -0.002726728, 0.0040422548, 0.0032495218, -8.4868557E-4, -0.0374498, 0.0045787166, -0.019380955, -0.030943923, 0.020952754, -0.004971666, 0.01816452, -0.01070873, -0.005286026, 0.004848656, -0.012765734, -0.002658389, 0.0012856284, -0.06484009, 0.011371618, 0.026515553, 0.018082513, 0.03015119, 0.0064341216, -0.0065297964, 0.01139212, -0.014761236, 0.019011924, -0.008692727, -0.013052759, 0.01884791, 0.0035057934, 0.015964003, -0.00983399, -0.003024003, 0.020693066, 0.030998593, 0.027472299, 0.011084594, -0.008214354, 0.0088294055, -0.03788717, 0.030369874, -0.0051971846, -0.005542297, 0.029057765, 0.021649811, -0.0346889, -0.009622138, -6.090718E-4, -0.006338447, 0.0021509717, 0.01251288, 0.0354543, -0.01947663, 0.0025729653, 0.010859075, -8.755941E-4, 0.014433208, 0.0070662578, -0.0131415995, 0.0032204778, 0.034224197, 0.038707238, 0.0054466226, -0.024424378, 0.006188101, 0.011467293, 0.022825243, -0.007982002, 0.0027335621, -0.0046983096, 0.01804151, -0.007811154, 0.04256156, 0.003529712, 0.022264862, 0.029057765, 0.041604813, -0.016702063, 0.016401373, -0.0013514047, 0.042698238, 0.01398217, 0.037750494, 0.027171606, 2.722884E-4, 0.0010729231, 0.0010165434, 0.023385623, 0.022510884, -0.013127931, -0.0018741984, 0.020775072, -0.0075924685, 0.017330784, 0.029604478, 0.025203442, 0.01728978, 0.010558384, 0.03181866, -0.03564565, -0.012581219, 0.007414787, -0.011070927, -0.0350716, -0.020761404, -0.004886242, -0.008590219, -0.0107634, -0.013052759, 0.0046026353, 0.021554137, 0.006717729, 0.017904831, 0.02759531, -0.024834411, -0.01522594, 0.010004837, 0.028429046, -0.0073874514, 0.0032836914, 0.0072371056, -0.0017383746, -0.009287277, 0.028183024, 0.0064341216, 0.008624388, -0.013913831, -0.0027062264, -0.024547387, -0.0072439397, -7.6240755E-4, -0.0123557, 0.009348782, 0.0068202373, -0.009246274, 0.012840908, 0.009287277, -0.0070320885, 0.020884413, -0.0179185, 0.027280949, -0.015936667, 0.012150683, -0.0043429467, -0.024205692, -0.027909668, 0.0041037602, -0.011344283, 0.0027352704, -0.021772822, -0.0031931421, -0.033486135, 0.023303617, -0.024875415, -0.0123557, -0.0036356375, -0.021198774, -0.013777153, 0.016155351, 0.025435794, 0.0015615473, 0.005911328, -0.0016819949, 0.009704146, -0.011631306, 0.0053611984, -0.0027813993, 0.040730074, -0.009341949, 0.007120929, -0.011849991, -0.013954834, -0.008665392, -0.019572305, -0.0031487218, -0.025449462, 0.014200855, 0.001115635, -0.023289949, -0.004254106, -0.012806738, 0.013291946, 0.011398953, 0.010442207, -0.010982086, -0.008467209, 0.0039021599, -0.0078453235, -0.012615389, 0.009451291, 0.024615726, 0.012683728, -0.019626975, 0.016278362, 0.0130254235, -0.023508634, 0.029987175, 0.0036322207, 0.0044317874, 0.021895831, 0.012239524, 0.020351369, 0.009786152, 0.001151513, 0.0030667149, 0.019777322, -0.004975083, -8.4612286E-4, 0.021499466, -0.004674391, -0.037668485, -0.003604885, 7.28238E-4, 0.02159514, 1.8953408E-4, -0.015307947, -0.017713482, -0.02565448, 0.0065707997, -0.043080937, 0.016469711, -0.0034682069, -0.006546881, -0.017084762, -0.021253444, 0.008091344, 0.0019066596, -0.017986838, -0.033677485, 0.0021578055, -0.023194274, 0.027937004, -0.011152933, -0.0040661735, 0.0354543, -0.018068844, 0.003167515, -0.009649474, -0.027690984, 0.014692896, -0.013216772, -0.005186934, -0.0027831078, 0.0015350659, 0.030287867, 0.0032956507, -5.424412E-4, -0.002022836, 0.01867023, -0.009294111, 0.003490417, -0.005542297, -0.0071004275, -0.009061758, 0.017194105, 0.002475582, -0.013524299, 4.7410215E-4, 0.0024448296, -0.036821082, -0.0021253445, 0.015813656, 0.0110435905, 0.006126596, 0.014706564, -0.0023696567, -0.010736065, -0.013995837, -0.0109205805, -0.0027489383, -0.0050707576, 0.007954665, -0.013203105, 2.2082056E-4, 0.013647309, -0.009656308, 0.0093214465, -0.012963918, 0.014720231, -0.05587401, 0.03832454, 0.004332696, -0.01610068, 0.015827324, 0.0215268, 0.019080263, -0.03395084, 0.02434237, 0.014050509, 0.027321953, 0.0042165197, -0.0037586477, -0.03433354, -0.021075763, -0.013414956, 9.447874E-4, 0.0088294055, -0.027007593, -0.019790988, 0.0027899418, 0.0145015465, -0.0029112436, -0.015950335, -0.020078013, -0.008228022, 1.5280185E-4, -0.02577749, 0.016059676, -0.011269109, 0.004752981, -0.013995837, -0.023262613, -0.03794184, -0.034169525, -0.018683897, -0.024697734, -0.0024772906, 0.025162438, 0.024137354, -0.0046983096, 2.9962402E-4, 0.02022836, 0.0044386215, -0.009068592, -0.027021261, 0.0043531978, -0.038625233, 0.012451375, 0.032529388, -0.004674391, -0.02246988, -0.020980088, -0.02584583, 0.00748996, -0.00310601, -0.0025063348, -0.019189605, -0.052839756, -2.0971546E-4, -0.02166348, 8.5509237E-4, 0.0023115685, -0.0109274145, -0.014064177, 0.0152396085, 0.0032836914, -0.0029607895, -0.013250942, -0.011002587, -0.015635975, 0.016196355, -0.026474549, 0.02596884, -0.024916418, -0.025695484, -0.016497048, -0.03190067, 0.003987584, -0.029112436, 0.018314866, -0.010845408, -0.010934249, 0.007913662, 0.008467209, -0.009868159, -0.002974457, -0.0010464417, -0.031490635, -0.0043771164, -0.011897828, -0.014241858, -0.03288475, -0.030943923, 0.01578632, 0.004455706, 0.025681816, -0.02621486, 0.0026686399, 0.02527178, 0.005248439, 0.024807075, -0.008740565, 0.017904831, 0.011822656, -0.020324035, -0.02452005, -0.0044420385, -0.0050024185, 0.0125265485, 0.005040005, 0.04187817, -0.014269194, -0.029221779, 0.013483295, 9.6785184E-4, -0.0047734827, -0.029112436, 0.03865257, 0.029303785, 0.004520628, -0.0077974857, 0.0014436624, -0.016879745, 0.013763485, 5.6337006E-4, -0.001241208, 0.002805318, -0.03220136, -0.0021441376, 0.02178649, -0.011986669, 0.01441954, 0.0022825242, 0.0060753417, 0.0023594059, 0.0015598389, -0.018615557, 0.012868243, -5.4190732E-5, 0.048876088, -0.033349458, -0.017426457, 0.029413128, 0.01004584, -0.03714911, -0.012478711, 0.0048452388, 0.023549637, -0.017371787, -0.016401373, -0.0018844494, -0.008262191, 4.0704448E-4, -0.018492548, -0.0015658186, -0.0076198042, -0.004049089, 0.0034887085, 0.012041341, -0.03077991, -0.016374037, -0.012273693, -0.012820406, -0.02546313, -0.01966798, 0.0015350659, 0.0021458461, -0.046333876, -0.008904578, -0.017986838, 0.017986838, 0.039171945, 0.014474211, -0.03165465, 0.01389333, 0.020542718, -0.011139265, 0.016401373, 0.004219936, 0.03496226, -0.019872997, -0.017385455, -0.0061744335, -0.010838574, -6.351261E-4, 5.351802E-4, -0.019203274, -0.02752697, 0.02452005, -0.0012907538, 0.008603887, -0.010613055, -0.0049306625, 0.009102762, 0.004127679, -0.009184768, -0.005719979, 0.030178525, 0.015676979, 0.012861409, 0.0104285395, -0.0143785365, 0.032912087, 0.0044352044, -0.021895831, 0.0023269446, -0.025422128, 0.0033879085, 0.013845492, 0.011050425, -0.024547387, -0.016374037, -0.04450239, -0.0051425137, -0.015622308, 0.02022836, -0.002045046, 0.0016674729, 0.013189437, 0.010216688, 0.004992168, 0.04007402, -0.002292775, -0.041850835, 0.030315204, -0.014474211, -0.023754654, -0.0163467, 0.0015521507, 0.043764327, 0.022879915, -0.013175769, -0.0073259464, -0.00792733, -0.051172283, -0.016087012, -0.009464959, 0.02346763, 0.010373868, -2.5712568E-4, -0.016333032, 0.014856909, 0.0033810746, 0.02441071, -0.021130435, 0.0012787945, 0.0041413466, -0.003604885, -0.007783818, 0.00817335, -0.039171945, -0.005108344, 0.025230778, 0.032857414, 0.018396873, -0.0027130602, -0.004947747, 0.009505962, 0.010462709, 0.007148265, 0.013326115, 0.010886411, -0.0035638816, -0.0346889, -0.0076061366, -0.001588883, 0.005904494, -0.020542718, 0.011105096, -0.005016086, -0.0025627145, -4.8392592E-4, -0.020788739, -0.0025473381, -6.81682E-4, -0.014515215, 0.03258406, 0.0043634484, -0.012198521, 0.046279207, 0.032119352, -0.0029112436, -0.006246189, 0.008282693, 0.004517211, -0.020378705, 0.0042301873, -0.040921424, -0.008918246, -0.023399292, 0.013011755, -0.006338447, 0.01590933, -0.0163467, -0.025873166, -0.0040798415, 0.032611396, 0.012738399, -0.020351369, -0.022169188, -0.0031555558, -0.01610068, 0.024356037, 0.0016187812, -0.008446706, -0.04064807, 0.009451291, -0.01008001, -0.01585466, -0.009123263, 0.034251533, -0.019312616, 0.014173519, 0.008679059, 0.19134934, -0.007824821, -0.011193937, 0.017358119, 0.004465957, -0.0015649643, 0.010004837, 0.016141685, -0.002012585, -0.004055923, 0.02066573, 0.015089262, -0.026488217, 8.1152626E-4, 0.015936667, -0.024082681, -0.04502177, -3.51519E-4, -0.012444541, 0.005771233, 0.0058942433, 0.003353739, -0.016456043, -0.018260194, 0.028702402, 0.005255273, -0.020747736, -0.0030393794, 0.0017921916, 0.015061927, -0.0033639898, -0.008351032, -0.015430958, 0.0030940506, -0.021745486, -0.017303448, 0.012294196, -0.0163467, 0.009123263, 0.020009674, 0.009403453, -0.012362534, 0.044967096, -0.05398785, 9.6785184E-4, -0.019080263, -0.0071687666, -0.007045756, -0.00992283, -0.020993756, -0.028128354, -0.010408037, 0.03058856, 0.029413128, -0.015389955, -0.00505709, 0.011132431, -0.00908226, -0.005402202, -0.0010857367, -0.024041679, 0.043846335, 0.010695062, 0.007476292, -0.016073344, 0.013175769, -0.03214669, -0.03258406, 0.011822656, -0.0025524637, -0.009464959, -7.4062444E-4, -0.013004921, 2.9919692E-4, -0.029221779, -0.03550897, 0.03190067, -6.013836E-4, 0.037586477, 0.014173519, -1.6433407E-4, -0.01441954, 0.0047119777, 0.023768323, -0.0064546233, -0.041304123, 0.016442375, 0.0034152442, -0.005689226, 0.007982002, 0.011822656, 0.019640643, -6.176142E-4, 0.024807075, -0.0038440716, 0.0013317573, -0.031107936, 0.016196355, -0.022374205, -9.114721E-4, -0.017809156, 0.03649305, -0.027745655, -8.781568E-4, -0.016948085, -0.017617807, -0.005620887, -0.0012061843, 0.023194274, -0.030752573, -0.005685809, -0.042889588, 0.0021492632, -0.0065127118, 8.3629915E-4, 0.0076266383, 0.0045035435, -0.0020638395, -0.0025678398, -0.010531047, 0.03550897, -0.0059967516, 0.013244108, 0.002991542, 0.0043702824, -0.013770319, 0.0013915539, -0.007865825, -0.025859497, -0.03277541, 0.025504135, 4.8947847E-4, 0.02821036, -0.0069637494, -0.021554137, -0.014214523, -0.013989003, 7.842974E-5, 0.015007256, -0.0019664562, -0.007476292, 0.015075595, 0.0070320885, -0.0021765989, 0.031353958, -0.015061927, 0.004315611, 0.011863659, -0.018793238, -0.00880207, -0.0350716, -0.0072986106, 0.008931914, -0.0021082598, 0.00789316, 0.017303448, -0.021376455, -0.03088925, -0.020242028, -0.0068236543, -0.039554644, 0.0018741984, 0.0011805571, -0.017781822, -0.022893582, -0.02889375, -0.17341718, -0.0033827832, 0.03427887, -0.007202936, -0.0035809663, 0.030342538, 0.02770465, 0.013606305, -0.023194274, 0.0054978766, 0.0290851, 0.023959672, -0.0414408, -0.021554137, 0.0027626061, -0.006635722, 3.5643086E-4, 0.0040012514, 0.026993925, 0.028921086, 0.0057985685, -0.010442207, 0.01230103, 0.03058856, -0.0026703484, 0.03438821, 0.0042336043, 0.039171945, 0.032556724, 0.019749986, -0.024588391, -0.031381294, 0.017385455, 0.014733899, 0.001746917, -0.011337449, -0.007578801, 0.013975336, -0.010913746, 0.038351875, -0.009499128, 0.008023005, 0.018383205, -0.010872743, 0.02684358, 0.010524214, 0.004155014, 0.0044078687, 0.0028309452, -0.0031623896, 0.0430536, -0.02159514, 0.023180606, -0.008023005, 0.018068844, 0.0046333876, -0.013175769, 0.003604885, 0.009874993, -0.015130266, -0.017877495, -0.04037471, 0.018424207, -0.020078013, 0.0054671243, -0.022729568, -0.014323865, 0.0100595085, -0.014337533, -0.0050331713, -0.010162017, -0.011269109, 0.013695146, 4.3566147E-4, 0.040702738, 0.018027842, -0.014569886, -0.007551465, 0.014187187, -2.342748E-4, -0.01767248, 0.032256033, -0.016018674, -0.0048725745, -0.0022295616, -0.025203442, -0.014515215, 0.015335283, 0.0012728148, -0.026679566, 0.0024414125, -0.030096518, 0.011118764, 0.008310028, 0.03170932, 0.0068202373, 0.006341864, -0.01016885, -0.014556218, 0.009177934, 0.0019972087, 0.002313277, -0.042916924, 0.019080263, 0.045404464, 0.0034459967, 0.0021441376, 0.02840171, 0.014679228, 0.013442291, -0.0148705775, 0.024069013, 0.025258113, 0.017221441, -0.01083174, 0.022592891, -0.04606052, -0.019996006, 0.0025780906, 0.002805318, 0.033868834, -0.022360537, -0.027581641, 0.011098262, -0.0012104554, -0.02409635, -0.07369683, -0.016182687, 0.021800157, 0.03315811, -0.01441954, 0.014351201, -0.011603971, 0.007134597, -0.012198521, 0.021403791, -0.031135272, -0.0051698494, -0.003203393, 0.009840824, 0.022073513, 0.007571967, 0.002077507, -0.02378199, -0.029905168, 0.033540808, -0.0099364985, -0.020146353, 0.002345738, -0.003321278, -0.005549131, -0.00852188, -0.008966084, 0.026392542, 0.023426628, -2.0405614E-4, 0.016866079, -0.036711738, -0.0028616977, 0.01242404, -0.02889375, -0.018273862, 0.013872827, -0.012540216, 0.0036288036, -0.03895326, 0.015745318, 0.012793071, 0.011255442, -0.029495135, -0.005983084, -0.027116936, -0.013237274, 0.03466157, -0.015444625, -0.0045787166, -0.01697542, -0.0052211033, -0.017904831, -4.586191E-5, 0.019326285, -0.001570944, -0.009649474, 0.012998087, -0.013681478, 0.013408122, -0.01816452, 0.014282862, 0.0067997356, 0.016374037, 0.029385792, -0.0048008184, -0.01760414, 0.0119114965, 0.034989595, -0.0032409795, 0.0018161103, 0.03414219, -0.003949997, 0.037969176, -0.022456212, 0.023686316, -0.015567636, -0.024697734, 0.013080094, -0.0012847742, -0.024178356, -0.012471877, 0.025422128, -0.043819, 0.015171269, 0.036903087, 0.012465043, 0.0034135357, 0.0028958672, -0.03132662, 0.015690647, 0.027896, 0.055901345, -0.006109511, 0.011480961, -0.03058856, 0.00864489, 0.01797317, -0.019367287, -0.018697564, -0.038051184, 0.0056003854, -0.07178334, 0.030424546, -0.0054671243, 2.2423752E-4, -0.008296361, -0.0018263612, 0.02222386, 0.002016002, 0.03520828, 0.011774818, -0.0026566805, 0.0061983517, -0.010278193, -0.00259005, -0.016743068, 0.01748113, 0.022770572, -0.014364868, 0.028128354, 0.03884392, -0.017959503, 0.017658811, 0.0035741325, 0.044666406, -0.002277399, -0.0015837575, -0.0021748904, -0.0051390966, 0.014433208, -0.0023969922, 0.026419878, -0.002041629, 0.015676979, 0.042616233, 0.00561747, -0.008214354, -0.0026310536, -0.0035160442, -0.0041481806, -0.021130435, -0.03734046, 1.3230013E-4, 0.0010028756, -0.014856909, 0.0010028756, 0.013449125, 0.00992283, -0.0051527643, 0.02365898, 0.0026105517, 0.020433376, 0.018260194, 0.00705259, -0.0153626185, 0.012820406, -0.009601637, -0.0122805275, 0.0030820912, 0.007879493, -0.019681647, 0.0629266, -0.009526464, 0.013490128, -0.035317622, 0.001319798, -0.019572305, -0.021007424, 0.023686316, 0.019080263, -0.019982338, -0.0541792, -0.0071072616, -0.018697564, 0.011501462, 0.00320681, 0.0023525718, 5.373158E-4, 0.013367118, -0.027280949, 0.008843074, 0.032802746, -0.013360284, -3.572851E-4, 0.016961753, 0.014036841, -0.01809618, -0.01709843, 0.011713314, 0.023125935, 0.007182434, -0.045267787, 0.022948254, -0.0017358119, 5.168808E-6, 0.011528798, 0.014733899, -0.01916227, -0.008754233, 0.038625233, 0.0039158277, -0.016743068, -0.007353282, -0.00382357, -0.009697312, 0.008323696, 0.03151797, -0.0053099445, -0.008180184, 0.02303026, 0.001054984, 0.009369284, -0.028347038, 0.012663227, 0.009601637, -0.013565302, 0.00864489, -0.0012779402, -0.012690562, -0.025476798, 0.050844256, 0.027267281, 0.008679059, 0.007284943, 0.021458462, 0.013879661, -0.020611057, 0.03277541, -0.0056413887, 0.002629345, -0.020802407, 0.004250689, -0.04294426, -0.0040764245, -0.0056448057, -0.0366844, 0.0179185, 0.006751898, 0.0025456296, 0.009663142, 0.11513764, 0.009437623, -0.014337533, 0.022510884, -0.01916227, 0.03764115, 0.0050058356, -0.027622644, -0.011542466, -0.0350716, 0.008002503, -0.015458293, -0.043928344, -0.0119525, -7.594177E-4, 0.014815906, 0.008385202, 0.020952754, -0.017904831, -0.0011933707, 0.013852325, 4.59153E-4, 0.00502292, -0.0028668232, -0.003493834, 0.011344283, 0.024479048, 0.0270896, -0.0030615896, -0.026501885, 0.0032648982, 0.006676725, -0.0390626, -0.013244108, -0.004852073, -0.016633725, -0.008419371, 7.437211E-5, 0.025381124, -0.007073092, 0.0133944545, 0.0037688988, -0.008351032, -0.026816243, 0.01772715, -0.032529388, 0.017180437, -0.020638393, -0.060575735 ], - "id" : "8879579e-e34b-4ebb-a13e-ebd86f7e03f3", - "metadata" : { - "name" : "Horizon+ Evo Lowstep" - }, - "text" : "| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° |\n| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 |\n| F — Bottom bracket height | 29.4 | 29.4 | 29.4 | 29.4 |\n| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 |\n| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 |\n| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 |\n| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 |\n| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 |\n| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |\ntags: [bicycle, road bike, professional]" - }, - "37c303e8-e25e-4d07-9d08-8d2219db8017" : { - "embedding" : [ 0.020231841, 0.0071136015, -0.02945518, -0.009453246, -0.008107613, 0.016499229, -0.006985124, -0.026020095, 0.0081008505, -0.01998841, 0.0133887185, 2.6012489E-4, -0.018811826, -0.011211361, -0.011637365, 0.02155719, 0.0068836943, -0.014808734, 0.0095682, -0.034188565, 0.016593896, -0.0031274152, -0.018825348, -0.0072285556, -0.016147606, -0.014227203, 0.033539414, -0.013334623, 0.0071406495, -0.03218702, 0.017229522, 0.011813177, -0.023355875, 6.406975E-4, 0.0014834091, -0.003037819, 0.019163448, -0.005017388, 0.02907651, 0.024370171, 0.034567237, -0.003526372, -0.020285936, 0.005730777, -0.003232226, 0.033755798, 0.0055346796, 0.0065455954, 0.008607999, 0.00785742, -0.017594669, 0.03297141, -0.014416539, 0.004517002, 0.001917021, -0.026155334, 0.02361283, 0.018392583, 0.030942814, 0.011008502, 4.6953492E-4, 0.014200156, -0.037596602, -0.003529753, -0.028183928, -0.020096602, -0.004378381, 0.010609545, -0.0028146738, 0.025925428, 0.019934313, 0.0054873456, 0.022422722, 0.024234932, 0.017486477, -0.016512752, -1.2953416E-4, -0.016445132, 0.0024343124, 0.016066462, 0.024275504, -0.001917021, -0.009838679, -0.0075057964, 0.029401084, 0.021881763, -0.0053318203, 0.00666393, -0.017297141, 0.0031138912, 0.012928904, 0.022084624, 2.1458717E-4, -6.804241E-4, 0.011975464, -0.019947838, -0.016012367, 0.010819166, -0.018284392, -0.037785936, 0.015985318, 0.017811053, 0.017432382, -0.012888332, -0.02996909, -0.019041732, -0.026263526, -0.005210105, -0.004395286, -0.011170789, -0.021989955, 0.02159776, -0.0043141427, 0.01902821, 0.021827668, -0.010927358, 0.047874812, 0.019420404, 0.017621716, -0.01609351, 0.019501546, 0.025857808, 0.015322644, -0.027237251, 0.0049937214, 0.014916926, -0.009480295, -0.013693008, 0.002730149, -0.008790572, 0.018676586, 0.012036323, 0.0062108776, 0.02497875, -0.011941655, 0.0056462525, -0.0025543375, 0.008635047, -0.01459235, -0.030645289, -0.0011850368, 0.025384469, -0.0075734165, -0.0046319556, -0.006112829, -0.0027318394, -0.016323417, 0.0010607855, 0.0010878333, -0.021746524, 0.0356762, -0.010913834, 0.020001933, 0.023396447, 0.021178517, -0.009250388, -0.005199962, 0.009940109, -0.02497875, -0.016174654, -0.027994592, 0.018379059, 2.6921128E-4, -0.0024005026, 0.020475272, 0.017865147, -0.0038002322, -0.01705371, -0.00420257, -0.02996909, -0.011049073, 0.013787675, -0.03256569, 0.010677164, -0.0033404175, 0.034215614, 0.0013904319, -0.004773957, -0.023058347, 0.010758309, 0.020340033, 0.005402821, 0.016837327, 0.009324769, -0.009588486, 0.00334887, -0.0010869881, -0.01387558, 0.0011833463, -0.016661515, 0.021989955, 0.002532361, -0.0019508309, 3.744446E-4, -0.60241115, -0.028562598, -0.0041180453, -0.016904946, 0.017919244, 0.030293666, 0.013807961, 0.022679677, -0.013003285, -0.007302937, -0.033891037, 0.01902821, -1.6334406E-4, -0.012347373, -0.045981456, -0.04230294, 0.017243046, -0.0081955185, 0.004138331, -0.010812405, -0.042897996, -0.019758502, -0.009412674, 0.009297721, 0.020340033, -0.015417312, 5.215176E-4, -0.020340033, 0.0025644805, 0.005801778, -0.037028596, 0.04982226, -0.012949189, -0.0023328827, 0.037326124, -0.04425039, -0.0021266423, 0.019907266, 0.022233387, 0.024708271, -0.009946871, -0.0062210206, -0.0020928325, -0.021692429, -0.007634274, 0.006481357, 0.02647991, -0.0030006282, 0.006058733, -0.041707885, 0.0053419634, -0.0047130994, 0.012969475, -0.005247296, 0.0052236286, -0.009385627, 0.026750388, 0.0056496332, 0.02224691, -0.018974112, -0.0114886025, 0.020948611, -0.019772027, -0.007377319, -0.013699769, 0.024370171, -0.036136016, -0.027291346, 0.021070326, -0.017811053, 0.011495364, 0.023545211, -0.012915379, 0.0072217933, 0.014876354, 0.028589647, 0.029860899, -0.0024782652, -0.009013718, 0.024302552, 0.007404367, 0.003037819, 0.0060452092, -0.024870558, 0.040030915, 0.00639007, 0.017486477, -0.0050410554, 0.009804869, 0.014916926, 0.025803711, 0.004114664, -0.011164027, 0.008141423, -0.007938563, 0.028183928, -0.0030733193, 0.023626354, 0.013841771, -0.033728752, 0.011136979, 0.0043039997, 0.006349498, 0.004124807, 0.03362056, -0.0050106263, -0.008175232, -0.016350465, 0.017594669, -0.028995365, -0.0015983628, -0.018974112, -0.036054872, 0.00998068, -0.02272025, -0.018608965, 0.014403015, 0.00857419, 0.016715612, -0.031483773, 0.026263526, -0.017756956, 0.036081918, 0.001517219, -0.0018392582, 0.0011098097, 0.007147412, 0.0043039997, -0.013449576, -0.020542892, 0.018189723, -0.0024647412, 0.03164606, -0.021408426, 0.03462133, 0.009581724, 0.025641425, 0.012333849, -0.0013540862, -0.024802938, -0.028643742, -0.0034333947, -0.010075348, -0.04622489, -0.016350465, -0.023910357, -0.012049846, 0.0142542515, 0.002194262, -0.007830371, 0.0058085397, -0.020380605, -0.016215226, 0.0025475756, 0.0019559024, -0.021137945, -0.02405912, -0.027480682, -0.03280912, -0.025506184, 0.016796755, 0.0014081821, -0.02388331, -0.02056994, 0.015539028, -0.006964838, 0.015187404, 0.029157653, 6.051971E-4, -0.038759664, -0.008594475, -0.007086554, -0.024735318, 0.009798108, -0.012726044, 0.015092737, -0.020935087, -3.6747128E-4, 0.011590032, -0.017337713, 0.0051932, 0.028589647, -0.06296755, 0.01339548, 0.014484159, -0.002361621, 0.005805159, 0.019285163, -0.018460203, 0.023666926, -0.008594475, -0.002385288, -0.037407268, 0.014551778, 0.0022432865, -0.001896735, 0.011238409, -5.1855925E-4, -0.0033235126, 0.011968703, 0.027210202, -0.0010497972, 0.022639105, 1.3798663E-4, 0.022436246, -0.025776664, 0.00782361, 0.0076275123, 0.019082304, 0.011921369, 0.012279754, -0.029401084, -0.0036683735, 0.0075531304, -0.0010438805, -0.0042668087, 0.028995365, 0.04103169, -0.0103864, -0.0068803136, -0.026060667, 0.0278864, 0.041897222, 0.008959622, -0.018054483, 0.02443779, 0.027805258, 0.04527821, -0.006636882, -0.025857808, -0.0151197845, 0.030564144, 0.021164995, -5.7138724E-4, 0.015227976, -0.0027994593, 0.029536324, -0.013368432, 0.02945518, 0.0072691273, 0.038597375, 0.041302167, 0.026385242, -0.026195906, 0.009689916, 0.011738796, 0.0053791543, 0.033836942, 0.0330796, 0.0075260825, 0.015795983, 0.011380411, -0.009385627, 0.008635047, 0.01633694, 0.005521156, 0.030428905, 0.025330372, -0.008351044, 0.010947644, 0.0154578835, 0.0081008505, 0.026236478, 0.025749616, 0.017418858, -0.023626354, -0.045710977, -0.018392583, -0.026547529, -0.029482229, 0.009716963, -0.022098146, 0.008256376, 0.0011461554, 0.010426971, 0.0047469093, 0.014362443, -0.004178903, 0.008662095, 0.028210975, -5.544823E-4, -0.04324962, 0.023572259, 0.0106027825, -0.007025696, 9.923204E-4, 0.0112992665, 0.018541345, -0.0014859448, 0.025384469, 1.5346523E-5, 0.021489568, -0.008777048, -0.009771059, -0.0070054103, 0.010339065, 0.012942428, -0.025884856, 6.529536E-4, -0.010548687, -0.028102783, -0.0056022997, -0.014538255, -0.019690882, 0.053176202, -0.018068008, -0.009453246, -0.0230313, 0.016215226, 0.012225658, 0.019947838, -0.020624036, -0.021367854, -0.002368383, -0.0014791829, 0.0035568008, -0.020218316, -0.023423495, 0.026114762, -0.025614375, -0.02296368, -0.008479522, -0.029428132, -0.02146252, 0.013713293, 0.029346988, -0.012563757, 7.197281E-4, -0.01927164, -0.0048314338, -0.013510434, -0.019068781, 0.0071879835, 0.015985318, -0.0061804485, 0.006051971, -0.009656106, -0.010176778, -0.011732033, -0.0049328636, 0.011414221, -0.036000777, 0.0073164613, 0.010758309, -0.011204599, -0.017270094, 0.002542504, 0.020759275, 0.017337713, -0.019515071, 0.0062818783, 0.007147412, 0.010873262, -0.030050235, -0.018027436, 0.004513621, 0.027047915, 0.001923783, -0.009189529, 0.015998842, 0.0012374421, -0.0071271257, 0.01770286, 0.01752705, 0.0011588341, 0.01171851, 0.002559409, 0.0019136401, 0.0056327283, -8.228483E-4, 0.007370557, -0.0056056804, 0.017554097, -0.010886786, 0.010907072, -5.046127E-4, -0.014294824, 4.770365E-5, -0.004131569, -3.6113194E-4, -0.023071872, -0.022422722, -0.013510434, -0.040409587, 0.0013693008, -0.021746524, 0.012584043, -0.0026676008, 0.018338487, -0.013253478, -0.007661322, 0.009345055, 0.0058186827, -0.008932574, -0.034675427, -0.026290573, 0.004165379, 0.010061825, 0.009581724, 5.599764E-4, 0.025830759, -0.0362983, 0.01472759, 0.0026980296, -0.02005603, 0.019623263, -0.009257149, -0.009723726, -0.01602589, 0.021638332, 0.039733388, -0.004824672, 0.010406685, -0.0046353363, 0.012469089, -0.013618626, 0.011265457, -0.033268936, 0.0100956345, -9.255459E-4, -0.0018849017, 0.021097373, 0.028616695, -0.020272413, -1.6271012E-4, -0.012516423, -0.0074449386, 0.017256571, 0.006508405, 0.008831144, 0.008547141, 9.889394E-4, -0.006072257, -0.032998458, -0.028265072, 0.006342736, -0.021570712, -0.010433733, -0.02422141, 0.0096628675, 0.018811826, 0.014037868, -0.014781686, -0.02453246, 0.016688563, -0.040139105, 0.034513142, 0.00679917, -0.020799847, 0.03997682, 0.006058733, -0.0036007538, 0.009236863, 0.013591577, 0.04370943, 0.035216387, 0.0055549657, -0.004790862, -0.007701894, -0.026290573, -0.022774344, 0.0011909535, 0.021841193, -0.011671175, -0.016472181, 0.0020150696, 0.025884856, 0.019542119, -0.021246137, -0.015674267, -0.021354329, 0.016566848, -0.011211361, 0.025289802, -0.0054805838, -0.009067814, -0.0035027051, -0.02515456, -0.017013138, -0.005849112, -0.005061341, -5.5955374E-4, 3.610791E-5, 0.016526276, 0.011819939, -0.0015755411, -1.6461192E-4, 0.0049599116, -0.00628864, 0.0016440061, -0.017689336, -8.5919397E-4, -0.054826126, 0.013287288, 0.031970635, 0.010271446, -0.0052980105, -0.026047142, 4.8136836E-4, 0.014132536, -0.03332303, -0.030942814, -0.011982227, -0.04400696, 0.005784873, -0.039733388, -0.0040909974, -0.019569166, -0.03870557, -0.001602589, 0.040436633, -0.015160357, 0.024573032, -0.0074719866, 0.0032795598, -0.029428132, 0.048334625, 0.008506569, 0.014173108, 0.02289606, -0.014091964, -0.016512752, -0.013902629, 0.015944745, -0.032457497, 0.0052236286, 0.017107807, -0.031186247, 0.003499324, -0.012293277, 2.8569362E-4, -0.0139432, 0.024424268, -0.007958849, -0.0021503093, -0.022192815, -0.008499808, -0.028508503, -7.121209E-4, 0.007945325, -0.016485704, 0.02460008, -0.020110125, -0.011326315, 0.018906493, 0.0011816558, 0.03683926, 0.0090610515, 0.019812599, 0.008641809, -0.01407844, 0.0049159587, -0.015133309, 0.013618626, 0.004466287, 0.028968317, 0.026872104, -0.007357033, 0.007641036, -3.0809265E-4, -0.009716963, -0.028833078, -0.010913834, 0.0031832017, 0.013030333, 0.020421175, -0.0065117856, -0.0029499133, -0.019609738, 0.0031493916, -3.566944E-4, -8.266519E-4, 0.016553324, -0.018744206, 0.009460009, 0.020826895, -0.01414606, 0.018433154, 0.021029754, -0.0059437794, 0.0074517005, -0.008675619, -0.0053013912, 0.0050782464, 0.016553324, 0.06864761, -0.02081337, 0.018892968, 0.030158427, 0.008222566, -0.010704213, -0.010176778, 0.011542698, 0.02750773, -0.018717157, 0.008026469, -0.02108385, 0.0083645675, 0.0036616116, 0.015877126, -0.0094938185, -0.014308347, -0.010447257, -0.023234159, -0.009764298, -0.0119010825, -0.02484351, -0.012489375, -0.021327281, -0.028724886, -0.025722567, -0.005392678, 0.0125231845, -0.041085783, 0.01537674, -0.018406106, 0.014808734, 0.040923495, 0.022774344, -6.9732906E-4, 0.008594475, 0.011380411, -0.011542698, -0.003830661, 0.028373264, 0.0036379446, -0.013314337, 0.022395674, 0.011535936, -0.011306029, 0.028454406, 0.013091191, -0.009858965, -0.0466847, 0.01714838, -0.0062987832, 0.008398377, -0.0052540577, 0.011840225, -0.0033268936, 0.001923783, 0.0017682575, -0.019420404, 0.016188178, 0.0014808733, -0.007384081, -0.013693008, -0.029157653, 0.027007343, -0.014903401, -0.020705178, -0.0032778692, 7.7889545E-4, -0.009128671, 0.013097953, 0.016228748, -0.020083077, -0.0033285841, -0.04232999, -0.00963582, -0.022422722, 0.031700157, -0.015484932, -0.0034114183, 0.01014973, -0.0032001066, -0.013956725, 0.024302552, -0.01745943, -0.017824577, 0.017161902, -0.018027436, -0.017215999, -0.015755411, 0.0062244018, 0.04541345, 0.017486477, -0.021922335, -0.0024664318, -0.015092737, -0.047306806, -0.018514298, -0.007052744, 0.029860899, 0.011725271, 0.02699382, -0.010291732, 0.015011593, 0.020326508, 0.0125231845, -0.0014225513, 0.0035635629, -2.8801803E-4, 0.030699383, 0.028616695, 0.011191075, -0.05371716, -0.017811053, 0.021922335, 0.02446484, 0.0018172818, -0.0029904852, 6.42388E-4, -0.009142196, 5.0292216E-4, -0.023234159, 0.03556801, 0.013287288, -0.0024038835, -0.045494594, -0.01018354, -0.018527823, 0.02166538, 6.006539E-5, -0.014484159, -0.03727203, -0.005693586, -0.002224691, 0.0030699384, 0.011461554, 0.0034621332, -0.016959043, 0.021164995, 0.0062007345, -0.02217929, 0.05945132, 0.008783811, -0.018649537, 3.2542023E-4, 0.017986864, -0.017202474, -0.012888332, 0.0056530144, -0.020691656, 0.003796851, 0.004077473, 0.015390264, 0.0022399055, 0.0037021835, 0.0035534198, -0.008655333, -0.02750773, 0.043411903, 0.0016566848, -0.024816463, -0.011779367, 0.019934313, -0.0044189533, 0.020191269, 0.004780719, -0.022733772, -0.034350853, -0.001137703, -0.0043344283, -0.03180835, -0.020380605, 0.018974112, 0.01151565, -7.0282316E-4, -0.018000389, 0.18825349, 0.016796755, -0.016079986, 0.026020095, 0.0013312646, -0.0233694, 0.032782074, 0.011454792, 0.013537481, 0.0021739763, -0.0078371335, 0.03981453, -0.009358578, -0.0032170115, 0.03283617, -0.018446678, -0.042113606, 8.439795E-4, -0.009006956, -0.009257149, -8.908907E-4, 0.009094861, -0.024586555, -0.040463682, 0.021719476, -0.0030412, -0.017500002, -0.028400311, 0.0069039804, 0.0040369015, -0.0015780769, -0.002060713, 0.005751063, 0.010920596, -0.04698223, -0.009081338, 0.0051864376, 0.011596793, 0.0013785984, 0.009162481, 0.003369156, -0.014646446, 0.0078371335, -0.008432188, -0.002375145, -0.005440012, -0.010244398, 5.5363704E-4, -0.022733772, -0.0072353175, -0.013023571, 0.0069039804, -0.014403015, 0.0402473, -0.011542698, -0.027859353, 0.022598533, -0.011576508, -0.0012923832, 0.01230004, -0.0151197845, 0.024694746, 6.6309655E-4, 0.012455565, -9.948561E-4, 0.024938177, -0.028833078, -0.025059894, 0.01025116, -0.0042837136, -0.014971022, -0.004743528, 0.01288157, 0.006024923, -0.049362447, -0.020975659, 0.008810858, 0.0028045308, 0.0066301203, 0.02361283, 0.009913061, -0.008148185, 0.0043107616, 0.01025116, -0.013118239, -0.037326124, 0.022706725, -0.008087327, 0.012374422, -0.026439337, 0.0020167602, 8.6299755E-4, -1.10621746E-4, -0.00703922, -0.011360125, -0.008445712, -0.020624036, 0.031673107, -0.021922335, -0.0051796758, -0.03088872, 0.043493047, -0.02647991, -0.0011639056, -0.029996138, -0.0089663835, -0.019974886, 0.020759275, 0.004554193, -0.03738022, -0.01933926, -0.02959042, -0.0032609643, -0.017067235, 0.025452089, -0.0071744598, 0.009919823, -0.012293277, 5.8829214E-4, -0.0077830376, 0.019379832, -0.0047570523, 0.0116847, 0.008905526, 0.026520481, -0.029103557, -0.011015263, -0.002244977, -0.0011672867, -0.054014686, 0.0052912487, -0.005145866, 0.022787869, 0.0033066077, -0.019663835, -0.003823899, -0.0040740925, -0.012049846, 0.0027352204, -0.0035398959, -1.383036E-4, 0.0037157075, 0.019528596, -0.01151565, 0.02381569, -0.010345828, -0.0028315787, -0.01589065, -0.032322258, -0.0031257248, -0.020231841, -0.0049632923, 0.012726044, 0.007965611, 0.0031967256, 0.005446774, -0.016877899, -0.044926587, -0.008486284, 0.013348146, -0.020867467, -0.021097373, 0.009919823, -0.01042021, -0.015336168, -0.010230874, -0.17029367, 0.0064847376, 0.017080758, 6.436559E-4, 0.005730777, 0.011197837, 0.033701703, 0.015809506, -0.013070906, 0.005460298, 0.020340033, -0.0056800623, -0.011400697, -0.019609738, 0.003830661, -0.008094089, -0.03905719, 0.003098677, 0.021110898, 0.00837133, -0.0126922345, -0.031619012, 0.018852398, -0.0011774296, -0.025113989, 0.018974112, 0.015363216, 0.04059892, 0.016526276, -0.0053960592, -0.00386109, -0.033701703, 0.028265072, -0.018324962, 0.006031685, -0.013659197, -0.0048956727, 0.004124807, -0.022341577, 0.029996138, 0.012374422, -0.0049801976, 0.0021181898, -0.009182767, 0.0069242665, 0.03243045, -2.2039824E-4, -0.0068431227, 0.005450155, -0.0020370462, 0.033728752, -0.009419437, 0.027967544, -0.012617853, 0.009852204, 0.008141423, 0.0061466387, 0.016620943, 0.018122103, -0.010670403, -0.016418085, -7.9115154E-4, 0.02699382, -0.0020099983, -0.00960201, -0.021746524, -0.018744206, 0.019663835, -0.029860899, 0.015768934, -0.0014098726, 6.1322696E-4, -0.012543471, -0.0015349692, 0.029942043, 0.022328055, -0.037840035, -0.020529367, 0.017256571, -0.0033336557, 0.005237153, 0.051012367, 0.008060278, -0.004838196, -0.014605874, -0.035243433, -0.0015831483, 0.0091354335, 0.011732033, -0.0075801783, -0.0035770868, -0.011961941, -0.009858965, -8.122827E-4, 0.0040199966, 0.010021253, -9.482619E-5, -0.012442041, 0.028048689, -0.010413447, 0.0013760627, -0.021976432, -0.019934313, 0.014511207, 0.04608965, -0.005122199, 0.009994205, 0.0059809703, 0.01018354, 0.016255798, -0.025235705, 0.011725271, 0.022544438, 0.027318394, 0.0025120752, 0.008607999, -0.035973728, -0.03632535, 0.011590032, 4.2389156E-4, 0.019258115, 0.003806994, -0.010115921, 0.0036210397, -0.015511979, -0.022219863, -0.080981456, -0.0031020578, 0.030969864, 0.02719668, -0.024167312, 0.0031544631, 0.0022027146, 0.025019322, -0.016107034, 0.022679677, -0.020975659, -0.022233387, -0.012455565, 0.02217929, 0.018000389, 0.024586555, 0.010704213, -0.020664608, -0.017297141, 0.013584816, -0.019974886, -0.01465997, -0.0015349692, -4.902435E-4, -0.03180835, -0.0043276665, -0.021313757, 0.018135628, 0.014010821, 0.0087026665, -0.005967446, -0.018920017, -0.01629637, -0.005886303, -0.016526276, -0.018013911, -0.02050232, -0.0026574577, 0.020326508, -0.023071872, 0.0021672142, 0.01154946, -0.009453246, -0.042627513, -0.028968317, -0.0024782652, -0.008655333, 0.025993047, -0.012103942, -0.011495364, -0.008648571, -0.0049734353, -0.009196292, -0.0082699, 0.018406106, -0.0011022026, 0.008378092, -0.011306029, 0.005220248, -0.014673494, 0.014957497, 0.023193587, -0.0017014829, 0.010636593, 0.021394901, -0.01893354, 0.0011300957, 0.021327281, 0.0362983, 0.0056158234, -0.0074990345, 0.022219863, -0.019068781, 0.035784394, -0.037190884, 0.0119010825, -0.038948998, -0.008580951, 0.014957497, -0.010014491, -0.01714838, -0.030455953, 0.018027436, -0.047847763, 0.007674846, 0.054285165, 0.017892197, -0.012245944, 0.013740341, -0.042654563, 0.014538255, 0.018095056, 0.049389493, 5.7476823E-4, -0.004550812, -0.021192042, 0.0057443012, 0.002709863, -0.033782847, -0.0119957505, -0.052500006, 0.009730488, -0.085471414, 0.036920406, 0.014484159, -0.023572259, -0.011732033, -0.007945325, 0.034215614, -0.023382923, 0.0029397702, 0.0061466387, -0.0083645675, 0.014930449, -0.013442814, 0.02153014, -0.007431415, 0.013206145, 0.009284197, -0.0015611718, 0.017310666, 0.033133697, 0.009324769, 0.016661515, -0.0119957505, 0.019501546, -0.015931223, 0.016391037, -0.012076894, 0.0047469093, 0.006991886, 0.0059573036, 0.035649154, -0.019974886, 0.009514105, 0.05550232, -0.005734158, -0.020921562, 0.009514105, 0.01213099, 0.004804386, -0.02719668, -0.03802937, -0.020353556, -0.0015417312, 0.0046218126, 0.010339065, 0.006782265, 0.014605874, 0.013862057, 0.0020556415, 0.02699382, 0.0045575737, 0.0055549657, -0.006041828, -0.01301681, 0.0021959527, -0.015336168, 0.014132536, -0.008905526, 0.006782265, -0.017743433, 0.06258888, -0.019460976, 0.0015197548, -0.021922335, -0.001110655, -0.015430836, -0.027142582, 0.0041822838, 0.005558347, -0.011468316, -0.047793668, 0.0029397702, 0.014632923, 0.019460976, 7.442403E-4, 0.015011593, 0.0083645675, -0.0021198804, -0.009574962, 0.0031967256, 0.007032458, -0.0031189627, 0.0028451027, 0.006041828, 0.020691656, -0.009933347, -0.014051392, 0.017337713, -0.017229522, 0.02712906, -0.039517004, 0.028400311, 5.1517825E-4, -0.021705952, 0.031537868, 0.015877126, -0.006112829, -0.0010920595, 0.048334625, 0.019839646, -0.004161998, 0.004777338, -0.012834236, 0.0018071389, 0.003071629, 0.018757729, -0.01589065, -0.024234932, 0.0018595442, 0.0037326124, -0.0060824, -0.012394708, 0.004232999, 0.021949382, -0.008959622, 4.6752746E-5, 0.0049328636, -0.0046860515, -0.021164995, 0.015011593, 0.023423495, 0.011529174, 0.0050951513, 0.0069513144, 0.019433927, 0.0026304098, 0.003098677, 0.001455516, 0.013456338, -0.034161516, 0.002261882, -0.016931996, 0.007641036, -0.01387558, -0.036406495, 0.0014056463, 0.0154578835, 0.0072353175, 0.0044020484, 0.10938177, 0.006197354, 0.007397605, 0.0152415, -0.014132536, 0.0143489195, 0.0069513144, -0.016134081, -0.019555643, -0.043547142, 0.010623069, -0.0043445714, -0.012698996, 0.002108047, -0.022233387, 0.027237251, 0.03051005, 0.016512752, -0.0046590036, -0.025736092, 0.021070326, -0.029265845, 0.014808734, -0.010352589, 0.007032458, 0.0018646157, 0.033891037, 0.020948611, -0.008526855, -0.026263526, 0.010778595, 0.0016735898, -0.01356453, -0.014957497, 3.230958E-4, -0.00307501, -0.015160357, 0.012631376, 0.018000389, -0.022869013, -0.0024884082, 0.0059843515, -0.016377512, -0.011664414, 0.007708656, -0.008425426, -0.011319553, -0.024451315, -0.058585785 ], - "id" : "37c303e8-e25e-4d07-9d08-8d2219db8017", - "metadata" : { - "name" : "Velo 99 XR1 AXS" - }, - "text" : "Cassette\tSRAM Eagle XG-1299, 10-52, 12-speed\nChain\tSRAM XX1 Eagle, 12-speed\nMax chainring size\t1x: 32T\n\nComponents\nSaddle\tBontrager Montrose Elite, carbon rails, 138mm width\nSeatpost\tFOX Transfer SL, 125mm travel, internal routing, 31.6mm\nHandlebar\tBontrager Kovee Pro, ADV Carbon, 35mm, 5mm rise, 720mm width\nGrips\tBontrager XR Endurance Elite\nStem\tBontrager Kovee Pro, 35mm, Blendr compatible, 7 degree, 60mm length\nHeadset\tIntegrated, cartridge bearing, 1-1/8\" top, 1.5\" bottom\nBrake\tSRAM G2 Ultimate hydraulic disc, carbon levers, 180mm rotors\n\nAccessories\nBike computer\tBontrager Trip 300\nTool\tBontrager Flatline Pro pedal wrench, T25 Torx\n\n\n## Sizing & fit\n\n| Size | Rider Height | Inseam |\n|:----:|:------------------------:|:--------------------:|\n| S | 158 - 168 cm 5'2\" - 5'6\" | 74 - 78 cm 29\" - 31\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" | 78 - 82 cm 31\" - 32\" |\n| L | 173 - 183 cm 5'8\" - 6'0\" | 82 - 86 cm 32\" - 34\" |\n| XL | 180 - 193 cm 5'11\" - 6'4\" | 86 - 90 cm 34\" - 35\" |\n\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\nSizing table\n| Frame size letter | S | M | L | XL |\n|---------------------------|-------|-------|-------|-------|\n| Actual frame size | 15.5 | 17.5 | 19.5 | 21.5 |\n| Wheel size | 29\" | 29\" | 29\" | 29\" |\n| A — Seat tube | 39.9 | 43.0 | 47.0 | 51.0 |\n| B — Seat tube angle | 74.5° | 74.5° | 74.5° | 74.5° |\n| C — Head tube length | 9.0 | 10.0 | 11.0 | 12.0 |\n| D — Head angle | 68.0° | 68.0° | 68.0° | 68.0° |\n| E — Effective top tube | 57.8 | 59.7 | 61.6 | 63.6 |\n| F — Bottom bracket height | 33.0 | 33.0 | 33.0 | 33.0 |\n| G — Bottom bracket drop | 5.0 | 5.0 | 5.0 | 5.0 |\n| H — Chainstay length | 43.0 | 43.0 | 43.0 | 43.0 |\n| I — Offset | 4.2 | 4.2 | 4.2 | 4.2 |" - }, - "57ea716c-7af0-4840-92a2-facd55a201ca" : { - "embedding" : [ 0.02644993, 0.012022056, 0.009672514, -0.012254196, -0.003248206, 0.019246545, -0.014871051, -0.05174619, 0.0050965357, -0.03134598, -0.005441229, 0.010446315, -0.005448263, 0.009679548, -4.365821E-4, 0.010256382, 0.011213082, -0.020498695, -0.008265602, -0.0354823, 0.030839492, 0.011677362, -0.027828703, -0.0074214563, -0.008406294, -0.01085432, 0.035200916, -0.008666572, 0.013295311, -0.016798519, 0.0148147745, 0.020161036, -0.031064598, -0.010045345, 0.029545134, -0.020808216, 0.0021543326, -0.008912782, 0.026140409, 0.012781788, 0.044711635, 0.0046920488, 0.0017480871, 0.004899568, -0.014871051, 0.0156026445, 0.002006607, -0.0078013223, 0.014266078, -0.004660393, -0.016714104, 0.022988928, -0.0064155147, -0.008167119, 7.179643E-4, -8.67009E-4, 0.018852608, 0.0064893775, 0.014019869, 0.00861733, -0.019992206, 0.013640003, -0.02977024, -0.008511812, -0.016559344, -0.025718335, 0.014969534, -1.9630807E-4, -0.011142736, 0.024156664, 0.01440677, 0.019795239, 0.040575318, -0.017755218, 0.005472884, -0.011262324, -0.009454443, 0.0126622, -0.029995345, 0.017276868, 0.022524647, -0.0034029663, -0.023636106, 0.009693618, 0.043586105, 0.010432246, 0.013119446, 0.02815229, -0.02010476, 0.006707449, 0.011909503, 0.006359238, -0.011353773, 0.008997196, 0.0155745065, -0.01819136, 0.0029685826, 0.014371597, -8.1512914E-4, -0.022538716, 0.0070451074, 0.019246545, -0.027392559, -0.01156481, -0.04319217, -0.014772567, -0.012296403, -0.012591855, -0.0027434768, 0.010826181, -0.027505113, 0.027716149, 0.0075551127, -0.019345028, 0.006204478, -0.019668618, 0.0117055, -2.8577883E-4, -0.00782946, -0.03767708, 0.030529972, 0.017459767, 0.009813205, 0.002333714, 0.007143591, -0.0029527547, -0.020203244, 0.0044493563, 0.03210571, -0.006914968, -0.010397073, 0.023847144, 0.010509626, -0.022341749, -0.0047870153, 0.017670803, -0.01124122, 7.030159E-4, -0.009151957, -0.028461812, 0.02722373, 0.03086763, -0.0015845336, -0.008976093, 0.004713152, 0.016967349, -0.009644376, 0.013070204, 0.013443036, 0.002717097, 0.017319076, -0.0032622751, 0.012472267, 0.004913637, -0.017431628, 0.0048679123, 0.004115215, 0.01598251, -0.013154619, -0.008715814, -0.02293265, 0.018458674, 0.00395342, -0.010031276, 0.021975951, 0.021596085, 0.009201199, -0.005747232, -0.0097639635, 0.0030529972, 3.326026E-4, 0.0144349085, -0.01995, 0.013506346, 0.017079901, 0.009313752, 0.026182616, -0.011937641, -0.014420839, -0.004087077, 0.00510357, 0.01838833, 0.0053568142, 0.013907316, -0.024789775, -0.010164933, -2.0422194E-4, -0.020794146, 0.019359097, -0.0044036317, 0.024297355, 0.014420839, -9.311993E-4, 0.016517136, -0.5897772, -0.022594992, -0.008223396, -0.027744288, 0.0024990258, 0.022609062, 0.011986882, 0.025225917, -0.004899568, 0.003545416, 0.011023149, 0.03275289, 0.0034082422, -0.025394745, -0.015743336, -0.033794004, 0.009334856, -0.0087580215, 0.036664102, -0.006584344, -0.016700035, 0.0020769525, -0.02087856, 0.02467722, 0.010094588, 0.00855402, 0.031599224, -0.016531205, 0.011156805, 0.018332051, -0.024409909, 0.020554971, -0.019176198, -0.011248254, 0.043923765, -0.03024859, 0.024311423, 0.029320028, 0.02312962, 0.04051904, -0.018866679, -0.010995011, -0.017248731, -0.0013224964, -0.026646897, -0.013330483, 0.052646615, -0.0126410965, 9.048197E-4, -0.027139315, 0.027589528, 0.0041890778, 0.010164933, -0.0038901092, -0.014287182, -0.019570135, 0.03469443, -0.025929373, 0.01085432, 0.0019133991, 0.015068018, 0.0155463675, 0.0087298835, -0.02103332, -0.044852328, 0.03897144, -0.03624203, -0.016221685, 0.015884027, -0.008188223, 0.0044036317, 0.022271402, 0.005599506, 0.004090594, 0.014941396, 0.043107755, 0.03514464, 0.0147584975, 0.003942868, 0.040012553, 0.028616572, 0.0066757933, -0.006788346, -0.018346122, 0.038352396, -0.006707449, 0.022707546, 0.0076184236, 0.022707546, 0.010558868, 0.01122715, 0.013330483, -0.010544799, -0.0039041783, -0.024297355, 0.045499507, -0.001967917, 0.010284521, 0.006696897, -0.02832112, -0.010664387, -0.005078949, 0.0013523933, -0.0156026445, 0.0061130286, 0.014744429, -0.008167119, -0.0147866355, 0.018332051, -0.012458198, 0.024789775, -0.024269218, -0.012528543, -0.026210755, -0.011818053, -0.03137412, 0.034553736, 0.007150626, -1.0782655E-4, -0.045021158, -0.008293741, -0.005863302, 0.0136188995, -0.014399735, -0.006739104, 0.01758639, 0.01916213, -0.008603262, -0.01568706, 0.015926234, 0.026632827, 0.019105854, 0.027195591, -0.0050437762, 0.02373459, 0.016024718, 0.030642524, -0.0054975054, -0.007738011, -0.056614105, -0.028771332, 5.570489E-4, -0.0073862835, -0.011902468, -0.0025306814, -0.01788184, 0.014941396, -0.0051176394, -0.019063646, -0.0024673704, -0.0015537575, -0.021145875, -0.014575599, -0.025563575, 0.0038865919, -0.017023625, 0.022243265, -0.021272495, -0.008223396, -0.009749894, 0.01567299, 0.007154143, -0.014364563, -0.010298589, -0.0021244357, 0.0067180004, 0.024367701, 0.017811494, -0.021413187, -0.0449086, -0.0153494, -0.016348308, -0.0326122, 0.0053638485, -0.0071224878, 0.003928799, -0.0052337092, -0.03911213, 0.010319693, -0.008124912, 0.0026907176, 0.021652361, -0.02327031, 0.026590621, 0.008849471, 0.017178385, 0.021750845, 0.036832932, -0.026970487, 0.0068305535, -0.00215785, 0.0028806506, -0.0074636634, 0.01241599, -0.037761495, -9.2504406E-4, -0.007203385, 0.012472267, 0.0060215797, -2.5895957E-4, 0.02912306, -0.006457722, 0.014463047, 0.010987976, 0.0036192788, -0.020526834, 0.008561054, -0.010228244, 0.019513857, 0.016953278, 0.01337269, -0.027645804, 0.0070029, -0.013105378, -0.0038584538, 0.020920768, 0.02483198, 0.020245451, -0.023847144, -0.019330958, -0.012866202, 0.00799829, 0.032555923, -0.0126410965, 0.0019098818, -0.00558192, -0.0060954425, 0.04068787, -0.0026854416, -0.035397884, 0.013513382, 0.048538435, 0.029573271, 0.0062220646, 0.02328438, 0.024297355, 0.039674893, -0.023790866, 0.05225268, 0.0020118828, 0.037705217, 0.027758356, 0.021483533, -0.007667666, 0.018472742, -0.004874947, -0.005859785, 0.02042835, 0.01584182, 0.020554971, 0.01273958, -0.0044739773, 5.8430777E-4, -0.006556206, 0.002050573, -0.0024374735, 0.028264845, 8.9998345E-4, 0.0041081803, -0.0030213417, 0.0144349085, 0.019682687, 0.022890445, 0.004368459, 0.021553878, -0.025296262, -0.03210571, -0.011107563, -0.009447408, -0.024367701, 0.012233092, -0.016826658, 0.020400211, -0.030839492, 0.0042207334, -0.0017252248, 0.010798043, 0.01629203, 0.01076287, 0.041982226, -0.007660631, -0.023087412, 0.0012354439, 0.035876233, -0.0075762165, -6.955417E-4, -0.017600458, -0.015011742, 0.005508057, 0.03531347, 9.136129E-4, 0.006739104, -0.024423977, -0.013668141, -0.010572937, -0.005391987, 0.033203103, -0.02010476, 0.0013840488, -0.007203385, -0.024747567, 0.02310148, -0.0245506, -0.020231381, 0.012528543, -0.036664102, 0.0066019306, -0.023889352, 0.020780077, -0.0037810737, 7.1708503E-4, -0.030755077, -0.022834167, -0.012254196, -0.016868865, -0.0045372886, 8.164481E-4, -0.0017093971, 0.024620945, 0.008772091, -0.015715197, -0.013654073, -0.023636106, 0.026675034, 0.036917347, 0.010980941, 0.0023917488, 0.02042835, -0.004280527, -0.0326122, -0.023481347, -0.013640003, 0.017122108, -0.009932793, -0.003946386, -0.018289845, -0.01392842, -0.02847588, 0.0077872532, -0.02753325, -0.0021121253, -0.031768054, 0.009925758, -0.023593899, -0.02153981, -0.044120733, -0.011438187, 0.0058844057, 0.011768811, -1.6399307E-4, 0.036016926, 0.03629831, 0.029939068, -0.014350493, 0.0011624603, -0.0014069112, 0.017656734, 0.02518371, -0.027265938, -0.013858074, 0.012000952, -0.009545892, -0.0016390515, 0.036607828, -0.019767102, 0.032809168, -0.01354152, 0.006556206, 0.026309239, -0.00708028, 0.007956082, -0.0011527878, 0.017698942, -0.011149771, 0.021877468, 0.027322214, -0.0085399505, 0.009609203, 0.017248731, 0.019584203, -0.020934837, -0.0044071493, -0.029376304, -0.0418134, 0.008652504, -0.021694569, 0.026168548, -0.007822426, 0.0019503306, -0.031908743, -0.021905607, -0.0015511195, -0.015405676, -0.011726604, -0.03244337, -0.016221685, 0.010544799, 0.02248244, 0.018374259, 0.012873237, 0.017333144, -0.03022045, 0.005430677, 0.03309055, 5.293503E-4, -0.018697849, -0.016095063, -0.026323307, -0.006594896, -0.015124295, 0.017290937, -0.026646897, 0.024269218, -0.009166026, -0.0044493563, -0.0055186087, 0.014533392, -0.014083181, 0.009180095, 0.012268265, 0.0126622, 0.012036124, 0.031289704, 0.0097639635, 0.003988593, -0.0018377777, 0.021047391, -0.012007986, 3.422751E-4, 0.013443036, 0.019753031, 0.0031497222, 7.9006853E-4, 0.011635155, -0.0033273448, 0.009721756, 1.9125198E-4, 0.012655166, -0.018613433, 0.015729267, 5.3726416E-4, 0.009461477, 0.016207617, -0.029573271, -0.02328438, -0.04845402, 0.009370028, -0.014955466, -0.003949903, 0.020048484, 0.0013594278, -0.015377538, 0.008765057, 0.01774115, 0.04257313, 0.0052337092, -0.013077239, -0.0011070631, -0.0077591147, -0.01629203, -0.01868378, 0.0037951428, 0.004101146, -0.026407722, -0.020189175, 0.017769288, 0.0012310472, -0.010776939, -0.005937165, -0.01488512, -0.01900737, -0.009391132, -0.0408567, 0.041053668, -0.020934837, -0.020203244, -0.024747567, -0.020020345, -0.043923765, -0.051324118, -0.028138222, -0.02089263, 0.024916396, 0.009433339, 0.028602503, -0.0042594234, 0.009285613, 0.010587006, -0.0180366, 0.0112834275, -0.026506206, -0.0069571757, -0.01948572, 0.0051317085, 0.009883551, 0.013872144, 0.0012706167, -0.026773518, -0.002926375, 0.020076621, -0.009686583, -0.018177291, -0.0048010843, -0.029939068, -0.0016557585, -0.0025746473, -0.015729267, -0.016826658, -0.046962693, 0.016981417, 0.03542602, -0.008582158, 0.016095063, 0.012619993, 0.02422701, -0.030839492, 0.030811353, 0.015884027, -0.0021754364, 0.018149154, -0.017924048, -0.023776798, -0.027983462, 0.020611247, 0.01139598, 0.020766009, 0.011086459, -0.008750987, 0.006355721, 0.015954372, -0.013246068, -0.021005183, 0.026337376, 0.0035278297, -0.0209067, -0.014118353, -0.038718194, -0.035876233, -0.0072385576, 0.029854653, -0.0016539999, 0.022552785, -0.03939351, 0.015335332, 0.017389422, -0.0011791674, 0.02042835, -0.010755835, 0.02690014, 0.014019869, -0.01273958, -0.04009697, -0.034328632, -0.0126410965, -9.021818E-4, 0.026590621, 0.02847588, 0.0022721614, -0.009025334, 0.012380818, -0.01503988, -0.018402398, -0.039815586, 0.014674083, 0.014744429, 0.027265938, -0.028405536, -0.02895423, -0.017459767, 0.0107136285, -0.015307193, 0.007115453, 0.010179002, -0.00346276, -7.0257625E-4, 0.024325494, -0.0099538965, 0.010411142, 0.031768054, -0.028250776, 0.011431153, -0.017178385, 0.009475546, -0.0063346173, 0.025451021, 0.03340007, 0.009918723, -2.2906272E-4, 0.01980931, -0.006672276, -0.024480253, -0.0037247972, 0.015011742, 0.029263752, -0.0070978664, 0.0063240654, -0.022383956, -0.023931557, -6.845502E-4, -0.00521964, -0.010460384, -0.04068787, 0.022468371, -0.006749656, -4.5900475E-4, 0.009918723, -0.018500881, -0.011381911, -0.005395504, -0.0031057564, -0.04685014, -0.012992824, 0.009391132, -0.04828519, -0.05365959, -0.0144349085, 0.014076145, 0.027955323, -0.00949665, -0.01156481, 0.010861354, 0.040125106, -0.03179619, -0.0011765294, 0.011839157, 0.0061728223, -0.053265654, 0.0045865304, -0.012015021, -0.021370979, 0.025943441, -0.016559344, -0.023157757, -0.010643283, -0.013534485, 0.006327583, -3.3238274E-4, -0.014505254, 0.009735825, 0.0029158234, 0.016038787, 0.01241599, -0.01996407, 0.013224965, -0.026562482, 0.011712535, 0.01774115, -0.024072248, 0.014772567, 0.01202909, -5.935406E-4, 0.015729267, -0.0019995724, -0.023481347, -0.00744256, 0.017628597, 0.030473694, -0.015461953, 0.005202054, -0.03463815, -0.047778703, 0.0064788256, 0.012563717, 0.02170864, 0.021919675, 3.121584E-4, -0.016390515, 0.021905607, -0.03911213, -0.007477733, -0.0058844057, -0.018711917, -0.0012829271, -0.025085226, -0.004583013, 0.0399, 0.016925141, -0.0516055, -0.008110843, -0.0010006655, -0.02691421, 0.0058175777, 3.6623655E-4, 0.03306241, 0.0130491005, 0.0189933, -0.00558192, 0.024452114, 0.010882458, 0.016109133, 0.01678445, 0.0029386857, 0.016953278, -0.001205547, 0.021370979, -0.0070415903, -0.047075246, -0.014547461, 0.020048484, 0.016756311, 0.027772425, 0.012472267, -0.031768054, 0.0112834275, -0.011459291, 0.012317507, 0.030586248, 0.009559961, 0.02547916, -0.040012553, -0.017473835, 0.0020101243, 0.016320169, 0.017178385, -0.0011791674, -0.0054517807, 0.0024884741, 0.004706118, -0.010657351, -0.009004232, 0.0060954425, -0.0064999294, 0.022862306, -0.027786495, -0.006039166, 0.01710804, 0.021736776, -0.0120712975, -0.0032763444, 0.029573271, -0.022721615, -0.013203861, 0.01723466, -0.014828843, 0.015884027, -0.013281241, 0.010882458, 0.010326727, -0.021399118, 2.8599866E-4, -0.03399097, -0.030417418, 0.020301728, 0.0011774087, -0.035397884, -0.023509486, 0.0138651095, -0.009559961, 0.014547461, 0.01678445, -0.015588575, -0.021624224, 0.0076395273, -0.028053807, -0.030501833, -0.030501833, 0.02563392, -0.013027997, -0.026168548, 0.009623272, 0.18233567, 0.017206524, -0.002912306, 0.03275289, 0.0216805, 0.024620945, 0.0023724039, 0.01337269, 0.007646562, -2.0444178E-4, 0.016812587, 0.010889492, -0.019682687, -0.009102715, 0.0052864687, 0.007977186, -0.046596896, -0.012310472, -0.025239985, -0.0016768622, -0.0012908409, 0.0060919253, 0.005796474, 0.0016865347, 0.0022053332, 0.013801798, -0.004646324, -0.0017806219, 0.009630307, 0.017853701, -0.01693921, -0.03404725, 0.008835401, -0.014519323, 0.0030442039, 0.012704408, 0.014800705, -6.898261E-4, -0.008019393, 0.008673607, 5.2715203E-4, -0.015954372, 0.013203861, -0.016995486, -0.04957955, 0.0012679787, -0.0025113362, 0.001728742, 0.0010340797, -0.021103667, -0.0098976195, 4.9324324E-5, 0.013161654, 0.017459767, -0.020189175, -0.020639386, -0.005613575, -0.008265602, 0.005631162, 0.022566855, -0.0122612305, 0.042488717, -0.021188082, -0.0065280674, -0.008110843, 0.018233567, -0.001436808, -0.021286566, 0.021610156, -0.021596085, -0.016812587, 0.013478208, 0.0075902855, 0.0029281338, -0.01321793, -0.010805078, -0.003932317, 0.004656876, 0.0041925954, 0.024733497, 0.025408816, -0.015729267, 0.015264986, -0.018937023, 0.0030758595, -0.021399118, 0.0016109132, -0.006784829, 0.011768811, -0.02184933, -0.03148667, -0.030445557, -0.008926851, -0.04009697, -0.008455535, 0.01851495, -0.008891678, 0.009644376, -0.011276392, 0.0066511724, -0.002741718, 0.035032086, 0.015293124, -0.032949857, -0.014575599, -0.0060989596, -0.005089501, 0.026984556, -0.0030793766, -0.03908399, -0.0057577835, -0.030304866, -0.011923572, -0.0087580215, 0.024311423, 0.009524789, 0.013625934, -0.0046041165, 0.011367842, -0.004896051, 0.015250917, -0.015743336, 0.018725988, -0.0147584975, -0.0055608163, -0.012542613, -0.02058311, 0.009004232, -0.0063627553, -0.016362377, 0.0216805, 0.020695662, 0.007681735, -0.01788184, 0.0068059326, -0.024086319, -0.0057437145, -0.0038936266, -0.008174154, 0.012057228, 1.5190244E-4, 0.0025201296, 0.008195258, 0.013365655, 0.02785684, -0.013351587, -0.022046298, -0.010896526, -0.01425201, 0.0074214563, 0.014871051, -0.013921386, -0.0035331056, -0.021793053, 0.013745521, -0.009109749, -0.034610014, -0.049326304, 0.020273589, -0.016531205, -0.010228244, -0.011578878, 0.017375352, -0.0035436575, -0.013801798, -0.012627027, -0.17952186, 0.038577504, 0.009271544, -0.018543089, 0.0055537815, -0.00126622, 0.031880606, 0.0030019965, -0.027040832, -0.0075691817, -0.002513095, 0.004178526, -0.024100387, -0.022046298, -0.004322734, -0.020343935, -0.0049417755, 0.012099436, 0.008258568, 0.01947165, -0.0077309767, 0.006735587, 0.02580275, -0.017797425, -0.018078808, 0.008181188, -0.020203244, 0.015644852, -0.0075551127, -0.0138088325, -0.0072737304, -0.03370959, 0.004621703, -0.017797425, 0.031402256, -0.010235279, -0.010418177, -0.01964048, -0.002819098, 0.03399097, -0.0057929563, 0.022820098, 0.023382863, 0.00640848, 0.019077715, 0.026534343, -0.011803985, 0.0029967206, -0.0032622751, -0.004822188, 0.02325624, -0.018782264, 0.005434194, -0.012050194, 0.026632827, -0.01417463, 0.019148061, 0.012950617, 0.040293936, -0.0046041165, -0.032358956, -0.005458815, -0.0053110896, -0.013056135, -0.03970303, -0.030529972, -0.0030723421, 0.033653315, 0.002075194, -0.004065973, 0.0062888926, 0.01962641, 0.0040694904, 0.0017762253, 0.0037318317, 0.012957651, -0.02357983, 0.022848237, 0.01788184, 0.002229954, -0.00934189, 0.055769958, -0.013893248, 0.021596085, 0.0031356532, -0.0074636634, -0.009595134, 0.01051666, -0.017276868, -3.391975E-4, -0.008933886, -0.004660393, 0.0022704029, -0.015053949, 0.0011158563, 0.02183526, -0.009566995, -0.0038162465, -0.0048925336, 0.006943106, -0.007899806, -0.026872002, -0.016207617, -0.0035946579, 0.027181523, 0.013647038, 0.025282193, 0.02516964, 0.020611247, -0.009792102, -0.008933886, 0.0026414755, 0.03117715, 0.029460719, -0.015940303, -0.0010103381, 0.0109035615, -0.04448653, 0.015096156, -0.009918723, 0.018937023, -0.007548078, -0.012387852, 0.0018078808, -0.0054975054, -0.014033939, -0.06584344, 0.006774277, 0.03860564, 0.0035032087, -0.026182616, 0.025929373, -0.018092876, 0.03638272, 0.008124912, 0.024311423, -0.007949048, 0.008448501, -0.008335948, 0.01772708, 0.013133516, -0.014371597, 0.011255289, -0.014856981, -0.024325494, 0.025113363, -0.008483674, 6.190409E-4, -0.026660966, -0.0029386857, -0.024283286, -1.4769819E-5, -0.03714245, 0.013168688, 0.03956234, -2.3807574E-4, 0.015053949, -0.012289369, -0.0011070631, -0.005799991, -0.0226372, 0.0071963505, -0.01568706, 0.01187433, 0.005993441, -0.059596755, 0.0018061221, -0.011332669, 0.027899047, -0.01772708, -0.033174966, -0.014674083, -0.013534485, 0.015307193, 0.012774753, -0.013281241, 0.0058703367, -0.024114456, 0.0056768865, -0.041560154, 0.0058562676, -0.008406294, -0.025380677, -0.00792091, 0.010390039, 0.00271358, -0.010776939, 0.028700987, 0.0048151533, 0.017642666, -0.006587861, -7.891892E-4, -0.0068551744, 0.009208233, 0.013822902, -0.003473312, -0.018922955, 0.015447884, -0.007942013, 0.0144349085, -0.011543706, 0.021905607, -0.029207475, 0.0012477543, -0.0044493563, -0.017755218, -0.015504161, -0.03213385, -0.0037529354, -0.010059414, 0.008525881, 0.03778963, 0.011754743, -0.027955323, 0.01195171, -0.01930282, 0.03292172, 0.021047391, 0.059146542, 0.0025218881, -0.027983462, 0.005961786, 0.027800564, 0.013478208, -0.006531585, 0.006936072, -0.021877468, -0.015912164, -0.09122412, 0.017797425, 0.03641086, -0.016263893, -1.5399081E-4, 0.013836971, 0.0042101815, -0.004466943, 0.018725988, 0.0021209186, -0.019119922, 0.02405818, -0.013499312, 0.0072596613, -0.006922003, -2.488474E-4, 0.007871668, -0.001624103, 0.013562623, 0.021272495, 0.006774277, 0.006735587, -0.008842437, 0.0018975714, -0.05047997, 0.032218266, -1.4607694E-4, 0.030304866, 0.019345028, 0.016348308, 0.0059828893, -0.015321262, 0.009630307, 0.049326304, 0.005771853, -0.01661562, 0.013330483, -0.0050332244, -0.0066898623, -0.039027713, -0.02123029, -0.026506206, 0.0053708833, -1.2068659E-4, -0.048369605, -0.016080994, 0.033006135, 0.0045372886, 0.00870878, 0.016503068, 0.031233426, 0.0143786315, -0.010179002, -0.037086178, -0.009799136, -0.02516964, -0.0048327395, -0.013963593, 0.0056874384, 0.0045267367, 0.04206664, 0.018810403, 0.026534343, -0.022144781, 0.014448977, -0.026027856, -0.026084132, -0.00562061, -6.9510203E-4, -5.526523E-4, -0.0115014985, -0.01045335, 0.029460719, 0.026463998, -0.0067918636, -0.014167595, -0.0011853226, -0.025408816, -0.017839633, 0.026717242, 0.013625934, -0.023214033, -0.029545134, 0.013914351, 0.01392842, -0.008195258, -0.027195591, 0.019119922, -0.0013858074, 0.012233092, -0.040941115, 0.0041855606, -0.01250744, -0.018050669, -0.016348308, 0.013752556, -0.0021596085, -0.007667666, 0.007857598, 0.015743336, 0.011902468, 1.9905594E-4, -0.008335948, -0.004252389, 0.0099538965, 0.00282965, -0.027561389, -0.0111216325, -0.00271358, -0.006383859, 0.008455535, -0.03784591, -0.006623034, 0.008884644, -0.02879947, 0.0050719148, 0.013112412, -0.0020048483, -0.038127292, 0.02850402, 0.0075621475, 0.037592664, 0.013386759, -0.013562623, 0.012359714, 0.017825564, 0.023804937, -0.018754125, 0.027012693, -0.013407863, 0.0038584538, -0.0026995107, -0.0036544516, -0.015476022, -0.030445557, -0.009566995, 0.0037036936, 0.015644852, 0.005434194, 0.09493836, 0.019584203, 0.0018694332, 0.028067878, -0.013407863, 0.0070486246, 0.029094921, -0.0075551127, -0.022566855, -0.038211707, 4.4735378E-4, 0.013752556, 0.010833216, 0.013253103, -0.036016926, 0.018796332, 0.010411142, 5.658421E-4, -0.012141643, -2.6225703E-4, 0.038042877, -0.012655166, 0.002796236, 0.012190885, -0.012387852, -0.0037001763, 0.019148061, 0.04051904, -0.009932793, -0.042348024, 0.014856981, 0.0032745856, -0.02850402, -0.034553736, -0.012627027, -0.020020345, -0.0044388045, 0.008483674, 0.013991731, 0.016263893, -0.0098976195, 0.0120712975, -0.0034293458, -0.019738963, 0.014519323, -0.0065913787, -0.015082087, -0.02042835, -0.034553736 ], - "id" : "57ea716c-7af0-4840-92a2-facd55a201ca", - "metadata" : { - "name" : "Velocity Xplorer TrunkPak" - }, - "text" : "price: 21.99\nname: Velocity Xplorer TrunkPak\nshortDescription: A versatile trunk bag designed to fit a wide range of cargo that quickly and securely mounts to compatible Xplorer racks.\ndescription: ## Overview\nMake your bike rides more convenient and enjoyable with the Velocity Xplorer TrunkPak. This trunk bag offers simple and secure on-bike storage that can be easily installed and removed without the need for tools. It features multiple pockets for easy organization, a durable design with reflective materials, and a built-in rain cover to protect you and your gear in all weather conditions.\n\nProduct Details\n- Xplorer mounting system provides secure and integrated mounting with compatible racks.\n- Front and rear black reflective materials enhance visibility while adding a touch of style.\n- Stay organized with an internal mesh pocket and two side pockets, each equipped with a smaller internal pocket.\n- The zippered pocket with a soft lining ensures secure phone storage, easily accessible from the top of the bag.\n- Be prepared for any weather with the integrated rain cover securely stowed in the rear pocket.\n- Light loop included for convenient rear light mounting.\n- Adjustable carrying strap for convenient off-bike use.\n\n## Features\nFunctionality, Performance, and Style\n\nVelocity City Utility bags, Velocity City Shopping Trunk bags, and Velocity Panniers transform any bike into a stylish and practical utility ride. The use of high-end fabrics and thoughtful finishing materials delivers the perfect balance of great looks and excellent functionality.\n\nXplorer: Unmatched Mounting System\n\nXplorer racks and bags feature an innovative keyed installation system that ensures your bags stay securely attached to your rack while still allowing for easy removal when needed.\n\nHow Xplorer Works\n\nSimply slide the Xplorer bag onto the Xplorer rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press. The bag can then be easily taken off.\n\nBetter Together\n\nOur bags and racks are designed as a complete system, making installation and removal hassle-free while ensuring the safety and security of your precious cargo.\n\nIntegrated Light Mounting\n\nFor enhanced visibility during all hours of the day, our racks and trunk bags come with a dedicated spot to securely mount your bike light.\n\n## Specs\n- Cargo capacity: 15L\n- Bag type: Trunk bags\n- Dimensions: 36cm (l) x 19cm (w) x 20cm (h)\n- Attachment: Xplorer\n- Fiber content: 40% Poly 600 PU Coating / 35% Poly 840 PU Coating / 12% 3M Silver Reflective Mesh / 8% Nylon Mesh / 5% Poly Super Nylex Mesh\n- Material: Woven\n- Weight: 900g\ntags: [trunkbag]" - }, - "dee57850-27d0-4b69-a3cb-1b41aff26c96" : { - "embedding" : [ 0.027549593, -5.102825E-5, -0.017359465, -0.014150716, 0.0063201613, 0.011076225, 0.0036182336, -0.026676921, 0.008471634, -0.04554007, 0.005658944, 0.0031332292, -0.029402344, -0.0067732795, 0.011969036, 0.019400176, 0.0013173996, -0.016621051, 0.010351236, -0.020608492, 0.0075653973, 0.02950975, -0.010257256, -0.014942835, -7.42191E-4, -0.016916417, 0.018567782, -0.0029419125, 0.0030711351, -0.020715898, 0.019279344, 0.012935689, -0.022045044, -0.012103293, -0.007296883, -0.005242747, 0.032436557, -0.0046587274, 0.016553922, 0.0036283028, 0.028274583, 0.011774363, -0.016124299, -0.0027908732, -0.02721395, 0.01734604, 0.01586921, 0.013466004, 0.018769167, 0.020796452, -0.010203553, 0.028919017, -0.009438287, 0.0034839762, 0.0040445006, -0.026327852, 0.012143571, 0.012022739, 0.03372543, -0.0022723044, 0.007491556, 0.016352536, -0.038048513, 0.0054038553, -0.013841925, -0.019601563, -0.018554356, 0.0035645308, -0.019171938, 0.007860763, 0.026851455, 0.031120837, 0.03026159, -0.0022991558, 0.026757475, -0.016285408, 0.0056253797, -0.013606975, 0.010096147, -0.0017906564, 0.03007363, -0.014983112, -9.909865E-4, 0.02011174, 0.021548294, 0.0019870077, -0.011492423, 0.014352103, -0.027093118, 0.011056087, -0.016795585, 0.011868343, -0.013271332, 0.01237852, 0.024689913, -0.020232571, -0.01929277, -0.006249676, -0.0072297542, -0.020890431, -0.0101767015, 0.0060516465, -0.02083673, -0.017802514, -0.01816501, -0.019145088, -0.019252494, -0.005269598, 0.008552188, -0.00443049, -0.021910787, 0.0030493184, 0.0011218874, -9.708479E-4, 0.029241234, -0.014338677, 0.05391772, 0.0028563235, 0.02409918, -0.028919017, 0.031711567, 0.027093118, 0.012123432, -0.040465143, 0.015197923, 0.012459075, -0.008082288, 0.009008663, -0.018352969, -0.008424644, -4.155682E-4, 0.016513646, -0.008646169, 0.008229971, -0.015788656, 0.009290603, -9.154668E-4, 0.010109573, -0.040116075, -0.013392163, 0.0090959305, 0.0304764, -0.009035515, 0.00457146, -0.0034151694, -0.006202686, 0.0029519817, 0.03173842, 0.009841058, -0.024327418, 0.023333915, -0.016446516, 0.031389352, 0.02916068, 8.504359E-4, 0.002767378, -0.012553055, 0.024971854, -0.03246341, -0.0050480734, -0.02133348, 0.001313204, 0.013492856, 0.015721526, 0.010485494, 0.0058871815, 0.0070686457, -0.019051107, 0.0015095553, -0.0068102004, -0.014929409, 0.018889999, -0.03044955, 0.014056737, 0.0032590954, 0.033832833, 0.023414468, -0.021454312, -0.008941535, -9.01202E-4, 0.009585969, 0.0020256066, 0.003473907, 0.01690299, -0.009807494, -6.901663E-4, 0.016956694, -0.026408406, 0.006652448, -0.012855134, 0.018782593, 0.009478563, -0.013935905, -2.3474045E-4, -0.6049096, -0.026327852, -0.0080352975, -0.016043745, -0.006887398, 0.016795585, -0.0028076554, 0.016298832, -0.010203553, -2.901216E-4, -0.020541362, 0.036222614, -0.016030319, -0.015922913, -0.021293204, -0.021226075, 0.0027707345, -0.0026062694, -0.0030291798, -0.01615115, -0.040733658, 0.0052763107, -0.02548203, 0.017211782, 0.016352536, -0.0069679525, 0.0064443494, -0.012559768, -0.015359032, 0.010109573, -0.037618887, 0.041243836, -0.005658944, -0.001079932, 0.032785628, -0.042103082, -0.0137278065, 0.022045044, 0.016621051, 0.011150067, -0.02231356, -0.0042257477, -0.022595499, -0.027348207, -0.0090892175, 0.010780859, 0.043338247, -0.0202997, 0.005890538, -0.028838463, 0.014728023, 0.011512562, 0.017225208, -0.007887615, -0.0011101399, -0.030744916, 0.023964923, -0.0025978782, 0.0041519064, 0.018393246, -0.011525987, 0.009116069, 0.0036350158, -0.0033597883, 0.0018309336, 0.020809878, -0.05198442, -0.030530104, 0.030019926, -0.016298832, 0.005407212, 0.00972694, -0.00747813, 0.018057603, 0.018433524, 0.028113473, 0.042022526, 0.0023109033, 0.015036815, 0.01286856, 0.01643309, 0.007397576, 7.342195E-4, -0.028113473, 0.025441753, -0.008773713, -0.0028160464, 0.0018594633, 0.020823304, 0.01511737, 0.036249463, 0.003009041, 0.009982028, -0.009706801, -0.012183848, 0.030664362, 0.0017587703, 0.012700738, 0.013922479, -0.04578173, -0.004111629, 0.0047057173, 0.024528803, 0.010713731, 0.025320923, 0.0050682123, -0.008767, -0.010982245, 0.0075653973, -0.023293637, 0.009028802, -0.011123215, -0.027012564, 0.0068034874, -0.018594632, -0.022071896, 0.013700955, 0.0031617589, 0.02899957, -0.016876139, 0.009458425, 0.007995021, 0.028355137, 0.022729756, -0.03173842, 0.00967995, 0.015721526, 0.014311826, -2.8592604E-4, 8.206476E-4, 0.017117802, 0.021467738, 0.051420536, -0.011136641, 0.024783893, 0.028543096, 0.026099615, 0.008753574, -7.9463527E-4, -0.023468172, -0.04170031, -0.006232894, -0.013801648, -0.02711997, -0.0066088145, -0.0072230413, -0.021789955, -0.008102426, 0.010727156, -0.02557601, -0.016204853, -0.022085322, -0.01090169, -0.0028580017, -0.0018695325, -0.012566481, -0.038129065, -0.019252494, -0.009431574, -0.031684715, -6.4863043E-4, 0.014056737, -0.03063751, -0.00533337, -0.004034431, -0.003497402, 0.02027285, 0.027361633, -6.192617E-4, -0.04760763, -0.01772196, 0.0028126899, -0.010451929, 0.022796886, -0.014164142, 0.0057025775, -0.014056737, 0.0083642285, 0.010022306, -0.014942835, 0.0072633186, 0.0026448683, -0.06782678, 0.010807711, 0.024407974, 0.030691214, 0.032973588, 0.0015758447, -0.012143571, -0.0022957993, 0.0033916745, 0.011324601, 5.7101296E-4, 0.007995021, -0.019319622, 0.0031634371, 0.019816374, -0.006108706, -1.5093455E-4, 0.017023822, 0.024609359, 0.012042877, 0.019614987, 3.0417665E-4, 0.0230654, -0.022743182, 0.015063666, 8.911327E-4, 0.010928542, 0.041404944, 0.01828584, -0.020339977, -0.011660244, 7.7911175E-4, -0.010156563, -0.004702361, 0.02409918, 0.031013431, -0.002564314, -0.013909054, -0.008082288, 0.02475704, 0.029563451, -0.0023629281, -0.012076442, 0.03321525, 0.01486228, 0.025132962, -0.016164577, -0.030906025, -0.015560418, 0.012814857, 0.0148085775, -0.0064611314, 0.01966869, 0.016258556, 0.0051420536, -0.011834779, 0.039552193, 0.0018275771, 0.038558688, 0.04132439, 0.02020572, -0.016929843, 0.022018192, 0.0155067155, 0.024797319, 0.015077092, 0.045647472, 0.013606975, -0.009565831, 0.0037524907, 0.0010883231, 0.005645518, 0.012982679, -0.0038364017, 0.005554895, 0.010250543, -0.006239607, 0.0053132316, 0.012566481, 0.029375492, 0.0098142065, 0.004786272, 0.006729646, -0.0012737659, -0.033564318, -0.0013039738, 0.00331112, -0.009632959, 0.012734302, -0.011989174, -0.00576635, -0.0042794505, 0.010646602, -0.0108815525, 0.013586836, 0.0031416202, 0.010029019, 0.024340844, -0.014875706, -0.033510614, 0.0012788005, 0.026381554, -0.012754441, 0.0014759909, 0.011613254, 0.009364445, 0.0042794505, 0.03305414, 0.0063470127, 0.017708534, -0.006457775, 0.011687096, -0.017923346, -0.0016454908, 0.014123865, -0.010324384, -0.009169772, 0.005944241, -0.024676487, 0.0029335215, -0.018178435, -0.0144326575, 0.0405994, -0.005377004, -0.0060583595, -0.032570817, 0.016043745, 0.013506282, 0.010780859, -0.040653102, -0.010767434, -0.0126671735, -0.0018057603, 0.011411868, 0.0077936347, -0.035309665, 0.014701172, -0.031980082, -0.028381988, -0.009243613, -0.02711997, -0.014352103, 0.022676054, 0.03541707, -0.0052595288, 0.0039135995, -0.023844091, -9.674915E-4, -0.009632959, -3.0061044E-4, 0.011465571, 0.024112606, 0.012425511, 0.007988308, -0.020044612, -0.0050010835, -0.021615421, -0.005269598, 0.011989174, -0.026529238, 0.013231055, 0.0065718936, 0.0014113795, -0.037779998, -0.006994804, 0.015251626, 0.01790992, -4.4808365E-4, 0.009048941, -9.809172E-4, 0.024072329, -0.0140835885, 1.04993385E-4, -0.0017075847, 0.018433524, -0.008075575, -0.017950198, 0.004360005, 0.016070595, -0.012069729, 0.025602862, 0.0059106764, 0.015359032, 0.0031231598, 0.0018510722, 0.00604829, 0.028811611, 0.017534, 0.0035947384, 0.00228573, 0.00729017, -0.017708534, 0.035282813, 0.00996189, -0.008585753, -5.0388434E-4, -0.0017419881, 0.0057227165, -0.0022957993, -0.018809443, -0.010787572, -0.039256826, -7.9841126E-4, -0.027818108, 0.024246864, 0.00724318, -0.0043398663, 0.005883825, -0.0043398663, 0.006605458, 0.0029737987, -0.0066255964, -0.020850156, -0.017950198, -0.013392163, 0.024340844, 0.007088784, -0.004521114, 0.029993076, -0.022461243, 0.014284974, 0.012855134, -0.017225208, 0.017775664, 9.2217966E-4, -0.0018661761, 0.001640456, 0.019843224, 0.033752277, 2.8298917E-4, 0.013882202, -3.9165365E-4, 0.012036164, -0.0040982035, 0.0035208971, -0.017802514, -0.0016748596, -0.008538763, 0.0152382, 0.022300133, -1.8617708E-5, -0.004521114, 0.013177351, -0.035336513, 0.010599612, 0.0152382, 0.009223475, 4.694809E-4, 9.5406576E-4, -0.016030319, -0.0030442837, -0.016016893, -0.015520141, -3.520058E-4, -0.02020572, 0.0027623435, -0.037699442, 0.0054911226, 0.012224125, -0.0011126571, 0.01329147, -0.014526637, -0.006659161, -0.041915122, 0.023709835, 0.013251193, -0.020957561, 0.047446523, 0.018057603, -0.015023389, -0.0025005417, 0.012593333, 0.042344745, 0.019480731, -0.0049171727, 0.018178435, -0.027791256, -0.036786493, -0.035148554, 0.008464921, 0.010747295, -0.00747813, -0.017789088, 0.00567237, 0.009565831, 0.012573194, -0.023401042, -0.017493723, -0.018581206, 1.5964029E-4, -0.003077848, 0.031604163, -0.01872889, 0.017574277, -0.009351019, -0.029805114, -0.021628847, -0.010532483, -0.00881399, -0.028945869, 0.002456908, 0.018849721, 0.02058164, 0.0115998285, 0.008377654, 0.007867476, -0.0016849288, 0.0020256066, -0.008948247, 7.761749E-4, -0.042774368, 0.026985712, 0.03399394, 0.005773063, -0.03098658, -0.014472934, -0.021669123, 0.036383722, -0.018648336, -0.0122979665, -0.01401646, -0.044063237, -6.4946956E-4, -0.03780685, 7.723989E-4, -0.01966869, -0.03890776, -0.019131662, 0.03802166, -0.003893461, 0.0010858057, 0.01844695, -0.0082971, -0.021226075, 0.04041144, 0.0029637294, 0.019695543, 0.009626247, -0.025361199, -0.021091819, -0.027361633, 0.020662194, -0.027898662, 0.0021179086, 0.013674104, -0.00457146, -0.009384584, -0.002874784, -0.0016933199, -0.010015593, 0.015909487, -0.017547427, 0.00825011, -0.027791256, -0.03982071, -0.03410135, -0.018594632, 0.005705934, 0.009357732, 0.012600046, -0.015573844, -0.008082288, 0.03431616, 0.0058938945, 0.018151583, 0.014889132, 0.016956694, 0.027415335, -0.0043331534, -0.023213083, -0.01615115, -0.0031852538, 0.0052494593, 0.024327418, 0.018044177, -0.009458425, 0.0029737987, -0.0029049919, -0.009062366, -0.0075922487, -0.025522308, 0.012996105, 0.03227545, 0.017117802, -0.019561285, -0.001981973, -0.036813345, 0.011123215, 0.0073841503, 0.01690299, 0.010364662, -0.0075989617, 0.002789195, 0.016943268, 4.375948E-4, 0.007142487, 0.008726723, -0.00729017, 0.012600046, -0.008149416, -0.016285408, -0.014620617, 0.003722283, 0.0737878, -0.009968603, 0.01019684, 0.03302729, 0.007901041, -0.00895496, -0.010566047, -0.006531616, 0.023776963, -0.021481164, 0.0126470355, -0.010854701, 0.0037558472, -0.030046778, -0.012687312, -0.017896494, -0.015453013, 4.8206752E-4, -0.017426595, 0.015036815, -0.011915334, -0.026193595, -0.021212649, -0.014660895, -0.02702599, -0.032731924, -0.0014667608, 0.0054038553, -0.038531836, -0.012271115, -0.0433114, 0.018742315, 0.01577523, 0.00290667, -0.013405588, -3.1592415E-4, 0.037699442, -0.04175401, -0.006954527, 0.011935472, 0.017023822, -0.008867693, 0.008565614, -0.0017990475, -0.016285408, 0.0140835885, 0.0035276099, -0.012781292, -0.038639244, 0.007907754, -0.013801648, -0.0151576465, -0.008552188, 0.01699697, 0.013788222, 0.002557601, -0.015587269, -0.022676054, 0.006390646, -0.0151576465, 0.011687096, -0.01680901, -0.023964923, 0.01762798, 0.001819186, -0.01000888, -0.008525337, -0.010391513, -0.01903768, 0.011492423, 0.011176918, -0.028650502, 0.0035645308, -0.035309665, -0.018594632, -0.01828584, 0.007981595, -0.024971854, 0.01005587, 0.008753574, -0.009693375, -0.0023192945, 0.025186665, -0.013345174, -0.029858818, 0.008726723, -0.02130663, -0.016674753, -0.033268955, 0.008417931, 0.03657168, 0.0120026, -0.004648658, 0.008498485, -0.00533337, -0.045808583, -0.01891685, -0.009163059, 0.015023389, 0.01401646, 0.024689913, -0.0033950307, 0.0035578178, 0.01762798, 0.035175405, -0.0043969257, -8.944891E-4, 0.0035578178, 0.010022306, 0.014687746, -0.008767, -0.035685584, -0.009069079, 0.020245997, 0.02325336, 0.005393786, 6.1632483E-4, -0.01094868, -0.014365529, -0.0068672597, -0.0027103187, 0.025213515, 0.017211782, -0.008337377, -0.0387198, -0.030181035, -0.0022890866, -0.0025391406, 2.525715E-4, 0.0014264835, -0.009176484, -0.0066960817, 0.0033547536, -0.019427028, -0.020138592, -0.0054441327, -0.0022102103, 0.031818975, -0.006367151, -0.0133720245, 0.039149422, 0.0053736474, -0.013116936, 0.0060348646, 0.027549593, -0.008068862, -0.0045412523, 0.009176484, -0.031147689, -0.014822003, -0.006860547, 0.026663495, -0.0038061938, -0.017668257, -0.010445216, -0.033644874, -0.028945869, 0.03289303, 0.0062765274, -0.0405994, -0.023656132, 0.024595933, -0.004000867, 0.026596365, 0.0058401916, -0.010888265, -0.023951499, 0.022380687, -0.003450412, 9.2134054E-4, -0.02083673, 0.026059337, 0.012371808, -0.009686663, -0.0013064911, 0.21298574, -0.003544392, 0.0064376364, 0.030932875, 0.0165942, 0.0076191, 0.030154184, -0.0057025775, 0.0019601563, -0.010559334, 0.0069813784, 0.031120837, -0.0017621267, 0.0035108277, 0.033322655, -0.013137074, -0.03675964, -0.024689913, -0.002789195, -0.004460698, -0.017426595, 0.020259423, -0.033483766, -0.030046778, 3.0690373E-4, 0.0062899534, -0.018191861, -0.01854093, 0.014419232, 0.0066021015, -0.005883825, -0.0046587274, -0.0063470127, -0.0037189266, -7.543581E-4, -0.00125111, 0.00939801, 0.008350803, 0.007974882, 0.031631015, 0.014647469, 0.011452146, 0.018258989, -0.03063751, 0.012311392, -0.016943268, -0.016218279, 0.013486143, -0.017856218, -0.0011848204, -0.011512562, 0.011478997, 0.015077092, 0.033242103, 1.9792459E-4, -0.027428761, 0.007088784, -0.017789088, 0.0035410356, -0.0056320927, -0.038236473, 0.019789523, 0.0043902127, 0.04392898, -0.0025978782, 0.023172805, -0.02454223, -0.038827203, 0.016621051, -0.006138914, -0.020890431, -0.0073774373, -0.010941968, 0.0080352975, -0.03300044, -0.025790822, 0.0043969257, 0.008491772, 0.010136425, 0.020460809, 0.002618017, -0.02271633, 0.0049339547, -5.3451175E-4, -0.0038196195, -0.026945435, 0.014768301, -0.0028428978, 0.008686446, -0.014660895, 0.0021397253, 0.01734604, 0.0013450901, 0.015426161, -0.012009313, -0.002666685, -0.018084455, 0.026193595, -0.008646169, -0.0037256393, -0.040814213, 0.054159384, -8.743505E-4, -0.0013920801, -0.019118236, 0.010787572, 0.007491556, 0.021910787, 0.008988525, -0.04908446, 0.0023578934, -0.049916856, 0.0072633186, -0.0126738865, 0.0036618672, -0.013096797, 3.5452313E-4, -8.3407335E-4, 0.009310742, 0.004306302, 0.031308796, -0.019091384, 0.026945435, 0.0032490261, 0.020460809, -0.029858818, -0.025710268, 0.012042877, -0.024179736, -0.039874412, 0.0077063674, 0.0034571248, 0.004343223, 0.0069276756, -0.007880902, -0.0075721103, 0.0030593877, -0.005423994, 0.01844695, -0.0040142927, 0.006256389, 0.016352536, 0.009324168, 0.0012334887, 0.038102213, -0.028220879, 0.005413925, -0.013546559, -0.01209658, -0.017359465, -0.0047124303, -0.010921829, 0.0061254883, 0.004051213, 0.01643309, 0.005756281, -0.022112174, -0.03394024, -0.014110439, 0.0013593549, -0.035578176, 0.0033983872, 0.012311392, -0.004406995, -0.02655609, -0.0041955397, -0.16937898, 0.007390863, 0.030154184, -0.0049339547, 0.007498269, 0.010331097, 0.020689046, 0.0039605894, -0.030771768, 0.011331314, 0.037108712, -0.007961457, -0.029375492, -0.020648768, 0.012203987, -0.027160246, -0.016298832, 0.008605891, 0.00825011, 0.012767867, 8.62603E-4, -0.033456914, 0.0072633186, -0.004937311, -0.019373326, 0.005071569, 0.0052259644, 0.051796455, 9.86791E-4, 0.011975749, 0.010458642, -0.029241234, 0.033859685, -8.9029357E-4, 0.006746428, -0.017292337, -0.012291254, 0.0010404938, -0.011062799, 0.04280122, 0.024421398, 0.019896928, 0.0140835885, -6.3856115E-4, 0.010680166, 0.031818975, -0.0069813784, -0.00486347, -0.0013878846, -0.0048903213, 0.0369476, -0.01734604, -7.9463527E-4, -0.004833262, -2.5068352E-4, 0.0060818545, -0.015990041, 0.0041284114, 0.02268948, -0.017842792, -0.02287744, -0.016768733, 0.024220012, -0.020138592, 0.0015456369, -0.009747078, -9.809172E-4, 0.020353403, -0.022662628, -0.005806627, -0.022823736, 0.014795152, -0.004057926, 0.012210699, 0.022340411, 0.011076225, -0.045190997, -0.00743114, 0.019722395, 0.007001517, 0.009055654, 0.05168905, -0.0044640545, -3.6773906E-4, -0.010445216, -0.025280645, -0.021226075, -0.0013811718, -9.364445E-4, -0.009498702, -0.007209616, -0.017077526, -0.0020994481, 0.005890538, 0.009538979, -0.0020088244, 0.015359032, 0.0063134483, 0.012949114, -0.0140835885, 8.0973917E-4, -0.005726073, -0.028919017, 0.003504115, 0.03410135, 0.0063537257, 0.01797705, 0.019883502, -0.010216978, 0.026341278, -0.012902124, 0.023723261, 0.018017326, 0.017372891, -0.010122999, 0.01134474, -0.01486228, -0.048037253, 0.0025743833, 0.014754875, 0.025938505, -0.002378032, -0.008854267, 0.009478563, 0.0012418798, -0.0033094417, -0.078567356, -0.021091819, 0.020984411, 0.016271982, -0.020514512, -0.0026297644, -0.01697012, 0.026542664, -0.009485276, 0.026381554, -0.031308796, -0.033483766, -0.0030275015, 0.039552193, 0.017534, 0.0033916745, 0.017990476, -0.012714164, -0.016701605, 0.023750111, -0.015654398, -0.023508448, -0.035927247, 5.1227544E-4, -0.03214119, 0.008156129, -0.026972286, 0.017131228, 0.032060638, -0.0013148822, 0.013922479, -0.016110873, -0.0043734307, 0.012928976, -0.025038982, 0.0015917878, -0.022864014, -0.0144326575, 0.0144595085, -0.020957561, 0.0047459947, 0.0061926167, -0.0015649364, -0.033859685, -0.029563451, -0.01816501, -1.8712108E-4, 0.00972694, 0.0098142065, -0.008773713, 0.0059241024, -0.016392814, -0.009740366, -0.0087334355, 0.004453985, -0.0056119543, -0.009149633, 0.007202903, -0.004772846, 0.01549329, 0.007954744, 0.022233006, -0.017856218, 0.006813557, 0.03603465, 0.0038330453, 0.0039203125, 0.00710221, 0.042425297, -0.019091384, -0.0058502606, -0.0044640545, -0.010760721, 0.020970987, -0.033698577, 0.007585536, -0.025777398, -0.013559985, 0.02454223, -0.02491815, -0.027603297, -0.022192728, 0.008350803, -0.04113643, 0.018836295, 0.041190132, 3.3270632E-4, -0.0115931155, 0.022608925, -0.036061503, 0.043096587, 0.005222608, 0.05606584, 0.003435308, -0.00967995, -7.799509E-4, -0.0020944134, 0.0094517125, -0.016030319, -0.00547434, -0.053461246, 7.4344967E-4, -0.08270248, 0.04245215, 0.01286856, -0.019735819, -0.021843659, -0.0071827644, 0.008780425, -0.0056186668, 0.013331748, 0.013304896, 0.0035343228, -2.5005417E-4, -0.017963624, -0.013170639, -0.012888699, -0.008928109, 0.010076009, -0.0064376364, 0.00671622, 0.020339977, 0.0017889782, -0.011176918, -0.024877872, 0.031684715, -0.015976615, 0.0060885674, -0.010089435, 0.0170641, 0.0068169134, -0.0063134483, 0.04116328, -0.01837982, -0.0013660678, 0.034745783, 0.0011646819, -0.018352969, 0.010418365, -0.0016018571, -0.010660028, -0.04758078, -0.027079692, 0.0012838352, 0.0039035303, -0.024421398, -0.0020457453, 0.009740366, 0.022004768, -7.2079373E-4, 0.005162192, 0.034423564, 0.010310959, 0.0026566158, -0.0043532923, -0.045083594, -0.008478347, -0.008928109, 0.01605717, 0.008713298, 0.023508448, 0.0033631448, 0.03227545, -0.0024149527, 0.0015523498, -0.026542664, -4.7451555E-4, -0.01697012, -0.0076056747, 0.0025844525, -0.001896384, -0.010304246, -0.024112606, -0.0029335215, 0.02313253, 0.02711997, -0.011123215, 3.9501008E-4, 0.012908837, 0.003739065, -0.029751413, 0.012069729, 0.0075989617, 0.00424253, -0.0033597883, 0.007786922, 0.0144326575, 0.003994154, -0.022286708, 0.013264619, -0.011613254, 0.011707234, -0.023938073, 0.02749589, -0.0042995894, -0.017789088, 0.01992378, 0.028006067, -0.014835428, -0.006729646, 0.0313625, 0.020058038, -0.02601906, -0.0025206804, -0.009230188, -0.014687746, 0.007988308, 0.015439587, -0.014942835, -0.0058502606, 0.012935689, -0.006682656, -0.0026717198, -0.02067562, 0.002797586, 0.02705284, -0.031523608, -9.86791E-4, 0.0012712486, -0.016070595, -0.03839758, 0.032356005, 0.020152017, 0.011116503, 0.010821137, 0.0071827644, 0.014123865, -0.016607625, -0.0044103516, 0.006108706, 0.009042228, 8.177107E-4, -0.0012519491, -0.009619534, -0.0051890435, -0.01019684, -0.021078393, -0.008639456, -0.008062149, 0.0074714175, 0.017305763, 0.11449461, -0.004400282, -0.0075116944, -2.0579124E-4, -0.021064967, 0.014848854, 0.023333915, -0.0144595085, -0.0012771223, -0.04116328, -0.0010967142, -0.0011722338, -0.029026423, 0.0025005417, -0.03098658, 0.01368753, 0.008283674, 0.017198358, -0.012143571, -0.01300953, 0.03214119, -0.015573844, 0.014728023, -3.1676327E-4, 0.0029654077, 0.0055616074, 0.031845827, 0.021749679, 0.0010035732, -0.022514945, -0.0024367694, 0.021534868, -0.03133565, -0.019735819, 0.018258989, -0.0037323523, -0.007209616, 0.0017671614, 0.017775664, -0.026569515, 0.0044741235, 0.023481598, -0.016084021, -0.0060013, 0.023951499, -0.013700955, -0.0043532923, -0.03302729, -0.0553677 ], - "id" : "dee57850-27d0-4b69-a3cb-1b41aff26c96", - "metadata" : { - "name" : "SwiftVolt Pro" - }, - "text" : "8mm, 15mm rise, 600mm width (M), 660mm width (L, XL)\n- Grips: Swift Satellite Elite, alloy lock-on\n- Stem: Swift alloy, 31.8mm, Blendr compatible, 7 degree, 70mm length (M), 90mm length (L), 100mm length (XL)\n- Headset: FSA IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom\n- Brakes: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor\n- Brake Rotor: Shimano RT56, 6-bolt, 180mm\n- Rotor size: Max 180mm front & rear\n\nAccessories\n- Battery: Swift PowerTube 700Wh\n- Charger: Swift standard 4A, 100-240V\n- Motor: SwiftDrive, 90 Nm, 30 mph / 48 kph\n- Light: Swift Lync taillight, 50 lumens (M, L, XL), Swift Lync headlight, 500 lumens (M, L, XL)\n- Kickstand: Rear mount, alloy (M, L, XL), Adjustable length alloy kickstand (M, L, XL)\n- Cargo rack: SwiftVolt integrated rear rack, aluminum\n- Fender: Swift custom aluminum\n\nWeight\n- Weight: M - 25.54 kg / 56.3 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:---------------------:|:-------------:|\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n| XL | 186 - 197 cm 6'1\" - 6'6\" | 87 - 93 cm 34\" - 37\" |\n\n## Geometry\n| Frame size letter | M | L | XL |\n|---------------------------|-------|-------|-------|\n| Wheel size | 27.5\" | 27.5\" | 27.5\" |\n| A — Seat tube | 44.6 | 49.1 | 53.4 |\n| B — Seat tube angle | 73.0° | 73.0° | 73.0° |\n| C — Head tube length | 16.5 | 19.5 | 23.0 |\n| D — Head angle | 69.5° | 70.0° | 70.5° |\n| E — Effective top tube | 59.5 | 60.7 | 62.2 |\n| F — Bottom bracket height | 29.5 | 29.5 | 29.5 |\n| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.4 | 4.4 | 4.4 |\n| J — Trail | 8.6 | 8.1 | 7.9 |" - }, - "0761a255-e994-419a-8945-6c0e476e2fa6" : { - "embedding" : [ 0.0041000084, 0.007355002, -0.01921224, -0.011918078, 0.017103085, -0.0022730879, 4.571526E-4, -0.004377173, 0.008774626, -0.031961814, 0.015358976, 9.2951546E-4, -0.027567739, -6.223529E-4, 5.70807E-4, -0.022713978, 0.0122087635, -0.008815187, 0.009714282, -0.009166713, 4.6475773E-4, 0.029798577, 5.767221E-5, -0.011722035, -0.010342972, -0.013898792, 0.029338889, -0.028879201, 0.036234204, -0.018779593, 0.020172175, 0.009166713, -0.040966284, 0.002453921, -0.023173666, -0.0037180618, 0.018509189, -0.015791623, 0.011289388, 0.0042757713, 0.02344407, 0.0019046618, 0.0051410655, 0.014628883, -0.024809614, 0.021943325, 0.0014077935, -0.0013418824, 0.013107859, 0.016454114, -0.0010495075, 0.021402515, -0.023349429, 0.0016342573, 0.01202624, -0.014372, -0.015331935, 0.027297335, 0.031637326, -0.005046424, 4.5419505E-4, 0.022605816, -0.029636333, -0.0051444457, -0.021875724, -0.013148419, -0.013047017, 0.017021963, 0.0036977816, 0.0010300721, 0.010910822, 0.0335572, 0.022565255, 0.010917582, 0.016994923, -0.01978009, -0.034530655, 3.0209252E-4, 0.005323589, 0.023011424, 0.038640805, -0.011512471, -0.015264334, 0.015926825, 0.025593786, 0.04012803, -0.014980409, 0.009295154, -0.028284311, 3.7476374E-4, -0.015575299, 8.5684424E-4, 0.0122358035, 0.015926825, 0.0123034045, 0.005455411, -0.013371503, 0.042723913, 0.006858134, -0.0010030317, -0.017265327, 0.0017576292, 0.0077741295, -0.019482644, -0.052512553, 0.0068243337, 0.010728299, 2.5751803E-4, 0.003535539, -0.021551238, -0.017914299, 0.01318898, 0.021105072, -0.0010148619, -0.014466641, -0.0031096519, 0.02705397, -0.00479292, 0.0016469324, -0.031637326, -0.0041845096, 0.050836045, 0.027689422, 0.002827417, -0.011296148, -0.014696484, -0.02348463, -0.007699768, 0.028067987, 0.008923349, 0.02758126, 0.014304399, 0.016859721, 0.0015810214, -0.037586227, 0.021929804, -0.029014403, -0.0056142733, 0.0023170286, 0.011471911, 0.0063477457, 0.01921224, -0.03658573, -0.010680978, -0.018373987, 0.0070507973, -0.0037180618, 0.01802246, 0.013641907, 0.019049997, -0.0016452424, -0.030285304, 0.022240771, 0.035801556, -0.0015201803, 0.0045360355, -0.017873738, 0.013080818, -0.00843662, 0.009470917, -0.027324375, -0.005698775, 0.014777606, -0.0112015065, -0.013979913, 0.0057562357, -0.0031671128, -0.013148419, 0.0031096519, 0.011127145, -0.020009933, 0.021470118, -0.009998206, 0.012269604, 0.021970365, 0.033205673, 0.024485128, 3.6863737E-5, -0.011918078, -0.017765576, 0.01921224, 0.015994426, 0.017833177, 0.026540201, -0.015696982, -2.8772728E-4, 0.021470118, -0.029825617, 0.026229236, -0.006256484, 1.306603E-4, 0.0239308, -0.014696484, 0.031772528, -0.60743666, -0.023809116, -0.0013638528, -0.026999889, 0.007902572, 0.018157663, -0.025134098, 0.011073064, 0.010856741, 0.0078282105, -0.010255091, 0.030177142, -0.031421002, 4.3644977E-4, -0.01973953, -0.016913801, 0.023917278, -0.0112150265, 0.0030826114, -0.03063683, -0.031366922, 0.027202694, -0.025999393, 0.013472904, 0.00780793, 0.009092351, 0.024904255, -0.012438607, -0.01623779, 0.0089030685, -0.022970863, 0.026107555, 0.0032195037, 0.0011018984, 0.041020364, -0.024120081, 0.025972353, 0.018279344, 0.0074969647, 0.019901771, -0.017725015, -0.011877518, 7.5502007E-4, -0.016724518, -0.014033994, 0.006229444, 0.019874731, -0.004032407, -0.017089564, -0.027824624, 0.007929612, 0.004147329, 0.013750069, 0.0012954066, -3.3420307E-4, -0.006175363, 0.038559683, 0.0040019867, 0.021578278, -0.005337109, 0.011823437, 0.01860383, -0.017589813, -0.013101098, -0.021280834, 0.020740025, -0.05226919, -0.037559185, 0.013526985, 0.0010334522, 0.010775619, -0.010268611, -9.6585107E-4, 0.020658905, -0.0035524392, 0.011559793, 0.033340875, 0.024877215, 0.009099112, 0.02403896, 0.032205176, 0.01800894, 0.015805144, -0.001919872, 0.016765079, 0.0020905647, 0.016656917, -0.008707025, 0.007747089, -7.6685025E-4, 0.024336405, 0.025688428, -0.008254098, -0.0145612825, 0.0048368606, 0.014804646, -0.021145632, 0.0064457674, 0.025661387, -0.012864494, -0.015426577, -0.018874234, -0.004441394, 0.009808923, 0.0079093315, 0.010167209, -0.009443877, -0.0015894715, 0.036315326, -0.012411566, 0.013547266, 0.01438552, -0.01976657, -0.022308372, -0.0024640611, -0.024796093, 0.012296645, 0.009822443, 0.030772032, -0.02698637, 0.0053100684, -0.013168699, 0.031610288, 0.0020584543, -0.017089564, 0.017116604, 0.013303901, 0.007355002, -0.029906739, -0.029365929, 0.047239665, 0.042940237, 0.026972849, -0.0061652227, 0.029744495, 0.018252304, 0.008254098, -0.002942339, 0.021578278, -0.044860106, -0.030880194, 0.006073961, -0.011566552, -0.03244854, -0.020577783, 0.002702355, -0.024525689, 0.0055939932, -0.005465551, -0.0015903165, -0.016967883, -0.007334722, -0.0239308, 0.018833673, -0.0062260637, -0.025134098, 0.008612383, -0.01566994, -0.02106451, -0.017914299, 0.0145207215, 0.009984686, -0.01980713, -0.0046070167, -0.022903262, -6.261554E-4, 0.015183213, 1.7203958E-5, -0.002158166, -0.047104463, -9.0163003E-4, -0.013033497, -0.037667345, 0.012905055, -0.0071724793, 0.0044278735, -0.03474698, 0.020685945, 0.011485431, -0.012485928, -4.858831E-4, 0.033935767, -0.024282325, 0.012796893, 0.051403895, 0.015102091, 0.0145207215, 0.024714971, -0.013006456, 0.02698637, 0.0076727276, 0.009694002, -3.9884663E-4, 0.01319574, -0.01807654, -0.039695382, 0.011221787, -0.0015742612, 0.0107959, 0.0012514659, 0.041642293, -0.002278158, 0.017184205, -0.021361956, 0.019131118, -0.0012497758, -0.0053168284, 0.0034121668, 0.032151096, 0.016454114, 0.013141659, -0.024214722, -0.008335219, -0.0122898845, -0.0077335685, -0.009950886, 0.015291374, 0.03842448, -0.013439104, -0.013513465, 0.016089069, 0.005904958, 0.019590806, -0.019604327, -0.0046205367, -0.0039986065, 0.0046610977, 0.030501628, 0.0021243654, -0.017887257, 0.022876222, 0.023092544, 0.00958584, 0.01265493, 0.03420617, 0.015534739, 0.0042284504, -0.00150328, 0.037451025, 0.0030961316, 0.030339384, 0.010532255, 0.050268196, -0.0133917825, -0.0015151103, -0.01731941, 0.03672093, 0.0037518626, -0.010606617, 0.030826114, -0.0063376054, -0.022457093, -0.0013241371, -0.014737045, 0.019617846, 0.004103388, 0.0040560677, -0.00961288, -0.0023609693, 0.013141659, 0.004634057, 0.029392969, 5.6066684E-4, 7.262896E-4, 0.017779095, -0.0044616745, -0.013094338, -0.007091358, 0.005945519, -0.003782283, 0.0016866481, -0.011559793, -0.0013241371, 0.005462171, 0.018414546, 0.008646184, -0.012283125, 0.009808923, 0.0059015783, 0.027473098, -0.036883175, -0.019631367, -0.008341979, 0.033962805, 0.0053675296, 0.006361266, -0.00901123, 0.039343856, -0.008774626, 0.020361459, 0.0060942415, -0.0018843814, -7.693853E-4, 0.0042352104, -0.0145342415, 5.8094715E-4, 0.029122565, -0.022592297, -0.014710004, 0.0022916782, -0.02528282, 0.00419803, -0.01810358, 0.008490701, 0.02341703, 0.012573809, 0.012938855, -1.3509662E-4, 0.0013756829, -0.004438014, 2.2477374E-4, -0.020009933, -0.024728492, 0.010268611, 0.0046205367, -0.0075510456, -0.006073961, -0.01261437, 0.01021453, -0.029095525, -0.01675156, 0.0014880698, -0.037991833, 0.005705535, 0.058461454, 0.0051985267, 0.00961288, 0.030393466, 0.0112285465, -0.0065167486, -0.009524998, -0.013939352, 0.002048314, 0.025120579, -0.027216213, 8.830397E-4, 0.002345759, -0.001678198, 8.965599E-4, -0.0035727194, 0.014047514, -0.03739694, -0.018860715, -0.013141659, -0.007740329, -0.013925832, 0.010106368, 0.009308675, 0.031421002, 0.005945519, 0.016291872, 0.048889134, 0.0035794796, 0.0035524392, -0.010883781, 0.0041202884, -0.0043906933, -0.0057427157, -0.029744495, 0.015859224, 0.014655924, -0.004982203, 0.04023619, 0.013601347, 0.024931295, 0.035855636, -0.023187187, -0.0045901164, 0.0015201803, -0.0122898845, 0.0012962515, 0.010241571, 0.014277358, -0.022970863, 0.022632856, 0.009220794, -0.02291678, 0.0018370606, 0.03666685, 0.025958832, -0.012709011, -0.026121074, -0.004748979, -0.03463882, -0.008490701, -0.019496165, 0.040722918, -0.012884774, -0.011005463, 0.007882291, 0.011640914, 0.012310165, -0.018847194, -0.008267618, -0.02102395, 3.5638467E-4, -0.005529772, 0.0067770127, 0.0026178537, 0.012986177, 0.0067702527, -0.020591304, 0.012323685, -0.005245847, 0.023687433, -0.009328955, -0.005032904, -0.01983417, -0.0049957233, 0.018401027, 0.025674907, 0.014831687, 0.012411566, 0.010194249, 0.0063950666, -0.009795403, 0.03488218, -0.011059544, -0.0058542574, 0.004377173, 0.025499145, -0.005208667, 0.008064814, 6.417882E-4, 0.02340351, 0.0025401122, -0.007740329, 0.001317377, 0.013736549, -0.007084598, -0.007355002, -0.002222387, -0.015372496, 0.014912808, 0.005239087, -0.0062767644, -0.0013908931, -0.0016013017, -0.02947409, -0.005904958, -0.0066519505, -0.020564262, 0.01138403, -0.037451025, 0.002641514, -0.04375145, 0.023308868, -0.013682468, 0.0033935765, 0.03204293, 0.014791126, -0.023565752, -0.018860715, 0.0099779265, 0.020023454, 0.027243253, -0.021199713, -0.00782145, -0.04023619, -0.058082886, -0.023606313, 0.0053033084, -0.00845014, -0.02698637, -0.006313945, -0.004241971, 0.0205237, 0.012681971, -0.0027446058, -0.015304895, -0.0061314222, -0.007618647, -0.017278848, 0.008058054, -0.013560786, -0.0056818747, -0.018536229, -0.019036477, -0.005475691, -0.0047219386, -0.012810414, -0.037045415, -0.003114722, 0.013385023, 0.016670438, 0.0013756829, 0.0021159153, 0.031583246, -0.003951286, 0.0077132885, -0.008051294, -0.016359473, -0.021699961, 0.015372496, 0.024376966, 0.020929309, 0.009457397, -0.01630539, 0.006733072, 0.021307874, 0.0145342415, -0.036180124, -0.01978009, -0.016089069, -0.00903827, -0.01741405, 0.003427377, -0.02105099, -0.026215717, -0.01690028, 0.01738701, 0.011951879, 0.006229444, -0.0040628277, 0.015507698, -0.002217317, 0.016170189, -0.00960612, 0.021280834, 0.021470118, -0.0026110935, -0.028987363, -0.045563158, 0.022997903, -0.01261437, -0.015994426, 0.016170189, -0.01687324, -0.008071574, 0.0051444457, -0.0035084984, -0.00843662, 0.00840282, -0.025107058, -0.014020474, -0.0300149, -0.024606809, -0.039370894, -0.017900778, 0.021429557, -0.001379063, 0.025445065, -0.021145632, 0.019455604, 0.012229044, 0.0012261154, 0.02944705, 0.0100860875, 0.02403896, 0.018752553, -0.012418327, -0.026486121, -0.027932785, -0.01630539, -0.0051917667, -0.0036065201, 0.04369737, -0.0013004766, -0.0068141934, -0.007388803, -0.0071589593, 0.01200596, -0.029906739, 0.012837454, 0.023782076, 0.0133377025, -0.019455604, -0.02288974, -0.004049307, 0.029771537, 0.0036504609, -0.002822347, 0.014290878, -0.017725015, -0.008112135, 0.055378843, -0.013993433, 0.008213537, 0.028095027, -0.014980409, 0.021956846, -0.01561586, -0.024823133, -0.012431847, 0.008869268, 0.038127035, -0.017454611, 0.008281138, 0.02708101, -0.013871751, -0.026175156, 0.0012185103, 0.020740025, 0.019442083, -0.022578776, -0.017779095, -0.019415043, -0.008003973, -0.00719276, -0.03956018, -0.029014403, -0.0016942532, 0.013040257, -2.526592E-4, 0.015521218, -0.014290878, -0.00421155, -0.012925335, -0.0014559593, 0.004018887, -0.029636333, -0.013513465, 0.002338999, -0.022808619, -0.011316428, -0.005343869, 0.012411566, -0.004086488, 0.0034104767, -0.027689422, 0.005935379, 0.013324182, -0.03539595, -0.004022267, 0.00659787, 0.011722035, -0.030961316, 0.00958584, -0.0058508776, -0.027513659, 0.0013139969, 0.014101595, -0.022903262, -0.002643204, -0.010397053, 0.008071574, 0.012168203, -0.009849484, 0.022484135, 0.028040947, 0.0027158752, -0.019982893, -0.015318415, -9.59936E-4, -0.012060041, -0.010687738, 0.046185087, -0.05099829, 0.0015835564, 0.010329452, 0.009247834, -0.00418789, 0.012127642, -0.011830197, -0.0011255587, 4.4151986E-4, -0.008159456, -0.018739032, -0.0034087868, 4.972908E-4, -0.02952817, -0.016724518, -0.029744495, 1.5981328E-4, 0.014250318, 0.006466048, -7.461474E-4, -0.009146432, -0.023768555, -0.0348281, 0.0053878096, 0.010985183, -0.014169196, -0.0100320075, 0.012100602, 0.029609293, 0.0062159235, -0.003971566, -0.017021963, -0.0022578775, -0.01864439, 0.00843662, -0.007868771, 0.024606809, -0.0052424674, 0.020483142, -0.009511478, 0.016318912, 0.008193256, 0.031610288, -0.004556316, -0.013074058, 0.0038904448, 0.013574306, -0.003981706, -0.023822637, -0.04742895, -0.019347442, -5.7460956E-4, 0.009984686, 6.3967565E-4, 0.013594586, 0.0071589593, -0.0061652227, 0.0041135284, -0.009078831, -0.0014137086, 0.014250318, 0.009639921, -0.02820319, -0.027540699, -0.0072603608, 0.02521522, -0.002879808, -0.009295154, -0.013621626, -0.006918975, 0.015183213, -0.011059544, -0.023268307, -0.0013554025, -0.013047017, 0.024201203, -0.0051883864, -0.0051275454, 0.022727499, 0.0066215303, -0.010660698, 0.019320402, 0.0070372773, -0.033232715, -0.0049416423, 0.005833977, -0.011012224, -0.0016976333, -0.016616357, 0.05335081, 0.003721442, -0.00419803, 0.01500745, -0.009653441, -0.017968379, 0.042345345, 5.226412E-4, -0.034990344, -0.017792616, 0.0068784147, -0.003484838, -0.01441256, 0.01383119, -0.013554025, -0.06051653, -9.1008015E-4, -0.012425086, -0.02882512, -0.017021963, 0.018901275, 0.0099779265, 0.012472408, 0.013554025, 0.19869323, -0.0064559076, -0.0036944016, 0.057866562, 0.0015717262, 0.0012066801, 0.015832184, -0.0072536008, -0.0010554226, 0.019874731, 0.0010782379, 0.021727001, -0.033773523, -0.0056717345, 0.0028460075, 0.007334722, -0.046455495, -0.024241764, -0.027446058, -0.007010237, -0.039235692, -0.011796396, 0.016738039, -0.0049889633, 0.014101595, -0.018184703, -0.0074902046, -0.011613874, 0.02644556, 0.011478671, 3.130777E-4, -0.024106562, 5.0954346E-4, 0.016710998, -0.01502097, -0.00540471, 0.0049653025, -0.0051376857, 0.02405248, 0.008632664, -0.0015936965, 0.0011559792, 0.011667954, -0.0020956348, -0.008274377, 0.008815187, -0.03431433, -0.0020246536, 6.464358E-4, -0.0032093634, -0.017481651, 0.016724518, -0.017860217, 0.024985377, 0.002753056, 0.001740729, 0.015413057, -0.01625131, -0.003667361, 0.018387506, -0.013743308, 0.044157054, -0.006310565, 0.017049003, -0.01867143, -0.003057261, -0.030150102, -0.01566994, -0.0042960513, 0.007882291, -0.0041845096, -0.0145207215, -0.018130621, 0.026553722, -0.021199713, 0.0015201803, 0.008727306, 0.038235195, -0.008260857, 0.021456597, -0.009484438, -0.0072265603, 0.012411566, -0.00779441, -0.005928619, -0.02882512, -0.01377711, 0.00479968, 0.012533248, 0.0062091635, 0.007882291, -0.02758126, 0.0034121668, 0.0122628445, 0.0024944816, -0.006804053, -0.01383795, 0.0010934483, -0.016670438, 0.020753546, -0.02282214, 0.0639777, 6.734762E-4, 0.017495172, -0.024985377, -0.011661194, -0.0027277055, 0.05221511, 0.019685447, -0.029392969, -0.025891231, -0.03485514, 0.010863501, -0.019009437, 0.005712295, 0.008044534, -0.014980409, -0.018536229, -0.0010342972, 0.006533649, 0.01503449, -0.01022129, 0.023890238, -0.009964406, 0.0061517023, -0.008301418, -0.021578278, 0.024836654, -0.0061550825, -0.034098007, -0.0077335685, 0.012709011, 0.010505215, -0.027364936, -0.0145342415, 0.009721042, -0.010660698, -0.01857679, 0.00841634, -0.04250759, -0.017211247, 0.0144531205, 0.013567545, 0.004999103, 0.038262237, -0.045941725, 0.0011196437, -0.015751062, 0.0100860875, -0.031691406, -0.005323589, 0.003427377, 0.005283028, -0.006912215, 0.0055804728, 5.779896E-4, -0.020266818, -0.028067987, 0.007348242, 0.011803157, -0.029068483, 0.002937269, 0.027364936, 0.0033766762, -0.02217317, -0.0013554025, -0.17111197, 0.008821947, 0.0051579657, -0.017684454, 0.0111609455, -4.3280565E-5, 0.013506705, -0.0014500441, -0.004316332, 0.0121952435, 0.026094034, -0.00845014, -0.0216594, -0.0020381738, 0.0144936815, 0.011640914, -0.0047895396, 0.0064761876, 0.02459329, -0.011796396, 0.026202196, -0.021645881, 0.032340378, 0.023619832, 0.008761106, 0.015467137, -0.018995916, 0.013743308, -3.6377856E-4, 7.043192E-4, -0.007355002, -0.029555213, 0.022673417, -0.01622427, 0.025363943, -0.0204561, -0.013459384, 0.010275371, 0.009180233, 0.05207991, 0.0075307656, 0.011546272, 0.02462033, 0.01558882, 0.0043501323, 0.018468628, 0.005107265, -0.0012565359, 0.008233817, -0.008328458, 0.03899233, -0.04023619, -0.032394458, -0.01738701, -0.0044312538, 0.019036477, -0.011823437, 0.028365431, 0.020875227, -0.032529663, -0.025945311, -0.005776516, -0.002039864, -0.021240273, -0.021429557, -0.015683461, -0.009214033, 0.034098007, -7.1826193E-4, 0.007442884, 0.016589316, -0.021835163, -0.004279151, 0.0324215, 0.004579976, 0.007868771, -0.024471607, -0.004302812, 0.03891121, -0.0049957233, -0.0047591194, 0.059975717, -0.038938247, -0.0072198003, -0.013952873, -0.003538919, -0.02228133, 0.017522212, -0.003364846, 0.004333232, 0.009802164, -0.026553722, -0.01978009, 0.013067298, -0.026715964, 0.019049997, 0.006854754, -0.018198224, 0.009288395, -0.0023187187, -0.0018928315, -0.001860721, -0.046590697, 0.031556204, 0.018941835, 0.013594586, 0.013594586, 0.007348242, 0.005783276, -0.0336924, 0.0034949782, 0.028527675, 0.03066387, 0.015913306, -0.004762499, 0.026972849, 0.0100725675, -0.026540201, 0.022267811, -0.03474698, 0.01923928, -0.011336708, -0.020036973, 0.02343055, -0.019469123, -0.014466641, -0.064788915, -0.018171182, 0.034909222, 0.017116604, -0.021943325, 0.004279151, -0.00963316, 0.05159318, -0.02459329, 0.012323685, 0.011816677, -0.008781387, 0.003302315, 1.7502354E-4, 0.038208157, -0.0037180618, 0.009849484, -0.01734645, 0.0024387105, 0.017697975, -0.0069358754, -0.018090062, -0.023160145, -0.011911319, -0.029203687, -0.022078527, -0.036856133, 0.015142652, 0.02153772, 0.006793913, 0.023768555, -0.0036301804, 0.0015235604, -0.0056784945, -0.00900447, -0.010904062, -0.019631367, -0.007402323, 0.030880194, -0.045184594, -0.0100049665, 0.009389796, 0.017941339, -0.017535731, -0.014006953, -0.026918769, -0.0015565159, 0.0046441974, -0.018468628, -0.029257767, -0.0077876495, 0.0022967483, -0.0026195436, -0.012729292, 0.023673914, -0.004508995, 0.0066891313, -0.019658407, -0.012837454, 0.013844711, 0.0112150265, 0.022551736, -0.017860217, 0.008761106, -0.007638927, -0.02947409, -0.008598863, 0.01803598, 0.013229541, -0.0066891313, 0.009173472, 0.0077065285, -0.0031704928, 0.029960819, -0.029555213, -0.01810358, 0.0035490592, 0.0026127836, 0.006236204, 9.675411E-4, -0.01618371, -0.028716957, -0.0019486025, -0.029420009, 0.033827603, 0.029771537, 0.019279841, 0.011025744, 0.023200706, -0.054297224, 0.0021784462, 0.022903262, 0.043967772, -0.014372, -0.037586227, 0.002749676, 0.010153689, -0.0132025, 0.008267618, -0.001445819, -0.030447546, -0.022159649, -0.08788146, 0.025052978, 0.027121572, -0.007348242, -0.005773136, 0.01080266, 0.0063342256, 0.006303805, 0.0016148218, -0.007469924, -0.0068919347, -0.0025130718, -0.015534739, -0.013628387, -0.006418727, -0.032232217, 0.0025333522, -0.0034020266, 0.010944623, 0.012587329, -0.004556316, 0.033908725, -0.013844711, 0.006662091, -0.01734645, 0.0112150265, 0.011032504, 0.010701258, 3.777213E-4, 0.008463661, 0.0012987866, -0.029906739, -0.005752856, 0.028284311, -0.009119391, -0.013925832, -0.009835964, 0.003184013, -0.007463164, -0.053188566, -0.016859721, 1.3573038E-4, -0.0026212337, -0.027283814, -0.017630374, -0.011025744, 0.014831687, 0.0011306289, 0.018130621, 0.0062226835, 0.009396557, 0.0100590475, -0.015075051, -0.053080402, 0.0024911014, 0.010160449, -0.0020094435, -0.010606617, -0.015210253, 8.483941E-4, 0.04856465, 0.017116604, 0.016116109, -0.022673417, 0.021456597, 0.022037966, -0.031015396, 0.009545279, 0.029798577, 0.001442439, -0.017454611, -0.014939848, 0.0075916066, 0.007747089, 0.032259256, -0.021321395, -0.007929612, 0.021524198, -0.018982396, 0.02764886, 0.015129132, -0.02702693, -0.025958832, 0.0071724793, 0.009876524, -0.012830693, -0.035828598, 0.0073144417, -0.009119391, 0.008497462, -0.043426964, -0.0021868965, -0.03117764, -0.0032009133, 0.044021852, 0.015832184, -0.016075548, -0.03380056, 0.009788643, 0.0039377655, -0.006503228, 0.014628883, -0.0089841895, 0.0016325671, -0.014858727, 0.008098614, -0.010687738, -0.039343856, 0.010653937, 0.011681475, 0.006381546, -0.0074158437, 0.008483942, 0.018252304, -0.028635837, 0.0032685145, -0.0024066002, -0.025296342, -0.020564262, -8.5515424E-4, 0.012147922, 0.02882512, -0.0073617627, -0.0089436285, 0.016886761, 0.020807626, 0.0044616745, -0.0071724793, 0.017697975, 0.005178246, 0.011694995, -0.0029186786, -0.03307047, -0.01141783, 0.0016748179, -0.024120081, 9.793713E-4, 0.0044751945, 0.0065708295, 0.08193257, 0.012729292, -0.0016925632, 0.006043541, 0.006374786, 0.01380415, 0.007976932, 0.0028578376, -0.041642293, -0.022551736, 0.0037586226, -0.0036403206, -0.015926825, 0.0037079218, -0.03534187, -0.004079728, 0.008044534, -0.020712985, 0.011242067, 0.005499352, 0.010153689, -0.013317422, -0.020983389, 0.011492191, -0.012999697, 0.013871751, 0.020604823, -0.0017179135, 0.007064318, -0.038938247, 0.0074158437, 0.02106451, -0.021699961, -0.018441588, 0.023755036, 0.0035862396, -0.035882678, -5.779896E-4, -0.0019367723, 0.010552536, -0.0037991833, 0.04074996, -0.012884774, -0.015129132, 0.01382443, -0.0020178936, -0.017454611, -0.036991335, -0.025634347 ], - "id" : "0761a255-e994-419a-8945-6c0e476e2fa6", - "metadata" : { - "name" : "AeroFlow 32oz Hydration Bottle" - }, - "text" : "price: 30.99\nname: AeroFlow 32oz Hydration Bottle\nshortDescription: \ndescription: ## Overview\nStay hydrated on your bike rides with the AeroFlow 32oz Hydration Bottle. This premium insulated water bottle keeps your drinks cold for longer, allowing you to stay refreshed on those hot and demanding rides. With its larger capacity and ergonomic design, this bottle provides easy and efficient hydration, making it the perfect accessory for cyclists of all levels.\n\n## Product Details\n- Premium insulated bottle designed to keep drinks cold for extended periods\n- Ergonomic shape and size for easy handling and efficient hydration\n- Screw-on cap for secure closure and leak-proof design\n- Lightweight construction for easy carrying on rides\n- BPA-free and food-grade materials ensure safe and clean hydration\n- Designed for easy insertion and removal from bottle cages\n- Compatible with most standard bottle cages\n- Wide mouth opening for easy filling and cleaning\n- Dishwasher safe for convenient and hassle-free maintenance\n\n## Features\n1. Enhanced Insulation:\n - The AeroFlow bottle features an advanced insulation layer that keeps your drinks cold for an extended period, ensuring refreshing hydration on long rides.\n \n2. Large Capacity:\n - With a generous 32oz capacity, this bottle allows you to carry ample hydration to keep you fueled throughout your ride.\n\n3. Leak-Proof Design:\n - The screw-on cap ensures a secure and leak-proof closure, giving you peace of mind during your ride.\n\n4. Ergonomic Shape:\n - The bottle's ergonomic design fits comfortably in your hand and offers a secure grip, making it easy to hydrate on the go.\n\n5. Lightweight Construction:\n - Weighing in at just 141g, the AeroFlow bottle won't add unnecessary weight to your bike, ensuring a smooth and effortless ride.\n\n6. BPA-Free and Food-Grade Materials:\n - The bottle is made from BPA-free and food-grade materials, guaranteeing safe and clean hydration with no unwanted chemicals.\n\n7. Easy Bottle Cage Compatibility:\n - Designed for easy insertion and removal from most standard bottle cages, the AeroFlow bottle provides a secure fit for worry-free riding.\n\n8. Wide Mouth Opening:\n - The wide mouth opening allows for easy filling with ice cubes and effortless cleaning, ensuring a hygienic hydration experience.\n\n9. Dishwasher Safe:\n - The AeroFlow bottle and cap are dishwasher safe, saving you time and effort on cleaning and maintenance.\n\n## Specifications\n- Size: 32oz (946ml)\n- Insulated: Yes\n- Type: Screw Cap\n- Tethered cap: No\n- Bottle height: 10.25\" (26cm)\n- Weight: 158g\ntags: [bottle]" - }, - "26587e4a-8946-4ce3-8375-c54566a8a052" : { - "embedding" : [ -4.0648563E-4, 0.003472002, -0.010359257, -0.01587594, 6.943144E-4, 0.013867373, -0.0097952075, -0.008749652, -0.008261267, -0.02452929, -0.016866466, 0.015270618, -0.019645443, 0.008515777, 0.0043645077, -0.012622335, 0.020704757, 0.017705662, -0.008123694, -0.030293604, 0.019232724, 0.011067759, -0.009698906, -0.006620707, -0.0218191, -0.018820005, 0.03692463, -0.0025519817, -0.00932058, -0.025588604, -1.1876431E-4, 0.0126360925, -0.016426232, 0.005575151, -0.003917395, -0.022864655, 3.189977E-4, -0.00558203, 0.008467627, -0.006558799, 0.0149679575, 0.0045915036, 0.0092174, -0.005423821, -0.032549806, -3.0072627E-4, 0.02166777, 0.0071606818, 0.0019844924, 0.018778734, -0.015270618, 0.026537858, -0.028642727, -0.003016291, -0.012244009, -0.025396, -0.0056989673, 0.0065003308, 0.02657913, -0.010531223, -0.030238576, -0.006703251, -0.038025215, 0.0013920682, -0.0022768355, 0.0072225896, -0.039043255, 0.015972242, -0.009808965, -0.015476977, 0.0024040905, 0.0530482, 0.031119043, 0.010888914, 0.012773666, -0.035356294, 0.0011392776, -0.0069096107, 0.008495141, 0.017196642, 0.03543884, -0.009361852, -0.005781511, 0.009327458, 0.010256077, 0.008508898, 0.018682431, 0.018476073, -0.022424422, -0.002268237, 0.019824289, 0.02596005, -0.0030592827, 0.033815477, 0.0080893, 0.028340066, -0.01551825, 0.018861277, 0.01187944, -0.016701378, 0.014046217, -0.0055132434, -0.0061013685, -0.018833762, -0.025258427, -7.7062454E-5, 0.011494235, -0.02135135, 0.003855487, 0.0016276622, 0.009293065, 0.024914496, 0.022520723, -0.0067376443, 0.031531762, -0.0066447826, 0.031972, -5.8554567E-4, 0.007201954, -0.023923969, 0.022630781, 0.0411894, 0.03579653, 0.0029543831, -0.0020653168, 0.016316174, -0.015215589, -0.008013635, 0.019961862, 0.0036525668, 0.012195858, 0.045041446, 0.01920521, 0.0013344594, -0.021791585, 0.010634404, -0.013454652, 0.022644538, -0.012594821, 0.0016250827, -0.0043197963, 0.018751219, -0.03230217, -0.004973269, 0.004103119, 0.021557711, 0.0044264155, 0.01593097, -0.008777166, 0.012698, 0.011150302, -0.009925902, 0.0034668432, 0.008660229, -0.0074702213, 0.006001628, -0.014555238, 0.028807815, 0.003399776, 0.008584564, -0.0149542, 0.0059534777, 0.032027025, -0.02110372, 0.0065863137, 0.015779639, -0.004471127, 0.0061839125, -0.013399623, -2.448372E-4, -0.011563022, 0.009891508, -0.03098147, 0.021530196, 0.004828817, 0.021213777, 0.0133652305, 0.0015597354, 0.009341216, -0.007752246, 0.014252577, 0.0133377155, -2.0023341E-4, 0.026771732, -0.016288659, -0.0036147342, 0.009967173, -0.006373076, 0.026262712, -0.022933442, 0.032659862, -8.5295347E-4, 0.0012510557, 0.006545042, -0.60356086, -0.02125505, -0.0072225896, -0.010737583, 0.0036491274, 0.024102813, -9.146464E-5, 0.020691, -0.0078554265, 0.012244009, -0.024556804, 0.022850897, -0.031201588, 0.0029732995, -0.02437796, -0.014458937, 0.010964579, -0.035301268, 0.03472346, -0.0020704756, -0.012471004, 0.0081374515, 0.0062664566, 0.0010438361, 0.012574185, 0.032797437, 0.012127072, -0.017980808, -0.02759717, -0.0046671685, -0.032247145, 0.043170452, -0.01367477, 0.015834669, 0.040694132, -0.025464788, 4.1916815E-4, 0.024818193, 0.01992059, 0.035411324, -0.014802869, -0.0132139, -0.016825195, -0.017801965, 0.023084773, 0.0072225896, 0.04281276, -0.017733177, 0.011507993, -0.03788764, 0.011748746, -0.010524345, 0.044986416, 0.019494113, 0.018352257, -0.007669702, 0.01837977, 0.0026603206, 0.007573401, -7.575121E-4, -0.0013361791, 0.017636877, -0.0065278453, -0.019851804, -0.017898265, 0.021901643, -0.0607523, -0.033567846, 0.02110372, 0.007215711, 0.004082483, 0.0037970187, -0.017760692, 0.023868939, -0.0064556194, 0.029165505, 0.029688284, 0.0090935845, 0.007841669, 0.021337593, 0.026702946, 0.006431544, 0.02048464, -0.01796705, 0.033320215, 0.008213116, 0.006995594, -0.013041933, 0.02678549, 0.019246481, 0.023469977, 0.025698662, -0.02232812, -0.011487357, -0.0012820096, 0.035576414, 0.0050798883, -8.735894E-4, 0.015834669, -0.025753692, -0.012113315, -0.0057230424, 0.018255955, 0.003287998, 0.006379954, 0.027377054, -0.022630781, -0.025602361, 0.022672053, -0.030926442, 0.008481384, 6.824917E-5, -0.037667524, -0.02842261, -0.009616362, -0.021640254, 0.0036697634, 0.014225062, 0.017320458, 2.4182777E-4, -0.001408405, -0.025547331, 0.0044126585, 0.025794962, -0.035301268, 0.012594821, 0.018888792, 0.009059191, -0.006558799, -0.0053275195, 0.027074393, -0.0069783973, 0.046417177, -0.011336027, 0.0042269346, 0.020677242, 0.016605077, 0.023882696, 0.025519816, -0.049388755, 0.0010120224, 0.0026121698, 0.007614673, -0.01254667, -0.013427138, 0.0024883542, 7.3838084E-5, 0.0014204426, 0.011590537, -0.009836479, -0.013447775, -0.022768354, -0.034530856, 0.0046430933, -0.02580872, -0.027322024, -0.027817288, -0.032494776, -0.026496585, -0.014610267, 0.032549806, -0.0056439377, -0.03538381, -0.004010257, -0.025189642, 0.010249198, -0.0050214194, 0.012257767, -0.0029612617, -0.06438423, -0.019315269, -4.271216E-4, -0.012505398, 0.024350446, 0.0097401785, 0.018228441, -0.017045312, -0.023222346, -8.03943E-4, -0.007380799, 0.002006848, 0.026235197, -0.013894887, 0.029275563, 0.029990943, -0.0103455, 0.021021176, 0.02545103, -0.0040962403, 0.019851804, -0.0015227627, -0.0061942306, -0.010888914, 0.009203643, -0.033402756, -0.027569657, 0.017568089, -0.008206238, -0.0058399797, 0.0034444875, 0.016522534, -0.023882696, 0.022300605, -0.023373676, 0.02217679, -0.00660695, 0.008522656, -0.011900077, 0.029110476, 0.013839858, 0.0016955889, -0.032247145, 0.002058438, -0.014211305, 0.012842452, -0.003958667, 0.0053963065, 0.02806492, 0.009877752, -0.014458937, -0.011391056, 0.012409097, 0.009980931, -0.017581847, -0.02842261, 0.039868694, -0.013578469, 6.289672E-4, -0.017691905, -0.026813004, 0.014431422, 0.0073464056, 0.019232724, 0.003272521, 0.036071677, 0.008495141, 0.015463221, -0.0027291072, 0.041602116, 0.0039414703, 0.008797802, 0.017471788, 0.02396524, -0.032824952, -0.006902732, 0.0184348, 0.018503588, -0.008054907, -0.012154587, 0.014830384, -0.004481445, -0.0046465327, 0.0103867715, -0.0035940981, 0.015765881, -0.009389367, 0.02048464, -0.014280092, -0.012023892, -1.981913E-4, 0.0049285577, 0.031504247, 0.007298255, 0.01326205, 0.0077453675, 3.508115E-4, -0.010531223, -0.03139419, -0.011721231, -0.01909515, 0.011391056, 0.015628308, -0.0048632105, -0.012374704, 0.04036396, 0.022369392, 0.010022203, -0.010042839, 0.01623363, 0.015710853, -0.009705785, -0.034861032, 0.020801058, 0.014541481, -0.013268929, 0.0073188907, 0.0018967896, -0.014280092, 0.005540758, 0.0389332, 0.011838169, 0.0031727804, 0.012883725, 0.0014041058, -0.003621613, -0.023937726, 0.037777584, 0.002381735, -0.0059431596, -0.0030696006, -0.02699185, -7.3816587E-4, -0.022300605, -0.0049044825, 0.023538765, -0.005183068, -0.010538102, -0.011466721, 3.8112057E-4, -0.0052243397, 0.03604416, -0.03590659, -0.007882941, -0.037089717, 0.026400285, 0.0011401373, 0.01593097, -0.026551615, 6.590613E-4, -0.011542386, -0.0031830985, -0.017375488, 0.0044848844, 0.015394434, 0.0541763, 0.032247145, 0.019273996, 0.033402756, -0.0183385, -0.004419537, -0.032742407, -0.018792491, -0.012065164, 0.023002228, -0.0040652864, 0.020415854, -0.009843358, -0.004182223, 0.013661012, 5.8511575E-4, 0.008935375, -0.0229472, 0.005726482, -0.0027720986, -0.0064005903, -0.005238097, 0.010015325, 0.02007192, 0.010022203, -0.017279185, 0.04982899, 0.022713324, 0.005509804, 0.00952694, -0.007979242, -0.019549143, 0.01848983, 0.0057643144, -0.051039632, 0.0014685933, -0.0205947, 0.011783139, 0.035026122, 0.01177626, -0.014115004, 0.024983281, -0.0024763164, -8.1942E-4, -0.0034341693, -0.02770723, 0.0033430273, 0.02831255, 0.0041719056, -0.021585226, 0.04619706, -0.010214806, -0.002570898, -0.002130664, 0.024570562, 0.016192358, -0.016206115, -0.022080489, -0.017403001, -0.048178114, -0.0056439377, -0.023428705, 0.0036594453, -0.0019500992, -0.03056875, 0.0058365404, 0.009176129, 0.013310201, -0.013564711, -0.0067307656, -0.004312918, -0.034090623, -0.04394086, 0.0050076623, -0.00804115, -0.013399623, -0.0013000661, -0.0023232664, 0.023428705, 0.01300754, 0.00660695, -0.015752124, -0.009492546, -0.032632347, 1.0747901E-4, -0.0038382905, 0.023469977, 0.02289217, -0.004973269, -0.00327768, 0.033567846, -0.010448679, 0.0033275501, -0.0069783973, 0.011109031, 0.015903454, 0.045646768, 0.027211966, -0.0011685118, 0.0039655454, -0.0035356297, -0.026689189, 0.004116876, -0.0036491274, -0.0015090053, 0.011336027, 0.0057883896, 0.012574185, 0.011790018, -0.0017076265, 0.0074014347, 0.016274903, -0.024047785, -0.0020807937, -0.028670242, 2.8675402E-4, -0.008818438, 0.0063180462, -0.018517343, -0.016481262, -1.9571929E-4, -0.03907077, 0.015642066, 0.010765098, -0.017086584, 0.03230217, 0.010937064, -0.02223182, -0.007291376, 0.024432989, 0.015504492, 0.024763165, 0.0077040954, 0.007924213, -0.027872318, -0.0370622, -0.00327768, -0.0030334876, 0.024281658, -0.052195247, -0.029688284, 0.010558738, -0.0069921548, 0.01890255, -0.00348232, -0.01531189, -0.004794424, -0.01623363, -0.01655005, 0.048315685, 0.0010868278, 0.0072088325, -0.020911116, -0.018200926, -0.022039216, -0.0143488785, -0.006139201, 0.004158148, 0.0059844316, 0.009244915, 0.0155870365, 0.0020154465, -0.0046121394, 0.01971423, 0.009231158, 0.01474784, -0.020168222, 0.0037729433, -0.017760692, 0.03400808, 0.033842992, -5.313762E-4, -0.01187944, -0.011377298, -0.028477639, 0.008625836, -0.010008446, -0.0143488785, -0.030348634, -0.04014384, -0.0024144086, -0.027156938, 0.012560427, -0.021034932, -0.04952633, -0.014899171, 0.03227466, -0.01254667, 0.0033688222, -0.0075871586, 0.014775355, -0.033567846, 0.050681945, 0.017746935, 0.018985093, 0.008646471, -0.04209738, -0.044738784, -0.016192358, 3.4500763E-4, 0.0069783973, -0.018751219, -0.01828347, -0.011170939, -0.0030352073, 0.018696189, -0.006032582, -0.019796774, 0.029605739, -0.02110372, -0.011404813, -0.032714892, -0.029358108, -0.04127194, 0.0025966929, -0.0013731519, 0.021241292, 0.0058915694, -0.017485546, 9.1228186E-4, 0.004127194, 0.018008323, 0.025079584, 0.009520061, 0.017196642, 0.014431422, -0.0135922255, -0.025781205, -0.034833517, -0.009506304, -0.01655005, 0.014156275, 0.011714352, -6.956042E-4, -0.02012695, 0.009760814, 0.007800397, 0.0012244009, -0.018269712, -6.368131E-5, 0.030651296, 0.01837977, -0.02785856, -0.024240388, 0.0021117476, 0.005695528, 0.0023628187, -0.0012097837, -0.017595604, 0.014053096, 0.009657634, 0.021034932, -0.010070354, 0.02268581, 0.03252229, -0.016605077, 0.011514871, -0.02360755, -0.026414042, -0.014011824, 0.021227535, 0.03728232, -0.018200926, 0.004230374, 0.030513722, -0.0081374515, -0.01090955, 0.0044367337, 0.002658601, 0.024721893, -0.014417665, 0.0019139863, -0.016715135, -0.022108003, -0.024460504, -0.011280998, 0.0039999387, 0.011026487, 0.0054754107, -0.0059087663, 0.0023800153, 0.0033361486, -0.03728232, -0.008646471, -0.01935654, -0.005781511, 0.0043507502, -0.016990282, 0.028560184, -0.024914496, -0.015174317, -0.020622212, -0.006524406, 0.0071469243, 0.027886074, 0.0010954262, 0.009698906, 0.039676093, -0.03133916, -0.009939659, 0.0019071077, 4.4023403E-4, -0.016618835, 0.01531189, 0.013021298, -0.035521384, -0.011191575, -6.7023915E-4, -0.015834669, -0.017086584, -0.0067892345, -0.017568089, -0.017031554, 0.009079827, -0.020003134, 0.0074427067, 0.009299944, -0.013881129, 0.015105531, -0.016453747, -0.027638443, -0.009870873, 0.024130328, -0.034090623, -0.0014058255, 0.016536292, 0.025107097, -0.006617268, -0.019838046, -0.044050917, -0.007621552, -0.01126724, -6.50463E-4, -0.010675675, -0.03037615, -0.008591442, -0.017636877, 0.008983525, -0.007931091, 0.0185311, -9.956856E-4, -0.029055446, -0.021268807, 0.016770165, -0.0045192777, -0.001618204, 0.015600794, -0.0024677182, -0.01941157, -0.018393528, -6.491732E-4, 0.0472151, -0.013021298, -0.021832857, -0.033072583, -0.0030489645, -0.0423175, 0.012773666, -0.030953955, 0.019700473, 0.025726177, 0.036649484, -0.012113315, 0.023167316, 0.0065725567, -0.005509804, -0.0062320633, -0.0010481353, 0.013633498, 0.0056989673, 0.0026087307, 0.003810776, -0.032384716, -0.021310078, 0.022011701, 0.02996343, 0.029633254, 0.009293065, -0.016109815, -6.3971506E-4, 0.032137085, 0.018090868, -0.0014178632, 0.014871656, -0.026730461, -0.044436123, -0.0033739812, -0.016041027, 0.0277485, 0.0022785552, -0.011659323, -0.0064865733, -0.031531762, -0.003676642, -0.0015691936, 0.006882096, -0.023126043, 0.013544075, 0.031449217, 7.906156E-4, -0.025781205, 0.029798342, 0.0017385805, -0.038025215, 0.006479695, 0.02012695, 0.0015588755, 0.0066860546, 0.0230435, -0.018090868, -0.019177696, -0.013090084, 0.020195736, 0.011253483, 0.0014651539, -0.0039414703, -0.0033051947, -0.021392623, 0.025079584, 0.008061786, 0.0013912084, -0.015573279, -0.006345561, -0.011294754, 0.007697217, 0.007573401, 0.009994688, -0.007979242, 0.0066654184, -0.017953295, -0.009416881, -0.029220534, 0.0136472555, -0.004316357, -0.02238315, 0.001300926, 0.20426859, -0.018173411, -0.013083206, 0.03359536, -0.007033427, -0.0041443906, -0.005881252, -0.01781572, 0.004794424, -0.007298255, -0.0043954616, 0.009650756, -0.00189507, -0.0053997454, -6.45304E-4, -0.0025175884, -0.03590659, -0.023153558, -0.016715135, 0.008894104, 0.0038210938, 0.013399623, 4.0653937E-5, -0.016384961, 0.029633254, -0.007621552, 0.008956011, 0.0036903995, 0.016329931, 0.011040244, -0.011012729, 0.005152114, -0.009850237, -0.009341216, -0.032549806, 0.010379893, 0.01787075, -0.002022325, -8.1770035E-4, 0.048810948, 7.22259E-4, 0.022561995, 2.4333248E-4, -0.013936159, -0.022273092, 0.005392867, -0.023263618, 0.012264645, -0.019700473, -0.0049767084, 0.0026259273, 0.005960356, 0.006534724, 0.015532007, 0.0025416636, -0.03354033, 0.010689433, -0.024845708, 0.008873467, -1.3166179E-4, -0.016426232, 0.03901574, -0.0061495192, 0.028862843, -0.024515534, 0.021227535, -0.029082961, -0.029082961, 0.00450552, -0.0062561384, -0.007525251, -0.0018159654, -0.014307606, 0.0014049656, -0.03681457, -0.011047123, 0.0355489, 0.0299084, 0.006269896, 0.018654916, -0.012718637, -8.791783E-5, -0.009107342, -0.0080824215, 0.024006512, -0.04245507, 0.003502956, 0.0037523073, 0.01796705, -0.0047737877, 0.006307728, -0.0039930604, -0.008715258, 0.009863994, 0.005760875, -0.01116406, -0.01183129, 0.0018813127, -0.014066854, 0.023057258, 0.0025210278, 0.05910142, 0.017334215, -0.02012695, -0.020237008, 0.010833885, -0.007752246, 0.024089057, 0.021695284, -0.043363053, 0.0015528568, -0.03210957, 0.015188075, -0.029990943, 0.0084745055, -0.010606889, 0.008536413, -0.01439015, -0.012581063, -0.016068542, 0.0039208345, 0.012938754, -5.4513355E-4, -0.016192358, -0.009843358, -0.008956011, -0.04828817, 0.031531762, -0.01858613, -0.037364863, -0.004082483, 0.031696852, 0.010710069, -0.009079827, -0.0026878351, 3.8842915E-4, -0.008722137, -0.017746935, -0.0061598374, -0.018393528, 4.2910997E-5, 0.01531189, 0.004952633, 0.011886319, 0.031944484, -0.03477849, 0.01593097, 0.014912928, 0.0042475704, 0.0059569166, 0.012402218, 0.006672297, 0.0034083745, -0.0217228, 0.010579375, -0.019370297, -0.019645443, -0.02074603, 0.019012608, -0.0074633425, -0.009506304, -0.010469316, 0.025932536, 5.997329E-4, -0.008618957, -9.311982E-4, -0.17488298, 0.004502081, 0.02375888, 0.016673865, 0.006871778, -0.0014427983, 0.02223182, 0.023923969, -0.010606889, 0.002226965, 0.027390812, -0.0014943882, -0.015504492, -0.008956011, 0.004663729, -0.009052312, -0.018118382, 0.0017334216, 0.020113192, -0.009705785, 0.022740839, -0.021598982, -0.00368696, 0.013351473, -0.0061598374, 0.0069061713, -0.012175223, 0.029220534, -0.004732516, 0.0012708318, -0.013743556, -0.010751341, 0.038272846, -0.0059225233, 0.0076490664, -0.02816122, 0.0060566575, -0.0035975375, 0.0041512693, 0.038603023, 0.005540758, 0.009451275, -0.0032570441, -0.027762258, 0.020938631, 0.018764976, -6.5519207E-4, 0.008068665, 0.023126043, -0.013317079, 0.04727013, -0.02816122, -0.01905388, 0.01187944, -0.0015803714, 0.010276713, -0.0020395217, 0.0015442584, 0.026001323, -0.004127194, -0.034283224, -0.018792491, -0.0059431596, -0.004911361, -0.007800397, -0.028945388, -0.010510588, 0.012078921, 0.0033980564, 0.010998973, -0.004818499, -0.02125505, 0.012842452, 0.0022355635, 0.027528385, -0.0017368608, -0.031201588, -0.0036044163, 0.02831255, 0.004691244, -0.0030867972, 0.0449589, -0.009609483, -0.006937125, -0.0060704146, 0.022548238, 0.016192358, 0.010166654, -0.023346161, 0.019686716, 0.015793396, 0.0039517884, -0.026042596, 0.01439015, 0.0048700892, 0.011673081, 0.013399623, -0.025602361, -6.023124E-4, -0.0016207835, 0.019287754, -0.0023009107, -0.018297227, -0.0011375579, 0.015752124, 0.0123540675, 0.008825317, -0.0012467565, 0.020003134, -0.0068236277, -0.0034100942, 0.025891265, 0.021736555, 0.017320458, -0.0017084864, -0.009753935, 0.0037351106, -0.028285038, 0.03221963, -0.033925537, 0.013544075, -0.035273753, 2.3688374E-4, 0.037722554, -0.027322024, -0.028587697, -0.061797854, -0.019246481, 0.04096928, 0.022617023, -0.030651296, -0.013578469, -0.0024281659, 0.023346161, -0.013289565, 0.02084233, -0.013495925, -0.007243226, -0.016274903, 0.009451275, 0.018820005, 0.010448679, 0.0048941644, -0.01992059, -0.059266508, -0.008921618, -0.019218966, -0.008660229, -0.00117797, -0.018668674, -0.013090084, -0.0032484457, -0.018916307, 0.02872527, 0.018792491, -0.0074633425, 0.024130328, -0.008749652, -0.010228563, -0.005162432, -0.023414947, -0.017292943, -0.025478546, -0.0061323224, 0.03287998, -0.021709042, -0.003769504, 0.010235441, 0.019232724, -0.0027652201, -0.031559277, -0.038547993, -0.008116815, 0.012787423, -0.010785734, -0.045564223, -0.0061735944, -0.014761598, -0.008894104, -0.017609362, 0.025382243, -0.016907739, -0.0041443906, 0.0048460136, 0.004880407, -0.011260361, 0.0035597049, 0.0113704195, -0.01864116, 0.007869183, -0.0039277133, -0.020085678, 0.014101246, 0.023263618, 0.023525007, 0.011122788, 0.007380799, 0.02355252, -0.008722137, 9.1228186E-4, -0.019108908, 0.0012166625, -0.0013473569, -0.0035769015, 0.029990943, -0.004691244, -0.012532913, -0.012519156, 0.008873467, -0.02345622, -0.0019122666, -0.0043645077, 0.016949011, 0.0052071433, 0.022438178, -0.02836758, 0.00865335, 0.031889454, 0.030101003, 0.027734745, -0.015105531, -0.0014436581, -0.0031968558, -4.9741287E-4, -0.007697217, 0.009361852, -0.0438308, 0.0037660645, -0.08914739, 0.027335782, 0.021089962, 0.0122990385, -0.016357446, 0.010290471, 0.0104142865, 0.0050626914, 0.024543047, -0.019163938, -0.02535473, 0.007091895, -0.009389367, -0.006304289, 0.0074083135, -0.018049596, 0.01198262, 0.004849453, -0.012746152, 0.011783139, 0.017196642, 0.0031401068, -0.023896454, 0.035576414, -0.013585348, -0.0016637751, -0.009382488, 0.008171844, -0.0026603206, 0.014734083, -0.0011814093, -0.008178723, 0.018255955, 0.0205947, -0.012030771, 0.008894104, -0.013207021, -0.01566958, -0.018393528, -0.03447583, -0.0064040297, -0.0061598374, -0.0014470974, 0.0022974713, -0.0024161283, -0.012863088, 0.02842261, 0.0016354007, 0.016893981, 0.025120854, 0.017912023, 6.190791E-4, -0.0135922255, -0.04333554, 2.2745246E-5, -0.015779639, 0.02785856, -0.009375609, 0.01162493, -0.008894104, 0.063063525, 0.012250888, 0.027583415, -0.014046217, 0.010627525, 0.0016147647, -0.027514627, -4.8021623E-4, 0.0059672347, -0.013544075, -0.0183385, -0.019108908, -0.013186385, 0.012594821, 0.020677242, -0.022768354, 0.0029199899, -0.022052974, -0.026303984, 0.021475166, 0.025877507, -0.005444457, -0.025189642, -0.008158087, 0.013014419, -0.0068958537, -0.026207682, 0.011143424, -0.01715537, 0.011865683, -0.049856506, 0.03026609, -0.017127855, -0.006115126, 0.044078432, 0.022039216, -0.010476194, -0.0015666141, 0.016109815, 6.328364E-4, 0.0036525668, 0.009925902, -0.014899171, 0.011748746, 0.006373076, 0.0056301807, -0.023910211, -0.045921914, -0.00189507, -0.0052105826, -0.0100497175, -0.008529535, -0.011487357, 0.013096963, -0.03133916, 0.00804115, -7.536428E-4, -0.0071469243, -0.0240753, 0.014403908, 0.015174317, 0.009251794, -0.0018675553, -0.004794424, 0.011865683, 0.010613767, 0.01172811, -0.0063593183, 0.016825195, -0.02488698, -0.0023868938, 0.020979904, -0.011301633, -0.020498397, -0.010510588, -0.014472694, 0.020360824, 0.014871656, -0.0034496463, 0.092174, 0.009939659, 0.010744462, -0.0029612617, 4.9305996E-5, 0.003477161, 0.0021530197, 0.0039345915, -0.04471127, -0.015600794, 0.0037763827, 0.012594821, -0.009348094, 0.011686838, -0.03651191, -0.010799491, 0.0013464971, -0.013771071, -0.022039216, -0.007862304, 0.027184451, -0.041904777, 0.0031779394, -0.016563805, -0.009451275, 0.0038830019, 0.030843897, 0.027101908, 0.0122990385, -0.04030893, 0.01971423, 0.019851804, -0.029743312, -0.026592888, 0.013021298, -0.019549143, -0.026414042, -0.0027531823, 0.00645218, -3.119041E-4, 0.005155553, 0.03318264, -0.015958484, -0.024089057, 0.012347189, -0.0029922158, -0.020966146, -0.009623241, -0.024474261 ], - "id" : "26587e4a-8946-4ce3-8375-c54566a8a052", - "metadata" : { - "name" : "GlideGear AirSeal Tubeless Inflator" - }, - "text" : "price: 99.99\nname: GlideGear AirSeal Tubeless Inflator\nshortDescription: \ndescription: ## Overview\nThe GlideGear AirSeal is a revolutionary bike accessory that combines the functionality of a floor pump with a tubeless tire inflator. It makes the process of setting up tubeless tires at home or on the go simple and hassle-free. Equipped with innovative features and a sleek design, the AirSeal is the ultimate companion for every cyclist.\n\n## Product Details\n- Dual-function design: The AirSeal functions as a traditional floor pump for daily use and can be switched to a tubeless tire inflator mode.\n- Effortless tubeless setup: When set to \"Inflate\", the AirSeal operates as a regular floor pump, allowing you to easily inflate your tires.\n- Tubeless tire charging: Switching the AirSeal to \"Charge\" mode creates a pressurized chamber, enabling the inflator to seat tubeless tires without the need for an air compressor.\n- Accurate pressure readings: The AirSeal features a clear, easy-to-read digital gauge that provides accurate pressure readings up to a maximum of 120 PSI.\n- Versatile valve compatibility: It is compatible with both Presta and Schrader valves, making it suitable for a wide range of bikes.\n- Convenient storage: The AirSeal includes a built-in storage compartment in the handle, ensuring that all inflation accessories are easily accessible and neatly organized.\n\n## Features\n- Dual-chamber design: The AirSeal's innovative dual-chamber design allows it to function as both a floor pump and a tubeless tire inflator, providing versatility and convenience.\n- Tubeless tire seating: With the \"Charge\" mode, the AirSeal pressurizes the chamber, enabling efficient and effective seating of tubeless tires without the need for additional equipment.\n- Easy-to-read digital gauge: The AirSeal's digital gauge provides clear and accurate pressure readings, ensuring precise tire inflation.\n- Valve compatibility: The AirSeal is compatible with both Presta and Schrader valves, making it suitable for all types of bikes.\n- Integrated storage: The handle of the AirSeal features a built-in storage compartment, allowing for convenient and organized storage of inflation accessories.\n- Sleek and ergonomic design: The AirSeal boasts a sleek and ergonomic design, ensuring a comfortable and effortless pumping experience.\n\n## Specifications\n- Pump type: Floor\n- Valve compatibility: Presta/Schrader\n- Gauge type: Digital\n- Max pressure: 120 PSI\n- Frame mounted: No\ntags: [pump]" - }, - "9bb1a2a1-1f56-4b73-b2bc-de32e5ecc519" : { - "embedding" : [ 0.02919041, 0.007822223, -0.021307655, -0.012900278, -0.017083788, 0.014998759, 0.0029005448, -0.018455872, 0.0033461356, -0.03839144, 0.014205103, 0.008817656, -0.008118162, -0.011339868, -0.008784027, 0.021509431, 0.009766008, -0.006927678, 8.8950037E-4, -0.015402313, 0.0031863956, 0.0059894146, -0.011259158, -0.012368931, -0.009416261, -0.01018974, 0.044175718, -0.013525787, -0.0037194232, -0.020352576, 0.023917302, 0.019088106, -0.014958403, 0.010956492, -0.0020497183, -0.009557505, 0.027078478, 0.0075397347, 0.032472648, 0.009470068, 0.04083967, 0.0012854878, -0.0068234266, -0.0046240566, -0.013687208, 0.038256925, 0.01135332, 0.006685545, 0.004476087, 0.022155117, -0.021294203, 0.027051574, -0.009530601, 0.017514246, -0.002707175, -0.023352327, 0.016774397, 0.0055118757, 0.039037127, 0.0072303433, 0.011326417, 0.009053063, -0.03562037, -0.0010610109, -0.016169066, -0.014702819, 0.00869659, 0.0067090862, -0.007324506, 0.0038976595, 0.023110196, 0.02382314, 0.03874119, 0.010223369, -6.2634953E-4, -0.016155614, 0.013021344, -0.0090059815, 0.0040960736, 0.0014796982, 0.019518564, -0.015509928, -0.006507309, 0.016222874, 0.026567308, 0.0068940483, 0.00561949, -0.0038169487, -0.0023641542, 0.006450139, -0.0061945547, 5.040222E-4, 0.012348754, 0.03276859, 0.0018109488, -0.017998511, -0.01888633, -0.0048527373, -0.01115827, -0.023957659, 9.777779E-4, 0.02620411, -0.014272362, -0.018872878, -0.015738608, -0.024764767, -0.034302093, -0.01343835, 0.028490916, -8.794115E-4, -0.011434032, 0.020366028, 0.010640375, 0.0083333915, 0.008555346, -0.025558423, 0.033118337, -0.007035292, 0.022370346, -0.022007147, 0.02851782, 0.03844525, 0.0048291967, -0.038714286, 0.011400402, 0.032983817, 0.0027508934, -0.024065273, -0.0027542564, -0.015900029, 5.876756E-4, 0.0061777397, 0.0023893763, 0.01880562, -0.029755386, -1.3094489E-4, -0.00670236, 0.01329038, -0.02784523, -0.024791671, 0.0103578875, 0.019895215, -0.023809688, 0.0062080063, 0.007257247, 0.0013594727, -0.005276469, 0.018388612, 0.00716981, -0.0127321305, 0.025558423, 0.010183014, 0.029217314, 0.024576442, 0.014904596, -0.004546709, -0.013801549, 0.01142058, -0.044982824, -0.017272113, -0.016532265, 0.004556798, -0.0030384257, 0.0016705457, 0.013337461, 0.004321391, 0.025249032, -0.026392436, 6.237222E-5, -0.0020329035, -0.022464508, 0.026257917, -0.011084285, 0.02584091, -0.0028400116, 0.038014792, 0.015644446, -0.0093288245, -0.014016777, -0.004704768, 0.03053559, 0.01094304, 0.023029484, 0.019155366, -0.009281743, -0.00862933, -0.008965625, -0.011622356, 0.009133773, -0.00892527, 0.017648764, -8.13834E-4, -0.014729722, -0.0037463268, -0.60134935, -0.008447732, 8.277062E-4, -0.011131366, -0.016882012, 0.014877693, -0.008636056, 0.021751564, -0.00427431, -0.012960811, -0.021859178, 0.017594956, -0.009557505, -0.006826789, -0.049314305, -0.024361214, 0.010774893, -0.016693685, 0.024522634, -0.0117165195, -0.038983323, -0.017083788, -0.014541398, 0.0072370693, 0.006779708, -0.016707137, 0.009752556, -0.008884915, 0.0031073662, 0.026136851, -0.030723915, 0.05725087, -0.010889233, -0.0019135188, 0.03693865, -0.03368331, -0.0029661222, 0.016303584, 0.019720342, 0.019289883, -0.0063727912, -0.015429216, -0.0126985, -0.028275687, -0.020877196, 0.002912315, 0.045870643, -0.017971607, 0.0068099746, -0.049475726, 0.012759034, 9.340595E-4, 0.021926437, -0.0053538173, -0.005289921, -0.027710712, 0.021078974, 0.017420083, 0.014299265, 0.004940174, -3.1296458E-4, 0.019128462, -0.02515487, -5.426961E-4, 6.0154777E-4, 0.018038865, -0.031019855, -0.03562037, 0.023406135, -0.005912067, 0.023392683, 0.025356647, 0.004960352, 0.0147700785, 0.019020848, 0.026338628, 0.031342696, -0.0130751515, 0.0013813319, 0.025249032, 0.0067427154, 0.0037059714, 0.0049670776, -0.02748203, 0.03739601, 0.0019774148, 0.0028400116, -0.01919572, 0.025518067, 0.02068887, 0.023769334, 0.005276469, -0.003534461, -0.024778219, -1.1864909E-4, 0.01522744, -0.010741264, 0.013236573, 0.024670605, -0.041781295, -0.010606745, 0.0057405564, 0.017971607, 3.599408E-5, 0.019007396, 0.017339373, -0.013169314, -0.014608657, 0.02321781, -0.014810434, 0.02867924, -0.013687208, -0.033091433, 0.009140499, -0.01768912, -0.03338737, 0.0019908666, 0.026648019, 0.0147700785, -0.021294203, 0.014998759, -0.009813089, 0.031019855, -0.02128075, -0.018819071, 0.011790504, 0.006053311, 0.0127455825, -0.003931289, -0.0037698674, 0.021065522, 0.0034049873, 0.033360466, -0.014877693, 0.04309957, 0.030643204, 0.016626427, -0.0076406235, 0.012604338, -0.012658145, -0.03225742, 0.0046644122, -0.017635312, -0.034006156, -0.023164002, -0.021226943, -0.013216395, 0.018267546, -0.005962511, -0.021159684, -0.008541894, -0.0156848, -0.016532265, 0.010969944, -0.009873622, -0.019854859, -0.037503622, -0.010754716, -0.011763601, -0.026190657, -0.0010778256, 0.008205599, -0.044041198, 0.0017739563, 0.01672059, 0.008568797, 0.02485893, 0.01560409, 0.008380473, -0.03672342, -0.01955892, -0.012772486, -0.01725866, 0.008972351, 0.0015108055, 0.00705547, -0.012019184, -0.015254343, 0.011097737, -0.009322098, 0.008171969, 0.033871636, -0.049690954, 0.021011714, 0.017312469, 0.0056026755, 0.033979252, 0.010162836, -0.018550035, 0.011205351, -0.016545717, 0.008474635, -0.019612728, -0.00561949, -0.0018580301, -0.004546709, 0.015187084, -8.84456E-4, 9.903889E-4, 0.020137347, 0.023365779, 0.0015595682, 0.022451056, 0.0035075573, 0.013660304, -0.032795493, 0.007270699, 0.0075464607, 0.018684553, 0.025666038, 0.016061451, -0.03405996, -0.009100144, 0.016976174, -0.0010105666, 6.4989016E-4, 0.01612871, 0.05047116, -0.015967289, -0.0031578105, -0.0059423335, 0.007748238, 0.02627137, -0.0033881725, -0.0039548296, 0.014043681, 0.009887074, 0.050820906, -0.015429216, -0.03352189, -0.008104711, 0.022935322, 0.0093422765, -0.008245954, 0.012160429, 0.02582746, 0.03537824, -0.011494565, 0.040516827, -0.0066216495, 0.034382805, 0.053780302, 0.024589894, -0.010068674, 0.018993944, 0.0018445783, 0.017204855, 0.03171935, 0.020944456, 0.009416261, 0.009214484, 0.022935322, -0.0064064204, -0.0060062297, -3.4386167E-4, -0.0041801473, 0.016411198, 0.01612871, 0.003117455, 0.008568797, 0.014716271, 0.024737863, -3.9409575E-4, 0.014137844, 0.008898367, -0.02216857, -0.008340117, -0.009866896, -0.015281247, -0.01619597, 0.011817408, -0.01018974, 0.001066896, 0.0037833191, 0.0086764125, -0.0013661986, 0.012086444, -0.015388861, 0.029244216, 0.0358625, -0.022060955, -0.038768094, 0.014151296, 0.021818822, -0.019397497, 0.02203405, 6.0827367E-4, 0.024482278, -0.0040557184, 0.027186092, 0.0037227862, 0.029701577, -0.01560409, 0.006352613, -0.019908667, 0.017675668, 0.026083043, 0.0010408332, 0.008763849, -0.011756875, 1.4933602E-4, -0.0061811027, -0.014918048, -0.0045231683, 0.030051325, -0.020500546, -0.0060264072, -0.022962226, 0.028867567, -0.0045366203, -0.010223369, -0.048561003, -0.016545717, 0.0070083886, -0.006164288, -0.004465998, -0.004136429, -0.009375906, 0.019518564, -0.03276859, -0.001797497, -0.007902933, -0.03427519, -0.0059389705, 0.0358625, 0.019007396, -0.0025524793, 0.005905341, -0.028437108, -0.0061441106, -0.014837338, -0.002448228, 0.009194306, 0.039709717, 0.0022498139, 0.012685049, -0.0090127075, -0.020164251, -0.011965377, -0.009510424, -6.9066597E-4, -0.017433535, 0.0068570557, -5.031815E-4, 0.0120528145, -0.023728978, -0.003357906, 0.02231654, 0.03823002, -0.0016739086, 0.013936066, 0.019585824, 0.0017739563, -0.008118162, 0.008871463, -0.011555098, 0.033279758, -0.0051083216, -0.020554353, 0.007795319, 0.020029733, -0.021859178, 0.011629082, -0.007828949, 0.017716022, 0.027899036, -0.00421714, 0.011750149, 0.020392932, 0.0049637146, 0.009557505, 0.0108287, 0.0096852975, -0.028087363, 0.039924946, -0.010559664, -0.01837516, 0.0059389705, 0.008595701, 0.018348258, -0.019626178, -0.018724907, -0.015630994, -0.03675032, 0.0061811027, -0.026109947, 0.022948774, -0.014460687, -0.005226025, -0.004270947, -0.009449891, 0.020029733, -0.005821267, -0.016438102, -0.043476224, -0.021455623, -0.03142341, 0.017245209, -0.0028265598, 0.0033125062, 0.027576193, -0.023311973, 0.013357639, 0.0120662665, -0.026674923, 0.024361214, -0.0123958355, -0.004469361, 0.0043348433, 0.009913978, 0.064568646, -0.008427554, 0.032903105, -0.013357639, 0.01768912, -0.011992281, 0.0179178, -0.006631738, -0.008858011, -0.016411198, 0.0037093344, 0.035216816, 0.0066754567, -0.011259158, -0.0014174836, -0.018859426, 0.0019942296, 0.021146232, -0.0050545144, -0.001733601, 0.023190906, 0.012254591, -0.010344435, -0.02643279, -0.023123646, -0.013727563, -0.00843428, 0.012046088, -0.048722427, 0.025746748, 0.028490916, -0.0013628356, -0.009194306, -0.013135685, 0.0016957677, -0.032526456, 0.024616797, 6.339162E-4, -0.018819071, 0.028733049, 5.6276873E-5, -0.006019681, -0.0066182865, 0.01317604, 0.04651633, 0.042373177, -0.004993981, -0.0029678037, -0.01396297, -0.025746748, -0.022047503, 0.015590638, 0.019007396, -0.003796771, -0.005575772, 0.022356894, 0.01642465, 0.035136107, -0.022679737, -0.023392683, -0.022047503, 0.007788593, -0.016249776, 0.037530527, -0.007109277, -0.0055858605, -0.005565683, -0.03672342, -0.033145238, -0.013498883, -0.004751849, -0.021253847, 0.009214484, 0.020581257, 0.02643279, 0.007533009, 0.015254343, -0.0019505112, -0.0043751984, -0.0093288245, -0.015953837, 0.001102207, -0.0190343, 0.010996847, 0.030347265, 0.008414102, -0.014837338, -0.025249032, 4.1427347E-4, 0.019384047, -0.017151047, -0.027293706, -0.012725404, -0.047673184, 0.0040523554, -0.019128462, -0.0062618135, -0.030858433, -0.035216816, -0.010869056, 0.033360466, 0.008528442, 0.019505112, -0.0033881725, -0.0044996277, -0.018106125, 0.041727487, 0.018993944, 0.017379727, 0.02164395, -0.01702998, -0.024226695, -0.016734041, 0.0040389034, -0.018792167, 0.010579842, -0.0017125825, -0.045144245, -2.0976404E-4, -0.0048527373, -0.0065342127, -0.0049805297, -6.5262255E-5, -0.021455623, 0.011003573, -0.030293457, -0.01501221, -0.046032064, -0.0018059043, 0.0059255185, -0.007378313, 0.020043185, -0.021738112, -0.01179723, 0.032983817, 0.011810682, 0.023325425, -0.00940281, 0.011151544, 0.00670236, 0.00884456, -0.018159932, -0.018146481, -2.5894717E-4, -0.011750149, 0.015509928, 0.016142162, -0.0053134616, 0.01112464, 0.011803956, -0.014850789, -8.6595974E-4, -0.018993944, 0.018913234, 0.017756378, 0.029217314, -0.01919572, -0.017420083, -0.011548372, 0.0065510273, 1.7613453E-4, 0.010431872, 0.003245247, -0.01343835, 0.0035580015, 0.01030408, -0.015240891, 0.001054285, 0.007176536, -0.006655279, 0.00963149, -0.020339124, -0.020177703, 5.6371454E-4, -0.0107009085, 0.05168182, 0.0059860516, 0.015415764, 0.0395752, -0.0060734884, -0.0061811027, -0.021105876, -0.0028198338, 0.024778219, -0.030562494, 0.0124025615, -0.005901978, -0.0037396008, -0.022424154, 0.014460687, -0.021388365, -0.010781619, -0.007311054, -0.014299265, -0.008972351, -0.015792415, -0.010909411, -0.021738112, -0.019384047, -0.025356647, -0.03166554, -0.023903852, 0.01793125, -0.020285318, 0.015133277, -0.022437606, 0.027818326, 0.039763525, 0.0073917652, -0.015953837, -0.0022027325, 0.014662464, -0.012261317, 0.0062248213, 0.024024919, 0.007600268, 0.0021203402, 0.021442171, -0.0035781793, -0.0070890994, 0.004687953, 0.0011862807, -0.011232254, -0.031907674, 0.01191157, -0.0072303433, -0.0014090763, -0.0017806822, 0.0117299715, -0.0045702495, 0.024966544, -0.0052596545, -0.034328997, 0.008427554, -0.025262484, 0.014689367, 0.004748486, -0.0026701826, 0.016330488, 0.0061306586, -0.021119328, 0.00442228, -0.0024230059, -0.01746044, 0.0031998474, 0.008420828, -4.905704E-4, -0.0022430879, -0.030831529, -0.026284821, -0.0072976025, 0.021078974, -0.021549786, 0.023258165, 0.0013611541, -0.013330735, -0.004883004, 0.045036633, -0.030643204, -0.016828204, 0.014272362, 0.0019606, -0.033414274, -0.026486598, 0.009086692, 0.035351336, 0.012160429, -0.02889447, -0.010250273, -0.022800803, -0.038310733, -0.024603345, -0.005098233, 0.016760945, 0.009981236, 0.010922863, -0.010990122, 0.019168817, 0.038203117, 0.031235084, -0.014527946, 2.492787E-4, -0.0055387793, 0.0077751414, 0.009947607, -0.011400402, -0.041404646, -0.02120004, 0.017783282, 0.018509679, 0.0037530526, -0.01279939, -0.020917552, -0.014178199, 0.0062719025, -0.027118832, 0.018711457, 0.009261565, -0.0035983569, -0.028464012, -0.0070823734, 0.0019084744, 0.015765512, -0.0020799849, -0.00854862, -0.034813263, -0.024536086, 0.018428968, -0.0050141593, -0.0054008984, -0.019330239, -0.011750149, 0.020863743, 0.004661049, -0.016397746, 0.03605083, 0.005098233, -0.017312469, 0.0036387125, 0.011891393, -0.010391517, -0.0034049873, 0.015805867, -0.021832274, 0.005683386, -0.008952174, 0.010795071, -0.0072236173, -0.017366275, 0.009147225, -0.0110506555, -0.035351336, 0.012227688, 0.008945448, -0.0197876, -0.032795493, 0.013909163, -0.013949518, 0.018011963, 0.00547152, 0.005363906, -0.034302093, 0.007667527, -0.013828452, -0.02180537, -0.013485431, 0.016774397, 0.004681227, 0.016572619, 0.0017470528, 0.19876382, 0.008710042, -0.0020530813, 0.021791918, -0.0029879815, -0.0025138054, 0.033925444, 0.009073241, 0.007889481, 0.004950263, -2.1648993E-4, 0.026136851, -0.006577931, 0.0011030477, 0.022047503, -0.015092921, -0.048507195, 0.014420331, -0.011070833, -0.0014889463, -0.006167651, 0.012241139, -0.017810185, -0.035136107, 0.009618038, 0.0023540652, -0.014608657, -0.02351375, 0.004903182, 0.012637967, -0.007129455, -0.010586568, 0.004613968, 0.012368931, -0.012826293, -0.0020984812, 0.016397746, -0.0029980703, -0.015994193, 0.014877693, 0.007371587, -0.032311227, 0.0060062297, -0.022773901, -2.3561671E-4, 0.0039144745, -0.018052317, 8.4830425E-4, -0.033468083, -0.0023792875, -0.01627668, 0.005770823, 0.0049637146, 0.051762532, -0.003591631, -0.02097136, 0.014541398, -0.007452298, 0.016626427, -0.0017386454, -0.02978229, 0.023446491, 5.578294E-4, 0.008723494, 0.0074388464, 0.024374664, -0.009510424, -0.02674218, 0.012967537, -0.010674004, -0.019128462, -0.014675915, 0.0026315087, 0.009624764, -0.023876948, -0.026042689, 0.019814504, 0.006355976, 0.015563735, 0.012846471, -0.0058818003, -0.014137844, 0.014137844, 0.012167155, -0.009261565, -0.029836096, 0.022195473, -0.013149136, 0.014070584, -0.024092177, -0.01258416, 0.0019942296, -0.010902685, 0.013619949, -0.007950014, 0.012543805, -0.024603345, 0.004755212, -0.018092673, -0.007788593, -0.032311227, 0.027280254, -0.011292787, -0.01056639, -0.03045488, -0.012907004, -0.016209422, 0.009295195, 0.012375657, -0.035351336, 0.0024045096, -0.030562494, -1.7308685E-4, -0.0050377, 0.027522387, -0.009981236, 0.008972351, -0.0068940483, 0.019599276, -0.028786855, 0.011064107, -0.026446242, 0.009147225, -0.0012123436, 0.020635065, -0.018025415, -0.0250069, -0.0011736697, -0.023042936, -0.031557925, -0.002816471, 0.0061205695, 0.012120074, 0.020500546, -0.012180607, 0.0037564156, -0.023392683, 7.2261394E-4, -0.0013275247, -7.5666385E-6, 0.01068073, -0.0053269137, 0.019020848, -0.012234414, 0.038579766, -0.014326169, 0.00761372, 9.710519E-4, -0.017352825, -0.010936315, -0.02157669, 0.0036252607, 0.0044861757, 0.014568301, 0.011225528, 0.010674004, -0.017191403, -0.026298271, -0.018348258, 0.009752556, -0.030266553, -0.034678746, 0.017446987, 0.007189988, -0.025289387, 0.0032284325, -0.16960032, -0.007519557, 0.02075613, -0.005969237, 0.007707882, -0.0011770326, 0.02666147, 0.00705547, -0.03306453, 0.002572657, 0.030158939, -0.026984314, -0.045144245, -0.0014872649, -0.006722538, -0.002607968, -0.019814504, 0.007331232, -0.008972351, 0.012099896, -0.014124392, -0.021993695, -0.0017319195, -0.013579594, -0.0049065445, 0.017285565, 0.004802293, 0.01717795, -0.0010299035, -0.012705226, -0.015160181, -0.050901618, 0.044390947, 0.002806382, -0.0051116846, -0.0052024843, -0.01746044, 0.012785938, -0.028275687, 0.038364537, 0.016317036, 0.011951926, 0.008279584, 0.016222874, 0.011568549, 0.024441924, -0.008185421, 0.0018109488, -0.004809019, -0.02068887, 0.029755386, -0.027737616, 0.028975181, -0.013485431, 0.01627668, 0.00930192, -0.0013376136, 0.0089589, 0.01746044, -0.025262484, -0.025692942, -0.008293035, 0.002611331, -0.015066018, 0.0063458877, -0.027387869, -0.011541646, 0.028410206, -0.030643204, 0.0052125733, 0.0076338975, -0.0034503872, 0.0059322445, 0.010512583, 0.040274695, 0.02203405, -0.032445747, -0.013909163, 0.035512757, -0.011898119, -0.0049267225, 0.05547523, -0.0055118757, 0.0028988633, -0.010223369, -0.0018445783, -0.0079903705, -0.0031107292, 0.014823886, -0.007660801, -0.010660552, -0.017137595, -0.013202943, -0.016370842, -0.0076944306, -0.002470087, -0.0015082833, -0.013734289, 0.009651667, -0.010297354, 9.3574094E-4, -0.009954333, -0.019666534, 0.020890648, 0.036992453, -0.019774148, 0.025746748, 0.017245209, 0.008010548, 0.006500583, -0.017325921, 0.0079903705, 0.013243299, 0.03828383, -0.019330239, 0.011777053, -0.03322595, -0.032069094, -0.0037631416, 0.016559169, 0.025652586, -0.01433962, 0.0013207988, -0.0010719404, -0.0073917652, -0.008293035, -0.061609253, 0.0020833479, 0.022208925, 0.022060955, -0.009544053, 0.0028635522, -0.009436439, 0.053134616, -0.008864737, 0.02800665, -0.01530815, -0.022235828, 0.0043886504, 0.018106125, 0.019088106, 0.004025452, 0.005811178, -0.023123646, -0.02068887, 0.015335054, -0.013048247, -0.033091433, -0.0027559379, 0.0013174359, -0.040220886, 0.0037799564, -0.032660976, 0.027495483, 0.022908418, 0.0028467376, 0.012658145, -0.029082796, -0.0014174836, 0.0117165195, -0.020702323, -0.03570108, -0.008965625, 0.0036050829, 0.021549786, -0.027603097, 9.432025E-5, 0.012436191, -0.011655986, -0.024226695, -0.017904349, -0.022639383, 0.007263973, 0.040032562, 0.0024230059, -0.014985307, 0.0045803385, -0.029459445, 0.0043785614, -0.0030367442, 0.010546212, -0.0123958355, 0.001018974, -0.010613471, -0.018913234, 0.008878189, 0.006648553, 5.2882393E-4, -0.0022834432, 6.59979E-4, 0.026365532, -0.0038875707, -0.015536831, 0.012718678, 0.02405182, -0.0030417887, -0.0026449605, 0.011474387, -0.009961059, 0.014796982, -0.028383302, 0.006772982, -0.0052092103, -0.030589396, 0.02754929, 0.002059807, -0.02800665, -0.021119328, 0.028759953, -0.03217671, 0.014447235, 0.032795493, 0.013054973, -0.013909163, 0.016707137, -0.04643562, 0.0086764125, 0.00862933, 0.05994123, 0.017810185, -0.026298271, -0.0038640301, 0.0011240662, -0.0020076814, -0.008198873, 0.006715812, -0.05232751, -0.003853941, -0.08953519, 0.03621225, 0.01425891, -0.027656903, -0.011218803, -0.011925022, 0.029217314, -0.024845477, 0.010109029, 0.01844242, 0.006722538, 9.609631E-4, -0.0027374416, -0.006840241, -0.010741264, 0.0061979177, 0.014151296, -0.012604338, 0.014998759, 0.034167577, 0.02224928, 0.011111188, -0.018684553, 0.01317604, -0.020298768, 0.029217314, -0.00716981, 0.0011526513, 0.014070584, 0.010552938, 0.024993448, -0.029863, 0.018509679, 0.045359474, -0.0021909622, -0.026378984, 0.027630001, -0.007459024, -0.0086562345, -0.029970614, -0.02255867, -0.01291373, -0.006830152, -0.009786186, -0.008481361, -0.0086696865, 0.015926933, -6.751123E-4, 0.025854362, 0.02889447, 0.005760734, -0.001003, -0.011454209, -0.022141665, 0.0076406235, -0.018482776, 0.025114514, 0.0059894146, 0.01672059, 0.0079836445, 0.044821404, -0.014272362, 0.0053100986, -0.020661967, 0.0057338304, -0.020433286, -0.029701577, 0.013895711, -0.009261565, -0.008279584, -0.012920455, -0.0023860133, 0.00761372, 0.024684057, -0.023486845, 0.019733792, 0.024159435, -0.00892527, -0.035109203, 0.012812841, 0.0072908765, -0.0044996277, 0.006772982, 0.00283833, 0.0074993796, -0.0013830133, -0.024832025, 0.008017274, -0.010478954, 0.008622604, -0.039144743, 0.02792594, -0.007459024, -0.011972103, 0.012382383, 0.020998262, -0.002841693, 0.0096718455, 0.033871636, 0.030562494, -0.010035044, -0.0046274196, -0.01754115, -0.0036151716, 0.012274769, 0.020298768, -0.0072303433, -0.016747493, 0.0058515337, 0.016559169, 3.974587E-4, -0.01074799, -0.0059255185, 0.011851037, -0.018859426, 0.001989185, 0.0016882011, -0.022087859, -0.048507195, 0.038687382, 0.007936563, 0.011017025, -0.010633649, -0.015725156, 0.0336026, -0.00910687, 4.071272E-4, -0.01747389, 0.013223121, -0.018913234, 0.0124025615, -7.987007E-4, 0.0060768514, -0.010936315, -0.021939889, 0.0011820771, 0.0010694183, 0.005286558, 0.005330276, 0.104547404, 0.016317036, -0.024038369, 0.005558957, -0.010660552, 0.024132533, 0.00705547, -0.014379976, -0.009362454, -0.025450809, -0.002834967, -0.020769581, -0.03653509, 0.002639916, -0.024657153, 0.02149598, 0.027293706, 0.0257602, -0.018845974, -0.023406135, 0.01919572, -0.008777301, 0.0018143117, -0.013922615, -0.011568549, 0.0021489253, 0.037584335, 0.016236324, 0.011400402, -0.037907176, 0.0075599127, 0.0083132135, -0.013619949, -0.012113348, 0.005078055, -0.008945448, -0.016882012, -0.02725335, 0.018092673, -0.026715279, -0.0013317284, 0.01776983, -0.018926686, -0.0049233595, 0.030374167, -0.0065274867, -0.001031585, -0.024105629, -0.07150978 ], - "id" : "9bb1a2a1-1f56-4b73-b2bc-de32e5ecc519", - "metadata" : { - "name" : "AgileEon 9X" - }, - "text" : "- Size: L, XL: AgileEon alloy, 175mm length\nChainring: AgileEon 46T narrow/wide alloy, with alloy guard\nCassette:\n- Size: M, L, XL: Shimano Deore M4100, 11-42, 10-speed\nChain:\n- Size: M, L, XL: KMC E10\nPedal:\n- Size: M, L, XL: AgileEon City pedals\nMax chainring size: 1x: 48T\n\nComponents\nSaddle: AgileEon Commuter Comp\nSeatpost: AgileEon Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length\nHandlebar:\n- Size: M: AgileEon alloy, 31.8mm, 15mm rise, 600mm width\n- Size: L, XL: AgileEon alloy, 31.8mm, 15mm rise, 660mm width\nGrips: AgileEon Satellite Elite, alloy lock-on\nStem:\n- Size: M: AgileEon alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length\n- Size: L: AgileEon alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length\n- Size: XL: AgileEon alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length\nHeadset:\n- Size: M, L, XL: AgileEon IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom\nBrake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor\nBrake rotor: Shimano RT56, 6-bolt, 180mm\nRotor size: Max brake rotor sizes: 180mm front & rear\n\nAccessories\nBattery: AgileEon PowerTube 625Wh\nCharger: AgileEon standard 4A, 100-240V\nMotor: AgileEon Performance Speed, 85 Nm, 28 mph / 45 kph\nLight:\n- Size: M, L, XL: AgileEon taillight, 50 lumens\n- Size: M, L, XL: AgileEon headlight, 500 lumens\nKickstand:\n- Size: M, L, XL: Rear mount, alloy\n- Size: M, L, XL: Adjustable length alloy kickstand\nCargo rack: AgileEon integrated rear rack, aluminum\nFender: AgileEon custom aluminum\n\nWeight\nWeight: M - 25.54 kg / 56.3 lbs\nWeight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:------------------------:|:--------------------:|\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n| XL | 186 - 197 cm 6'1\" - 6'6\" | 87 - 93 cm 34\" - 37\" |\n\n## Geometry\n| Frame size letter | M | L | XL |\n|---------------------------|-------|-------|-------|\n| Wheel size | 27.5\" | 27." - }, - "d4ec2ea8-54ae-4db0-ab36-4eb5f0c4bb98" : { - "embedding" : [ 0.0034877704, 0.0012737283, -0.013937577, -0.01736795, 0.009102642, 0.016949281, -0.00523672, -0.022378454, 0.0032581785, -0.022040818, -0.011027162, -0.0058073234, -0.022013808, 0.013093488, 0.008285565, -0.015018009, 0.016328033, 0.017975692, -0.009953482, -0.019339738, 0.007718338, 0.01539616, -0.016179474, -0.0106422575, -0.019528814, -0.011634905, 0.035411168, 6.507916E-4, -0.011864497, -0.019717889, -0.0027787366, 0.005020634, -0.01264781, -0.00954832, -0.027348442, -0.026808226, 0.008974341, -0.028658466, 0.01757053, -0.007860145, 0.022324432, 0.009170169, -0.0018401112, 0.002471489, -0.021662667, -0.0073874556, 0.023418369, 0.004628977, 0.01247224, 0.020852342, -0.004109019, 0.013161016, -0.017259905, -0.005435925, 0.0010137494, -0.031251505, -0.017138356, 0.014045619, 0.019933976, -0.0114188185, -0.032250904, 0.008407114, -0.038625453, -0.0014214438, 0.004581708, -0.0018401112, -0.026646161, 0.021379054, 9.33561E-4, -0.010635505, 0.0077723595, 0.04051621, 0.02127101, 0.023688478, 0.007292918, -0.022162367, 0.007657564, 0.014828933, -0.004942978, 0.0075292625, 0.021986797, -0.008238296, -0.025430674, 0.015625753, 0.020285117, -0.0015438364, 0.020784816, 0.008474641, -0.019366749, -0.0018721865, 0.022175873, 0.011439077, 0.0063779266, 0.03751801, 0.032683074, 0.019191178, -0.013870049, 0.008555673, 0.01572029, -0.0145318145, 0.004669493, -0.015099041, -0.00769808, -0.017908165, -0.024512308, -0.014558825, 0.026754204, -0.013626952, -8.453538E-4, -0.006415067, 0.0036971043, 0.023310326, 0.012526262, -0.0010458247, 0.029981995, 0.0063677975, 0.025133556, -0.0017962187, -0.00997374, -0.013086736, 0.009480793, 0.037004806, 0.03338536, 0.0020274988, 0.024714889, -0.0020950257, -0.0038119, -0.010892108, 0.028280314, 0.009568579, 0.0026538118, 0.02981993, 0.028577434, -0.009386255, -0.016881755, 0.0026403065, -0.0058073234, 0.025012007, -0.026659666, -0.0055507207, -0.012850392, 0.01821879, -0.034654867, -0.021865249, -0.0050949133, 0.035276115, 0.012620799, 0.010291117, 0.013687726, 0.013093488, -3.551499E-4, -0.011337786, -0.010507204, 0.011209485, -0.024363747, 0.011769959, -0.016800722, 0.036086436, 0.0018772511, 0.013843038, -0.00919718, 0.0040752557, 0.026389558, -0.0067965942, 0.019326232, 0.016192978, 0.031278513, -0.006107819, -0.009541567, -0.00477416, -0.023175273, 0.010365397, -0.034357745, 0.011020409, 0.01856993, 0.023161767, 0.024323232, -0.013566177, 0.0098656975, -0.008960836, 0.02294568, 0.005783689, 0.0010019321, 0.03222389, -0.0063205287, -0.008258554, 0.010311375, -0.01147284, 0.0123574445, -0.030603245, 0.0192452, -0.003977341, -0.009649611, -0.01636855, -0.6110925, -0.031305525, -0.017408464, -0.0040549976, -0.017759606, 0.01557173, -0.008238296, 0.0028952209, -0.0049598594, 0.013383855, -0.0132488, 0.030414168, -0.030252103, -0.0080019515, -0.027348442, -0.020825332, 0.010345139, -0.004628977, 0.034276713, -0.0067290673, -0.018704984, 0.014747901, -0.014140157, 0.013262306, 0.01104742, 0.029063629, 0.02206783, 0.011000151, -0.0121953795, -0.0033442755, -0.021433076, 0.046728697, -0.013491898, -0.005939001, 0.035411168, -0.014018609, -0.0012787929, 0.019663867, 0.008805523, 0.037653066, -0.009278212, -0.013255553, 0.0040448685, 0.0028985972, 0.020555224, 0.0033864798, 0.04321729, -0.011959035, 0.00887305, -0.020703783, 0.008636706, -0.01019658, 0.029738897, 0.023958586, 0.01287065, -0.006853992, 0.020879354, -0.0033932326, 0.007157864, 2.7749385E-4, -6.014125E-4, 0.0014172232, -0.001895821, -0.032575034, -0.022810627, 0.0065670023, -0.044729896, -0.019717889, -0.0068573686, -0.007488746, -0.013883554, -0.0047403965, -0.016787216, 0.023323832, -0.0029374252, 0.023134757, 0.015598741, 0.020730793, 0.03084634, 0.030657265, 0.014261706, 0.013404113, 0.01489646, -0.0090958895, 0.02376951, 0.020447182, 0.009791417, -0.003388168, 0.022621552, 0.033601444, 0.010162816, 0.03076531, -0.012755853, -0.01607143, -0.014167168, 0.02539016, 0.0015640946, -0.017678574, 0.0022013807, -0.01859694, -0.01809724, -0.025106546, 0.006536615, -0.013208285, 0.014612846, 0.014747901, -0.026362548, -0.033412367, 0.033304326, -0.03152161, 9.149911E-4, -0.0059828935, -0.04489196, -0.028199282, 0.0010897173, -0.018043218, 0.026511107, 0.028685477, 0.012215638, -0.0033020712, -0.0013691103, -0.020676773, -0.009696879, 0.0022199508, -0.029279714, 0.015409665, 0.026700182, 0.010304622, -0.008744748, -0.0038152765, 0.027537517, -0.0015235783, 0.032196883, -0.013066478, 0.010986646, 0.025457686, 0.019650362, 0.013701232, 0.013127252, -0.039651863, -0.007650811, 0.0064522065, 0.014626352, -0.0051320535, -0.028199282, -0.010851592, -0.007137606, -0.008245049, -0.008062726, 0.0036025664, -0.013991598, -0.03778812, -0.03451981, 0.013606694, -0.023647962, -0.02714586, -0.009149911, -0.026308525, -0.021811226, -0.016436076, 0.025660267, -0.011033915, -0.029063629, 0.004764031, -0.012789617, 0.0029627478, 0.0038557926, -6.9046376E-4, -2.270596E-4, -0.057965193, -0.0027635433, -0.012154863, -0.006030163, 0.012735595, -0.004473665, 0.019785415, -0.009413267, -0.016949281, -0.010466687, -0.008265307, 0.016463086, 0.036545623, -0.018137757, 0.028874552, 0.028307326, -0.005283989, 0.03141357, 0.021716688, 0.0032362323, 0.041677676, 0.0012568466, 0.004696504, 0.003761255, -0.005138806, -0.0264976, -0.022229893, 0.014923471, -0.003666717, -0.0037477494, -0.020177072, 0.009190427, 0.002059574, 0.019407265, -0.015666269, 0.0031771462, -0.014126652, 0.011736196, -3.5303968E-4, 0.031386558, 0.028604444, -0.003568803, -0.016962787, -0.0247419, -0.016030913, -0.012418219, -0.008440877, 0.0030522211, 0.029954985, -0.0032261033, -0.010142558, 0.010743548, -0.006283389, 0.017597541, -0.0022824132, -0.019002102, 0.015760805, -0.006556873, 0.008555673, 0.0018637456, -0.026673172, 0.012391208, 0.0048180525, 0.011499851, 0.013174521, 0.027037818, 0.027388958, 0.012080584, -0.008380103, 0.022959186, 0.008717738, 0.017840639, 0.022283915, 0.03978692, -0.020636257, -0.020636257, 0.015031514, 0.01707083, 0.0042305677, -0.0035147811, 0.0031484473, -0.021851743, 0.0042575784, 0.01504502, -0.01014931, 0.019434275, 7.0776755E-4, 0.013039467, -0.013991598, -0.011932024, 0.0017979068, 0.0035924374, 0.024485296, 0.024552824, 0.010534215, 0.013613447, -0.008272059, -0.0076710694, -0.034546822, -0.010682774, -0.014288717, -4.52431E-4, 0.017543519, -0.0017573906, -0.0015050084, 0.033088237, 0.009933224, -0.002696016, -0.0026538118, 0.0015725354, 0.024822932, -0.016773712, -0.008710985, 0.006465712, 0.023877554, -0.021406064, 0.0023313703, -7.0228096E-4, 0.016962787, 0.0025153814, 0.041299522, 0.003984094, -0.01659814, 0.007110595, -0.0135999415, -0.011769959, -0.031278513, 0.006786465, -0.0048248055, -0.0062428727, -0.0068810033, -0.039732896, 0.002917167, -0.025970891, -0.0063644215, 0.023337336, -0.008245049, -0.005665517, -0.005766807, 0.0011775023, -0.0038321582, 0.033250302, -0.041002404, -0.010534215, -0.017273411, 0.022148862, -7.622112E-4, 0.021000903, -0.009852191, 0.0017675196, -0.010588236, -0.012249401, 0.0026825108, -0.018380854, 0.017692078, 0.06282714, 0.028253304, 0.017543519, 0.0394898, -0.025727794, -0.013653963, -0.029603845, -0.016841238, -0.0037409968, 0.03408764, 6.900417E-4, 0.008569178, -0.0045175576, -0.008231543, 0.024282716, -0.001867122, 9.5044274E-4, -0.0066277767, 0.016665667, -0.013161016, 7.6389936E-4, -0.0022148862, 0.013924071, 0.022554023, 0.015315128, -0.0015286428, 0.048106246, 0.023067228, 0.0038963088, -0.0034877704, -0.013208285, 0.0038726744, 0.004088761, 0.010716538, -0.04456783, 0.003828782, -0.025430674, 4.878827E-4, 0.038328335, -0.0015759118, 0.0044635357, 0.027307926, -0.0013800834, -0.010061526, 0.0018586811, -0.009136406, 0.017962186, 0.01839436, 0.006556873, -0.018367348, 0.040084038, 0.006016657, -5.1995803E-4, 0.006040292, -0.0041427827, 0.02244598, -0.014734395, -0.02027161, -0.01739496, -0.03287215, -0.003916567, -0.021932775, 0.0024124028, 0.0028563929, -0.029630855, 0.005388656, 0.011607895, 0.0025575857, -0.0052772365, -0.008272059, -0.019353243, -0.026105944, -0.038652465, 0.013734995, 0.007259154, 0.0018350467, 0.0125060035, 0.013390607, 0.052130856, 0.014045619, 0.016989797, -0.01247224, -0.012938176, -0.02139256, -0.0068674977, 0.004206933, 0.012094089, 0.03408764, 0.004473665, -0.0037983947, 0.011790217, -0.01054772, 0.015760805, -0.0028834036, 0.01264781, 0.014315728, 0.035033017, -0.009460535, -0.019366749, 0.0092512015, 0.00606055, -0.013329833, 0.013978093, -0.0031096193, 0.004281213, 0.005861345, 0.0011184162, -0.0036802224, 0.0067155617, 0.012836886, 0.018043218, -9.394696E-4, -0.0032159742, 0.006995799, -0.01539616, -0.0056823986, -0.013559425, -0.0038254056, -0.0132825645, -0.028307326, 0.008393608, -0.044081636, 0.024633856, -0.0017624551, -0.013626952, 0.02441777, 0.0050949133, -0.00954832, -0.020906365, 0.02141957, 0.016760206, 0.028037218, 0.0044196434, 0.026929775, -0.03451981, -0.03446579, -0.025538718, -0.012283164, 0.012641057, -0.03819328, -0.040678274, 0.025430674, 0.0024461662, 0.012208885, 0.0033206411, -0.022999702, -0.009393008, -0.004139406, -0.0076238, 0.028955584, -0.001597858, 0.013350091, -0.021905765, -0.012796369, -0.021108946, -0.012343938, 0.007981693, -0.024660867, -0.003977341, 0.014801922, 0.013566177, 0.0062091094, -0.0115808835, 0.024606844, -0.0043352344, 0.012215638, -0.0192452, -0.0011715938, -0.025282115, 0.042298924, 0.0327371, 0.0055068284, -0.019164167, -0.037626054, -0.014518308, 0.0043757507, 0.003329082, 0.0013589812, -0.028091239, -0.030360147, 0.005040892, -0.031683676, 0.0062023564, -0.0032497377, -0.037436977, -0.023877554, 0.034114648, -0.03111645, 0.004689751, -0.028820531, -0.005952507, -0.023823531, 0.035330135, 0.008420619, 0.03946279, 7.1916275E-4, -0.015234095, -0.04246099, -0.029198682, 0.0066041425, -0.009784665, -0.023148261, 7.824693E-4, -0.0058714743, -0.0021996927, 0.0062023564, -0.010399161, -0.01692227, 0.024309726, -0.016328033, -0.028712487, -0.047998205, -0.0059153666, -0.04610745, 0.0139105655, -0.0038828035, 0.01214811, 0.017084336, -0.02209484, 0.00263693, 0.02141957, 0.01942077, 0.023499401, 0.0022976068, 0.023796521, 0.01739496, -0.013924071, -0.025241598, -0.035033017, -0.008677222, -1.3041156E-4, 0.007900661, 0.017530013, -0.0022115097, -0.0015438364, 0.011628153, 7.938645E-4, 0.0015083847, -0.018205283, -0.005861345, 0.020852342, 0.007333434, -0.0101830745, -0.028901564, 0.0015936376, 0.007400961, -0.018610446, -0.013228543, -0.027456485, 0.008447629, 0.0032851894, 0.02344538, -0.022459486, -6.824449E-4, 0.014356243, -0.017219389, 0.004888956, -0.022635056, -0.03811225, -0.0017286916, 0.017759606, 0.032602046, 1.8496072E-4, 0.015976893, 0.039543822, -0.00534814, -0.023067228, -0.01557173, 5.1742577E-4, 0.026200483, -0.012316928, 0.0070565734, -0.019758405, -0.021514108, -0.015436676, -0.028955584, -0.002579532, 0.015585235, 0.013255553, 0.0058478396, 0.011378302, -0.022621552, -0.04818728, -0.013545919, -0.012627552, -0.004963236, -0.0059221196, -0.02576831, 0.009737396, -0.034384757, -2.2389427E-4, -0.018178273, -8.065258E-4, -0.005469688, 0.006864121, -0.01522059, -0.005044268, 0.04119148, -0.031683676, 0.0019971116, -0.005830958, 0.011850991, -0.030198082, 0.00997374, 0.012634305, -0.03708584, -0.011155463, -0.015261106, -0.04013806, -0.022635056, 3.1442268E-4, -0.011364797, -0.0022824132, -0.0018772511, -0.0015413042, 0.027456485, 0.0074954988, -0.030738298, 0.016976291, -0.020960387, -0.009710385, -0.009514556, 0.03611345, -0.03884154, 0.014099641, 0.021878753, 0.012262906, -0.002540704, -0.008447629, -0.040435176, -8.702544E-4, -0.008656964, -0.018691478, -0.019002102, -0.016665667, -0.010068278, -0.019204684, 0.016908765, -0.015099041, 0.006195604, -1.0730465E-4, -0.014018609, -0.010480193, -0.004291342, -0.0043453635, -0.0034185553, 0.023999102, 0.0017692079, -0.021460086, -0.024957985, -0.010216838, 0.04175871, -7.79937E-4, -0.028118249, -0.038301323, 0.0029019737, -0.047079835, -0.003984094, -0.03946279, 0.02464736, 0.012418219, 0.022648562, -0.009487546, 0.006361045, -3.1801005E-4, 0.02394508, -6.820229E-4, -0.009109395, 0.010466687, 0.016733196, -0.0045276866, 0.008251801, -0.05356243, -0.02541717, 0.036356546, 0.03117047, 0.03009004, 0.018731995, -0.019866448, 0.01572029, 0.028955584, 0.008987846, -2.4816178E-4, -0.005756678, -0.002800683, -0.032899164, -0.0182458, -0.015652763, 0.023810027, 0.01844838, -0.01072329, 0.014302222, -0.041083436, -0.011162216, -0.010243849, 0.0025829084, -0.01927221, 0.0023617574, 0.032764107, -9.7492134E-4, -0.030198082, 0.022675572, 0.014086136, -0.04143458, -0.011195979, 0.021243999, -0.0062698834, 7.8668975E-4, 0.01372149, -0.00794793, -0.021176472, -0.013856544, 0.03989496, 0.019501803, -0.0028547046, -0.016638657, -0.019164167, -0.020366149, 0.03778812, 0.007657564, -0.010878602, -0.022878153, -0.012580283, -0.022783615, 0.0047606546, 0.006094313, -0.015666269, -0.02429622, -0.0017945304, -0.018056724, -0.03279112, -0.041704684, 0.01304622, -0.0018975092, -0.0059322487, 0.010966388, 0.18756305, -0.01539616, -0.006742573, 0.042325933, -0.009440277, 0.0060774316, -0.019231694, -0.009129653, -0.008359845, -0.004676246, 0.00794793, 0.01589586, -0.00409889, -0.0029880705, -0.001010373, -0.0036025664, -0.034006607, -0.022932176, -0.015315128, 1.04244835E-4, 0.0031450707, 6.917299E-4, 0.010304622, 0.001087185, 0.028604444, -0.0060470444, -0.007400961, 0.0055878605, 0.025336137, -0.0013809275, -0.011668668, 0.009906214, -0.010000751, -0.01489646, -0.036032416, 0.010817829, 0.029738897, 0.0074414774, 0.02009604, 0.031980794, -0.008494899, 0.034114648, -0.005304247, -0.015841838, -0.012654563, 0.011162216, -0.01709784, -0.00819778, -0.011567378, 8.837598E-4, 8.356468E-4, 0.009109395, 0.0028361348, 0.016328033, -0.0061348295, -0.027105344, 0.0046627405, -0.013255553, 0.002954307, -0.009501051, 6.512137E-4, 0.0462425, -0.012755853, 0.018299822, -0.024336737, 0.006891132, -0.0074414774, -0.016233495, 0.010466687, 0.0066514113, -0.0059423777, 0.005327882, -0.014936976, 0.014275212, -0.025714288, -0.011587637, 0.039030615, 0.009737396, 0.014747901, 0.01742197, -0.0051658168, -0.0054089143, 0.00834634, -0.008846039, 0.021000903, -0.03489796, 0.01129727, 0.02127101, 0.021216989, 0.008974341, 5.2206824E-4, 0.009966988, -0.008900061, 0.0063779266, 0.011810475, -0.009278212, -0.027226893, 0.0018046595, -0.0014746212, 0.037274912, -0.007941177, 0.05526411, 0.023661466, -0.017638057, -0.029738897, 0.0030842966, 0.005928872, 0.029009607, 0.021338537, -0.015234095, -8.9642114E-4, -0.023107745, 0.01994748, -0.01692227, 0.02547119, -6.875094E-4, -0.011405313, -0.027253903, -0.0058917324, -0.0018721865, 0.017462486, 0.0064994753, 0.0020460687, -0.016003903, 0.0123506915, -0.022175873, -0.03543818, 0.03511405, -0.014869449, -0.03592437, 0.0047842893, 0.03684274, 0.021514108, -0.0033746627, -4.899929E-4, -0.006708809, 0.0050375154, -0.027983196, 0.00694853, -0.021703184, 0.0029559953, 0.002376951, 0.0032277915, 0.013518909, 0.027875153, -0.027456485, 0.028496401, 0.0043858797, 0.004831558, -0.021473592, -0.009467288, 0.017111346, 0.008960836, -0.047268912, 0.011027162, -0.034762908, -0.02544418, -0.0112635065, 0.005591237, -0.012040067, -0.019407265, -0.022864647, 0.017948681, 0.0036228246, -0.014329233, -0.0024140908, -0.17049222, 0.005071279, 0.021203483, 0.025687277, 0.010621999, 0.010054773, 0.015504203, -0.0019768535, -0.01089886, 0.012526262, 0.0257413, -0.0073739504, -0.014140157, -0.0135931885, 0.019879954, -6.74004E-4, -0.030738298, 0.0058275815, 0.024984997, -0.012060326, 0.009588837, -0.028928574, 0.009176922, 0.013626952, 0.0101830745, 0.0062226146, -0.03111645, 0.029657867, -0.005483194, -0.0017455734, -0.0062665073, -0.0055102045, 0.031926773, 0.006121324, 0.020474192, -0.011081183, 0.0116214, 0.0011690615, 0.007326681, 0.060018014, 0.015706785, 0.013120499, 0.0030387158, -0.028496401, 0.012215638, 0.014032114, -0.0034675123, -0.0043554925, 0.0126680685, -0.011283765, 0.043028217, -0.029252704, -0.020555224, -3.4903028E-4, 0.002878339, 0.006323905, -0.026024912, -0.002964436, 0.018286316, -0.012857144, -0.018232295, -0.019312726, -0.0058917324, -2.7248207E-5, 5.3683977E-4, -0.029900962, -0.0026200484, 0.028820531, 0.002657188, 0.020150062, 0.012728843, -0.030981395, 0.018272812, 0.0025474567, 0.025673771, 0.0015674708, -0.019515308, -0.017273411, 0.036356546, 0.0063948086, 0.0043554925, 0.03919268, -0.012107594, -0.0023972092, -0.0062327436, 0.0090891365, 0.004021234, 0.0024681124, -0.011992798, -0.0017590788, 0.009305223, -0.008251801, -0.030738298, 0.020784816, 0.008407114, 0.0015497451, -0.0026605644, -0.028334336, -0.010243849, 0.009615847, 0.02062275, 0.021973291, -0.022378454, 0.021703184, 0.019839438, 0.019299222, 0.0152476, 0.012904413, 0.03211585, -0.023202283, 0.0052130856, 0.026605645, 0.016625151, 0.023904564, -0.0025575857, -0.010500452, 0.010203333, -0.021959785, 0.02277011, -0.022729594, 0.021635657, -0.035978395, -0.007205133, 0.052319933, -0.024431275, -0.02459334, -0.076818734, -0.012519509, 0.038301323, 0.025646761, -0.020163568, -0.007110595, -0.0051793223, 0.024660867, -0.005419043, 0.038382355, -0.0027888657, -0.021298021, -0.010088536, 0.02944178, 0.030927373, 0.014788417, 0.009156664, -0.013113746, -0.037301924, -0.0016957722, -0.0030268985, -0.01739496, -0.014018609, -0.0061044423, -0.009203932, -1.5362396E-4, -0.03989496, 0.027929174, 0.021298021, -0.012107594, 0.014761406, -0.012100842, 0.0037815128, -0.026673172, -0.027929174, -0.005405538, -0.025781816, 0.0033544046, 0.039408766, -0.026295021, -0.012114347, 0.010946129, -0.0028175649, -0.008251801, -0.022756604, -0.03516807, -0.01921819, 0.015733795, 0.0028175649, -0.021541119, -0.0077926177, -3.283501E-4, -0.0029137908, -0.010223591, 0.033223294, -0.031656664, -0.006033539, 0.021487096, -0.0121953795, -0.011661916, -0.0060774316, 0.0092444485, -0.006708809, 0.026186977, 7.584128E-4, -0.0031416945, 0.01197254, 0.0074549825, 0.028388359, 0.004696504, -0.0025896612, 0.025849342, -0.009568579, 0.02027161, -0.027686076, -0.00556085, 0.002684199, 0.003977341, 0.03957083, -0.0072118854, -0.026322031, -0.01589586, 0.022486497, -0.008960836, 0.0116214, 0.0060875607, 0.003957083, 0.0069822934, 0.030333135, -0.04111045, -0.013687726, 0.027686076, 0.025997901, 0.014639857, -0.01956933, -0.01089886, 0.0014205996, -0.0021996927, -0.015490698, 0.015801322, -0.035060026, -0.0012484058, -0.08319329, 0.020676773, 0.012776111, 0.017259905, 2.184077E-4, -0.002733156, 0.023323832, 0.0033273937, 0.01489646, -0.009230943, -0.016328033, 0.019015608, -0.015976893, -0.012458734, 1.1036447E-4, -0.019110145, 0.010378903, 0.004929472, -0.008920319, 0.012843639, 0.009750902, 0.010189827, -0.027821131, 0.03886855, -0.013194779, -0.0033949208, 0.007860145, 0.004284589, 0.008765006, 0.017881155, 0.015355644, -0.008407114, 0.01542317, 0.027132355, -0.0029036617, -0.012533015, -0.031197483, -0.014504803, -0.036383558, -0.052103847, -0.014747901, -0.008494899, -0.010237096, -0.0063981847, -0.011202732, -0.004551321, 0.024998501, 0.014761406, 0.027348442, 0.01621999, -2.756474E-5, -0.0022976068, -0.015018009, -0.03287215, -0.004571579, -4.6044984E-4, 0.023512907, -0.025403664, 0.006080808, -0.01129727, 0.036680676, 0.027713088, 0.011790217, -0.011898261, 0.0068945084, 2.5913492E-4, -0.014504803, 0.004166417, -0.008602942, -0.016976291, -0.013485146, -0.006340787, -0.0020798321, 0.0023634457, 0.007360445, -0.020703783, -0.014410266, 0.019083135, -0.035843343, 0.012485745, 0.021216989, -0.0029239198, -0.034546822, -5.170037E-4, 0.026159966, -0.018434877, -0.02579532, -0.007644058, -8.685663E-4, 0.018056724, -0.042298924, 0.0354922, -0.009068878, -0.009723891, 0.049780916, 0.015382655, -0.011918519, -0.008643459, 0.0125127565, 0.008954083, 0.0011758142, 0.005398785, -0.0012500939, -0.0032936302, 0.0045411917, -0.0072996705, -0.030603245, -0.0354922, 0.009642858, 5.976141E-4, -0.0051455586, -0.004186675, 4.62138E-5, 0.020825332, -3.1363135E-5, 0.016787216, 0.006570379, -0.021176472, -0.0126680685, 0.021622151, 0.012451982, 0.0067290673, 0.0016847991, -0.013613447, 0.011364797, 0.009730644, 0.0014729331, 0.008987846, 0.0047403965, -6.090093E-4, -0.0014324168, 0.023107745, -0.023742499, -0.014504803, -0.0035620502, -0.0091229, -0.011148711, 0.020042019, 0.0053447634, 0.07541417, -0.009129653, -0.015342139, 0.0060571735, 4.840843E-4, 0.012040067, 0.015207084, -0.022486497, -0.04381153, -0.032980196, 7.373106E-4, 0.010662516, -0.017084336, 0.01542317, -0.03713986, -0.008717738, 0.006492723, -0.0071848747, -0.013816028, -0.008798771, 0.029630855, -0.034033615, -0.0034388134, 0.0040583736, -0.027132355, -0.0022705959, 0.046944782, 0.028820531, 0.0067932177, -0.022864647, 0.01604442, 0.0043858797, -0.025835836, -0.024471791, 0.011094689, 0.0075495206, -0.015679773, 0.00569928, -0.009663116, 0.0037680075, 0.009791417, 0.047998205, -0.024822932, -0.0128233805, 0.021500602, -0.023864048, -0.007259154, -0.01489646, -0.043460388 ], - "id" : "d4ec2ea8-54ae-4db0-ab36-4eb5f0c4bb98", - "metadata" : { - "name" : "Zephyr AirCharge Floor Pump" - }, - "text" : "price: 35.99\nname: Zephyr AirCharge Floor Pump\nshortDescription: \ndescription: ## Overview\nMake tubeless setup a breeze with the Zephyr AirCharge Floor Pump. This innovative bike accessory combines the functionality of a floor pump and a tubeless setup tool, allowing you to easily inflate tubeless ready (TLR) tires at home or on the go. With its user-friendly design and accurate pressure readings, the Zephyr AirCharge Floor Pump is a must-have for any cyclist.\n\n## Product Details\n- Dual-chamber design with Inflate setting for traditional floor pump use\n- Charge setting allows for pressurized chamber inflation of tubeless ready tires\n- Backlit digital gauge for easy-to-read pressure measurements up to 160 PSI\n- Compatible with both Presta and Schrader valves\n- Convenient storage for included inflation accessories\n\n## Features\n### Dual-Chamber Design\nThe Zephyr AirCharge Floor Pump features a dual-chamber design that allows it to function as both a traditional floor pump and an air compressor. Switch between the Inflate setting for regular pumping or the Charge setting for pressurized chamber inflation of tubeless tires.\n\n### Tubeless Setup Made Easy\nSay goodbye to the hassle of using a bulky air compressor for tubeless tire setup. The Zephyr AirCharge Floor Pump's Charge setting allows you to store compressed air in the chamber and release it with a simple flip of a lever to seat tubeless tire beads on a rim.\n\n### Accurate Digital Gauge\nNo more guessing the pressure of your tires. The Zephyr AirCharge Floor Pump is equipped with a backlit digital gauge that provides easy-to-read and accurate pressure measurements up to the maximum of 160 PSI. Always ride with confidence knowing your tires are properly inflated.\n\n### Versatile Valve Compatibility\nWhether you ride with Presta or Schrader valves, the Zephyr AirCharge Floor Pump has you covered. Its dual valve compatibility ensures that you can easily inflate your tires regardless of the valve type.\n\n### Convenient Storage\nNever lose track of your inflation accessories again. The Zephyr AirCharge Floor Pump features integrated storage in the handle, keeping all your attachments organized and easily accessible. From basketballs to pool toys, you'll always have the right attachment on hand.\n\n## Specifications\n- Pump Type: Floor\n- Valve Compatibility: Presta/Schrader\n- Gauge Type: Digital\n- Maximum Pressure: 160 PSI\n- Frame Mountable: No\ntags: [pump]" - }, - "4ac57d40-6e27-4b41-9687-96e29db711a5" : { - "embedding" : [ 0.014049519, -0.009442241, -0.020384526, -0.011779363, 0.0021328751, 0.0064120186, 0.0035123797, -0.042563748, 0.008029253, -0.032572385, -0.0011417746, 0.007533703, -0.036402855, -0.017277293, 0.008504714, 0.021603312, 0.0030151554, -0.021536347, 0.007660939, -0.015281699, -0.004232267, 0.0379029, 4.28584E-4, -0.010861926, 0.004875143, -0.0062379064, 0.02299621, 0.0052367607, 0.011685611, -0.02188457, 0.021482773, 0.014759362, -0.028768701, -0.019835403, -0.019259494, -0.009388668, 0.023880165, 0.006535906, 0.02609005, 0.002464358, 0.03482245, 0.014612036, -0.020156842, 0.002591594, -0.025822187, 0.0111900605, -9.885893E-4, 0.0142236315, 0.029331217, 0.022433694, -0.014987047, 0.028313331, 0.0032696272, 0.013386553, 0.00815649, -0.027268657, 0.0069377036, 0.009783769, 0.027670454, 0.0053606485, 0.015174552, 0.02748295, -0.041894086, -0.004349458, -0.020170234, -0.024777513, -0.02839369, 0.007875231, -0.006234558, 0.0057624457, 0.025366815, 0.022634592, 0.020384526, -0.0020859987, 0.013118688, -0.020089876, -0.006432108, 0.006807119, 0.020103268, 0.0114512285, 0.01611208, -0.020906864, -8.0652477E-4, 0.03182236, 0.017411225, 0.0066129174, -0.004855053, 0.006418715, -0.0448406, -7.6467084E-4, -0.006003524, 0.029786589, -0.005678738, 0.022808705, 0.030081239, -0.005333862, -0.019755043, 0.02085329, -0.010306106, -0.004928716, 0.007158692, 0.0063149175, -0.024442682, -0.017317472, -0.047412105, -0.012864216, -0.009937791, 1.02071215E-4, 0.024000704, 0.0028728521, -0.017424619, 0.024831086, 0.01285752, -0.016996033, 0.024362322, -0.0093150055, 0.031875934, -0.011986959, 0.03099198, -0.009716803, 0.022969423, 0.033563484, 0.020183628, -0.034554586, 0.005035862, -0.0020575381, -0.006957793, 0.013580755, 0.015924575, -0.008069433, -0.011377566, 0.015174552, -0.0010764825, 0.010419949, -0.023558727, 0.0015845889, -0.017518371, 0.005102828, -0.028206185, -0.0024057624, 0.009368578, 0.020277381, -0.013674508, -0.007285928, -0.007306018, -0.008357388, -0.0015787294, 0.035759978, 0.025165917, 0.002732223, 0.024630187, -0.0118262395, 0.02472394, 0.009569477, -0.013266014, 1.2535245E-4, -0.0026736276, 0.023545334, -0.018884482, -0.007754692, 0.005179839, -0.005668693, 0.0064655915, 0.0020307514, 0.014679002, -0.002924751, 0.0037233236, -0.009120803, 0.010105208, -0.028956207, -0.028447263, 0.017799629, -0.042965546, 0.02134884, -0.0012656621, 0.00480148, 0.020223808, -0.014370957, -0.0111900605, -0.0055916817, 0.03077769, -3.9593794E-4, 0.020839898, 0.02732223, -0.0039911885, 0.0043159747, 0.015295091, -0.036108203, 0.011699004, 0.0069176136, 0.0046139746, 0.012000352, -0.0010915499, 0.007433254, -0.6008748, -0.018362146, -0.027831173, -0.010661027, -0.0075805797, 0.017692484, -7.3328044E-4, 0.017652303, -0.01710318, 0.0065124677, -0.016848708, 0.019929156, -0.01291779, 4.545334E-4, -0.030724116, -0.024951626, 0.015214732, -0.0055247154, 0.0050726933, -0.021630099, -0.034126002, 0.002154639, -0.03144735, 0.006579434, 0.01619244, 0.0010455105, -0.0016565776, 0.0029080093, -0.010500308, 0.013560666, -0.039429728, 0.049528237, 0.0070448495, -0.0044197724, 0.035304606, -0.039992243, 0.0012907744, 0.014987047, 0.02452304, 0.020505065, -0.008899814, -0.0037835932, -0.025406996, -0.016272798, -0.010580667, 0.0034855932, 0.038679708, -0.010232443, -6.763591E-4, -0.02394713, 0.022554234, -0.0065392544, 0.0012279936, -9.601286E-4, -0.004392986, -0.024563221, 0.033108115, -0.0093150055, -0.008149792, 0.024375714, -0.01232179, 0.007881927, -0.005906423, -0.010808352, -0.006807119, 0.01730408, -0.045483477, -0.034313507, 0.02884906, -0.02855441, 0.0036094808, 0.0015854259, -0.0069444003, 0.024616793, 0.013835227, 0.016179046, 0.0521801, 0.0017478191, -0.010861926, 0.016473697, 0.01841572, 0.010044938, -0.0029498632, -0.05236761, 0.02609005, -0.0038539076, -0.002635122, -0.004577143, 0.02216583, 5.4703053E-4, 0.03656357, -0.00914759, 0.01702282, -0.011732487, -0.016902281, 0.031634856, -0.0053305137, 0.010460128, 0.013480306, -0.036242135, -0.013547272, 0.010379769, 0.019848796, 0.015482597, 0.022982817, -0.0016348136, -0.0034320203, -0.020920256, 0.0204381, -0.01747819, 0.0017528416, -0.015429024, -0.018027315, 0.00964314, -0.025567714, -0.028688341, 0.00809622, 0.002151291, 0.024536435, -0.03182236, -0.0010856903, -0.009469028, 0.01775945, 0.009013657, -0.02892942, 0.0012296678, 0.019955942, 0.009797162, -0.020263987, 0.011390959, 0.025527535, 0.025112344, 0.05716239, 0.0011928363, 0.017879989, 0.020036303, 0.020625604, 0.008658736, -7.885276E-4, -0.018067494, -0.024991805, 0.013346374, -0.013105295, -0.034849238, -0.0021278525, -0.02386677, -0.026049871, -0.010473521, -0.020371133, -0.025768613, -0.010004758, -0.01879073, -0.025661467, -0.013078509, 7.2490965E-4, -0.019272886, -0.020920256, -0.017063001, -0.0103998585, -0.02452304, 0.0038940874, 0.00640867, -0.007895321, 0.004295885, -0.016379945, 0.0023555378, 0.013768261, 0.02011666, -0.01180615, -0.037393954, -0.0074667367, 6.462243E-4, 5.846991E-4, 0.031634856, -0.006555996, 0.006331659, -0.019473786, 0.0029163803, 0.023545334, -0.010466825, 0.006997973, 0.008009164, -0.05823385, 0.010861926, 0.02984016, 0.010627544, 0.03444744, -0.0047177724, -0.004701031, 0.0023337738, 7.8476075E-4, 0.020947043, 0.006853996, 0.0037701998, -0.03131342, 0.006535906, 0.015482597, 0.012281611, 0.011538285, 0.021830998, 0.021322055, 0.010286016, 0.01561653, -0.0108887125, 0.017625516, -0.02315693, 0.015134373, 0.011960172, -0.0026116837, 0.041117277, 0.01656745, -0.029866947, -0.02575522, 3.984492E-4, -0.019433606, 0.009977971, 0.004972244, 0.038706493, -0.0027623577, -0.013741475, 2.6315643E-5, 0.018737156, 0.029893734, -0.0083774775, -0.009000264, 0.029866947, 0.009187769, 0.0384922, -0.015214732, -0.023103356, -0.001018724, 0.034018856, 0.011558374, -0.012569565, 0.014210238, 0.0061240634, -0.003202661, -0.017732663, 0.035974268, -0.0031189532, 0.024134636, 0.0404744, 0.01875055, -0.025206096, 0.025152523, 0.011129791, 0.019366639, 0.022286369, 0.03131342, 0.022594413, -0.029599082, 0.011839633, 0.0040414133, -6.642215E-4, -0.003515728, -0.009515904, -0.0058428054, 0.0022735042, 0.0024375715, 0.013634329, -0.008719006, 0.020505065, 0.013118688, 0.007895321, -0.002635122, -0.0014355889, -0.012623138, -0.0065225125, 0.010018151, -0.041358355, 0.0011693982, -0.011886509, 0.017879989, -0.012462419, 0.034420654, -0.0040949862, 0.011571768, 0.0073461975, 0.018522864, 0.027295444, -0.019005021, -0.024590006, -0.002837695, 0.015589743, -0.014370957, 0.0032093576, 0.003291391, 0.0026300994, 6.59199E-4, 0.052314036, 0.016500484, 0.021121155, -0.010466825, -0.002335448, -0.014705788, -6.6233806E-5, 0.037795752, -0.00746004, -0.00910741, -0.008926601, -0.014732575, 0.006847299, -0.025902545, -0.019339854, 0.027188297, 0.00585285, -0.004279143, -0.025313243, 0.02176403, -0.0038371661, 0.004824918, -0.042295884, -0.008277029, -0.029491937, -0.008966781, 0.017263899, 0.004587188, -0.011009252, 0.011819543, -0.016058506, -0.020277381, -0.011571768, -0.0030570093, -0.017237112, 0.051403295, 0.02732223, -0.0073194113, 0.018509472, -0.019380033, -0.017330866, -0.021897964, -0.006003524, 0.03589391, 0.02176403, 0.009482421, -0.006529209, -0.016554058, -0.015375451, -0.02946515, -0.0142236315, 0.012020442, -0.019580932, 0.007968984, -0.024040883, -0.0040882896, -0.023759626, 0.009917702, 0.012120891, 0.022822099, 0.001168561, 0.017344259, 0.009489117, 0.018737156, -0.011799453, -0.0027673803, 0.0023622345, 0.022473874, -0.009911005, -0.029358003, 0.02077293, 0.004480042, 0.0043360647, 0.025728432, 0.021268481, 0.019580932, 0.008183275, 0.0040681995, 0.016929068, 0.022714952, -6.2111195E-4, -0.003149088, 0.0073863775, 0.003438717, -0.023826592, 0.040956557, 0.018442506, -0.011732487, 0.011344083, -0.015375451, -0.0014782799, 0.0029481892, -0.030884834, -0.020250594, -0.027255263, -0.003535818, -0.018402325, 0.01065433, 0.021549739, -0.006432108, 0.005959996, 0.00700467, 0.010473521, 0.003642964, -0.00700467, -0.022982817, -0.006780333, -0.01232179, 0.016929068, 0.0052668955, -0.004982289, 0.020692572, -0.033429552, 0.0054945806, 0.026532028, -0.009522601, 0.01801392, 0.012395453, -0.003021852, 0.010352982, -0.0024241782, 0.023558727, 0.0053673447, 0.028956207, 0.009214556, 0.010640937, -0.002861133, 0.009033747, -0.02315693, -0.010319499, -0.0034855932, 0.017451406, 0.029786589, -3.270883E-4, 3.789871E-4, 0.01783981, -0.045804914, 0.009589567, 0.0021914705, 0.029679442, -0.007058243, -0.004660851, -0.017585337, 0.006877434, -0.0048182216, -0.020505065, 0.013172261, -0.02204529, 0.015268305, -0.028179398, 0.015683496, 2.5761078E-4, -0.019567538, 0.005226716, -0.003974447, -0.0037802448, -0.037393954, 0.033590272, -0.0076743322, -0.021094369, 0.025393602, 0.010580667, -0.012395453, 4.5662612E-4, 0.018589832, 0.037635032, 0.02130866, -0.019366639, 0.015589743, -0.022594413, -0.035786763, -0.024790905, 0.022554234, 0.0075805797, -0.021375626, -8.328927E-4, 0.0063417037, -0.01178606, 0.004175346, 0.0020843246, -0.019232707, -0.012783857, -0.009710106, -0.0061207153, 0.03490281, -0.01549599, -0.0052568507, -0.019808616, -0.018107673, -0.008685523, -0.010085117, -0.011752577, -0.028768701, 0.019728256, 0.03275989, 0.020558638, 0.012656622, 0.0020592122, -0.006910917, 0.0062178164, -0.011056128, -0.025701648, -0.003716627, -0.021402413, 0.038733277, 0.041974444, -0.002593268, -0.018576438, -0.013132081, -0.0064455015, 0.031902723, -0.0047311657, -0.017625516, -0.012241431, -0.018656798, -3.413186E-4, -0.03490281, 0.0040246714, 0.005410873, -0.041438714, -0.021174729, 0.029518723, 0.017692484, 0.013781655, 0.028152611, -0.006010221, -0.012020442, 0.045590624, 0.012194554, 0.017732663, 0.011089611, -0.0214292, -0.035036743, -0.03527782, 0.034340292, -0.01994255, 0.008986871, 0.014786148, 0.0056854347, -0.018161247, 0.013098598, -0.021455986, -0.023357827, 0.013547272, -0.0014690721, 0.01075478, -0.019540751, -0.039242223, -0.037527885, -0.028206185, 0.010895409, -0.003031897, 0.005879637, -0.023598906, -0.0035592562, 0.030268745, 0.0033817957, 0.008123006, 0.012442329, 0.005176491, 0.02938479, -0.010091814, 0.0018683583, -0.03297418, -0.018763943, 0.0039376155, 0.024335535, 0.008692219, -0.018522864, -0.006710018, 0.0050325138, -0.012080711, -0.014786148, -0.009254736, 0.015629923, 0.030241959, 0.035626046, -0.0046976823, -0.008886421, -0.009509208, 0.019433606, -0.005809322, 0.032250945, 0.028125824, -0.0023069873, 0.0045804917, 0.013647722, -0.018388933, 0.015134373, 0.015804036, -0.021616705, 0.011558374, -0.008123006, -0.012844127, -0.01565671, -0.01236197, 0.05587664, 0.0011518195, 0.016701384, 0.027670454, 0.01129051, -0.010473521, -0.0067702876, 0.0104400385, 0.026840072, -0.021188121, 0.008705612, -0.009944488, -0.005601727, -0.026237376, -0.024228388, -0.022862278, -0.023371221, -0.015897788, -0.01337316, 0.0060704905, 0.007727905, -0.019420212, -0.011424442, -2.8063045E-4, -0.022125648, -0.028768701, 0.002892942, 0.007413164, -0.034688517, -0.01821482, -0.041117277, 0.019915763, 0.0012715217, 0.008806062, 1.9650409E-4, -0.002926425, 0.037018944, -0.035411753, -0.010299409, 0.015643315, 0.026197197, -0.015362058, 0.011042735, -0.015254912, -0.015763855, 0.0028427173, -0.0044833906, -0.02538021, -0.039992243, -0.015857607, -0.014196845, -0.0051363115, -0.017371045, 0.008337298, 0.011973565, -0.0074399505, -0.024375714, -0.029652655, 0.0081899725, -0.009140893, 0.003075425, 0.0058762883, -0.025447175, 0.016862102, -0.007801568, -3.461318E-4, -0.0063450523, -0.019339854, -0.02505877, 0.0020960437, 0.008370781, -0.036402855, -0.008745792, -0.031393778, -0.008176579, -0.021402413, -0.010667724, -0.015549563, 0.01085523, -0.0018198078, -0.012643228, -0.0025899196, 0.022272974, -0.009502511, -0.012663318, -0.008819455, -0.0138888005, -0.011598554, -0.01879073, 0.009917702, 0.026719533, 0.013346374, -0.021094369, 0.0142236315, 0.0017068023, -0.052233674, 2.796364E-5, -0.01553617, 0.024000704, 0.017531764, 0.0072256583, 0.006154198, -0.008303815, 0.018737156, 0.026773106, -0.014826328, -0.013714688, -0.0056921314, 0.016875494, 0.018643403, -0.008303815, -0.056680232, -0.009502511, 0.019728256, 0.012750374, 0.011739183, -0.018763943, -0.021134548, -0.0033935148, 0.013158868, -0.015120979, 0.023853378, 0.017009428, 5.5247155E-4, -0.03634928, -0.019567538, -0.00960296, -0.010279319, -0.0028159309, -0.00428584, 0.0031624811, -0.011832937, 0.0076475455, -0.025072165, -0.02254084, -0.013995946, 0.0033951888, 0.015924575, 0.001843246, -0.015763855, 0.033188473, 0.005153053, -0.023853378, -3.626641E-4, 0.028527623, -0.010620847, 0.004607278, -0.0073662875, -0.030081239, -0.005906423, -0.008317208, 0.021241695, -0.0021345492, -0.023960523, -1.1614459E-4, -0.009234645, -0.034313507, 0.01879073, 0.015804036, -0.035170674, -0.025246276, 0.0212283, 0.008404264, 0.026960611, -0.011203454, 0.006633007, -0.021362234, 0.026719533, -0.006931007, 0.0025631331, -0.043501277, 0.03292061, 0.01796035, -0.00555485, 4.3214157E-5, 0.20164877, 0.0021077627, 0.001875055, 0.045644198, 0.037527885, 0.027429376, 0.005454401, -0.002571504, 0.0062379064, -0.021737244, 0.017518371, 0.0202372, -0.014330777, 6.7845185E-4, 0.039777953, -0.01783981, -0.04117085, -0.021134548, 0.0029314477, -0.006321614, -0.003653009, 0.0046441094, -0.0138888005, -0.03091162, -0.010935589, 0.010024847, -0.02035774, -0.01796035, 0.030858047, 0.010527095, -0.012489205, -0.0023421445, 0.0016222574, -0.012656622, -0.014237025, -0.0117057, 0.02006309, 0.009502511, -0.0028075601, 0.037447527, 0.003924222, 0.018630011, -0.011424442, -0.019005021, 0.0032562339, -0.026987398, -0.030349104, 0.013326284, -0.009964578, -0.014839721, -0.03206344, -0.0022668075, 0.01186642, 0.025340028, 0.0037802448, -0.019902369, -0.010861926, -0.010038241, 0.017571945, -0.0024476165, -0.04652815, 0.024656974, -2.0121265E-4, 0.045831703, -0.012870913, 0.012696801, -0.007948894, -0.021455986, 0.02295603, 0.018924663, -0.019085381, -0.01912556, -0.010841836, 0.002946515, -0.015589743, -0.027777601, 0.007252445, 9.308309E-4, 0.008290422, 0.028206185, 0.0041954354, -0.006278086, 0.0049220193, -0.027429376, 0.016728168, -0.034126002, 0.028956207, -0.013339677, -0.0017042911, 0.0071452986, -0.0069243102, 0.017504977, 0.0061408053, -0.009469028, -0.012984755, 3.789871E-4, -0.022915851, 0.02051846, -0.002978324, -0.0067669395, -0.032411665, 0.06359115, 0.0012815666, -0.011725791, -0.02625077, 0.0072725345, 0.006877434, 0.0370993, 0.0077948715, -0.04355485, -7.81831E-4, -0.033965282, -0.006103974, -0.015442417, 0.019607717, -0.0095761735, -0.0035559079, -0.01817464, 0.011089611, -0.011411049, 0.030670542, -0.029170498, 0.0066062207, -0.005799277, 0.018563045, -0.013299497, -0.025889153, 0.011719094, -0.022232795, -0.0311527, 0.021375626, 0.028125824, 0.015442417, 0.0018917966, -0.0029280994, -0.015375451, 0.01180615, -0.028099038, 0.0021094368, 0.0018030662, 0.012736981, 0.020813111, 0.00801586, 0.0062914793, 0.025661467, -0.02357212, 0.02575522, -0.0065124677, -0.003977795, -0.015670102, -0.007212265, -0.0023555378, 0.005518019, -0.029438363, 0.013982553, 0.00857168, -0.030134812, -0.016915675, -0.008136399, -0.019808616, -0.03996546, 0.0021027403, 0.0047311657, -0.0030570093, -0.03182236, 0.0076341527, -0.16811207, 0.009924398, 0.027415983, -0.009589567, 0.020545246, 0.022688165, 0.009830645, -0.0024208298, -0.019380033, 0.011605252, 0.027228476, -0.022795312, -0.046956733, -0.020585425, 0.020652391, -0.01603172, -0.028340116, 0.014196845, 0.010446735, 0.006472288, 0.0038472111, -0.018442506, 0.0030704027, -0.01994255, -8.7474665E-4, 0.0036396156, -0.0030469643, 0.050171115, 0.007279231, -0.008029253, 0.018308572, -0.02039792, 0.030563397, -0.001992246, 0.0058561987, -0.019366639, -0.0016364878, 0.008357388, 0.012127588, 0.050626487, 0.004734514, 0.02637131, 0.026023084, 0.0044867387, 0.022447087, 0.015871001, -0.016219227, -0.0028561105, -0.010667724, -0.0023505155, 0.047412105, -0.0025196052, -0.0076341527, -0.008692219, 0.010406556, 0.0019738302, -0.0058227153, 0.0032294474, 0.02208547, -0.01339325, -0.019219313, -0.026197197, 0.017317472, -0.010647634, -0.00402802, -0.010352982, -0.017290685, 0.020719357, -0.021455986, 0.00908732, -0.012911093, 0.017237112, -9.1325224E-4, 0.024241783, 0.027670454, -0.012187857, -0.03436708, -8.475416E-4, 0.022460481, -0.0027941668, 0.010286016, 0.038518988, -0.0212283, 0.005226716, -0.019607717, -0.029304432, -0.00349229, 0.009241343, -4.800643E-4, 0.0084511405, -0.014866508, -0.024844479, -0.006063794, 0.01561653, 0.011370869, 0.004701031, 0.013346374, 0.009154286, 0.01186642, -0.021201516, 0.016219227, -0.0118262395, -0.02538021, -0.006545951, 0.03482245, -0.0022802008, 0.026732927, 0.016634416, 0.013835227, 0.010567274, -0.0104400385, 0.02591594, 0.024362322, 0.019915763, -0.01714336, 0.009609656, -0.016674597, -0.02517931, -0.0011041061, 0.020906864, 0.028741915, -0.008926601, -0.002837695, 0.007875231, -0.01127042, -0.01631298, -0.07612723, -0.031420566, 0.02130866, 6.094975E-5, -0.019219313, -0.012187857, -0.014022733, 0.026103444, -0.016433518, 0.019487178, -0.006033659, -0.031634856, 0.0058227153, 0.026157018, 0.02353194, 0.0029699532, 0.002851088, 7.984941E-6, -0.022152435, 0.017933562, -0.018308572, -0.03152771, -0.03091162, 0.0056385584, -0.017692484, 0.009977971, -0.025688253, 0.019674685, 0.028152611, -0.013091902, 0.019955942, -0.025018591, 0.022982817, 0.0117057, -0.01932646, 0.0066664903, -0.025313243, -0.01557635, 0.0118999025, -0.035170674, -0.0022885716, -0.009328399, 0.004168649, -0.014772755, -0.02254084, -0.0070448495, 0.0049555027, 0.0014665609, 0.017652303, 0.0035324697, 0.007158692, -0.00809622, 0.0015787294, 2.471473E-4, 0.0067167147, -0.021522952, -0.01129051, 0.00321438, -0.0032411665, 0.0051999292, -0.0022316503, 0.017464798, -0.019580932, -0.00267865, 0.023585513, -5.005727E-4, 0.019393425, 0.0018850999, 0.034688517, -0.030750902, -0.010661027, 0.007352894, -0.009341792, 0.020156842, -0.029679442, 0.01129051, -0.008323905, -0.002978324, 0.027724028, -0.0054577496, -0.03683144, -0.025045378, 0.0065091196, -0.033965282, 0.011832937, 0.026424883, 0.009756982, -0.001488325, 0.016406732, -0.049688958, 0.048028193, 0.0038170763, 0.05212653, 1.7222883E-4, -0.005380738, -0.026585601, -0.021121155, 0.016701384, -0.019768437, 6.843114E-4, -0.038920786, -0.013674508, -0.07971662, 0.02567486, -8.492158E-4, -0.02505877, -0.0040414133, 0.014062912, -7.437439E-4, -0.006201075, 0.013768261, 0.007768085, 0.02468376, -0.009482421, -0.016353158, -0.011853026, -0.0117057, -0.0024141334, 7.0189004E-4, -0.02892942, 0.02369266, 0.015522777, -0.00375011, -0.031715214, -0.017290685, 0.023210503, -0.026518635, -0.0056184684, -0.0064421534, 0.01549599, -0.008163186, -0.019728256, 0.03642964, -0.019045202, 7.9313153E-4, 0.035626046, -0.004714424, -0.003299762, 0.008397568, 0.016433518, -0.008230153, -0.031259846, -0.027014185, -0.010647634, -0.01446471, -0.03297418, -0.017933562, 0.0075939726, 0.01676835, 5.6031917E-5, 0.00402802, 0.026465062, -0.007848444, 0.0026116837, 0.004074896, -0.0589303, 0.002390695, -0.012167768, 0.0069711865, 0.008357388, 0.018536258, 0.019500572, 0.02801868, 0.027308837, 0.008712309, -0.009288219, 0.005434311, -0.0040447614, -0.010935589, -0.007942197, 0.010587364, -0.022755131, -0.0101186, -0.0062446026, 0.03495638, 0.0122012505, -0.01603172, -0.0076140626, 0.009495814, 0.008698916, -0.037929684, 0.020143447, 0.005420918, 0.009589567, -0.0054811877, 0.013741475, 0.013540575, 0.010687813, -0.008719006, 0.015683496, -0.01291779, 0.002367257, -0.03420636, 0.02208547, -0.020156842, -0.0103261955, 0.025902545, 0.012515992, -0.018040707, -0.007372984, 0.010821746, 0.012683407, -0.01446471, 0.011404352, -0.0058963783, -0.010379769, -0.002303639, -0.01599154, -0.012937879, -0.0034655035, -0.0027606837, -0.004767997, -0.004577143, -0.005698828, -0.0084511405, 0.017893381, -0.038518988, 0.009616354, 0.0016975944, -0.014062912, -0.03902793, 0.020665785, 0.02756331, 0.0070649395, 0.008250242, 0.01069451, 0.027308837, -0.013915586, -0.008176579, -0.0038438628, 0.016821923, 0.011491409, 0.0021228301, -0.0031541104, 0.003266279, -0.013225835, -0.011699004, -0.009870825, -0.019634504, 0.0039577056, 0.006321614, 0.1091282, 0.023250682, -0.002527976, -0.013707992, -0.015388845, 0.011015948, 0.027107937, -0.0071386024, -0.015777249, -0.017371045, 0.02645167, 0.0013577407, -0.01557635, 0.0056117717, -0.038090404, 0.035840336, 0.020009516, 0.019634504, -0.017129967, -0.017813023, 0.029143712, -0.008176579, 0.0078149615, -0.0041184244, -0.004680941, 0.0030151554, 0.029813375, 0.026438275, -0.002367257, -0.036376067, -0.007881927, 0.01545581, -0.016058506, -0.01887109, 0.018308572, 0.021080976, -0.008859635, 0.00404811, 0.01549599, -0.01129051, 4.3423428E-5, 0.026277557, -0.010948982, -0.005049255, 0.01722372, -0.004925368, -0.0038438628, -0.03305454, -0.04232267 ], - "id" : "4ac57d40-6e27-4b41-9687-96e29db711a5", - "metadata" : { - "name" : "SwiftVolt Pro" - }, - "text" : "price: 2499.99\nname: SwiftVolt Pro\nshortDescription: SwiftVolt Pro is a high-performance e-bike designed for riders seeking a thrilling and fast riding experience. Equipped with a powerful SwiftDrive motor that provides assistance up to 30 mph and a long-lasting battery, this bike is perfect for long-distance commuting and passionate e-bike enthusiasts. The sleek and innovative design features cater specifically to individuals who prioritize cycling over driving. Additionally, the bike is seamlessly integrated with your smartphone, allowing you to use it for navigation, music, and more.\ndescription: ## Overview\nThis bike is ideal for you if:\n- You desire a sleek and modern hydroformed aluminum frame that houses a 700Wh battery.\n- You want to maintain high speeds of up to 30 mph with the assistance of the SwiftDrive motor.\n- You appreciate the convenience of using your smartphone as a controller, which can be docked and charged on the handlebar.\n\n## Features\n\nConnect with SwiftSync App\nBy downloading the SwiftSync app, your smartphone becomes an interactive on-board computer. Attach it to the handlebar-mounted controller for easy access and charging. With the thumb pad, you can make calls, listen to music, receive turn-by-turn directions, and connect with fitness and health apps to track your routes and ride data via Bluetooth® wireless technology.\n\nEnhanced Range with BoostMax\nBoostMax offers the capability to attach a second 700Wh Swift battery to the downtube of your bike, effectively doubling the distance and time between charges. This allows for extended rides, longer commutes, and more significant adventures. BoostMax is compatible with select Swift electric bike models.\n\nRange Estimation\nFor an estimate of how far you can ride on a single charge, consult the Swift range calculator. The variables are automatically populated based on this bike model and the average rider, but you can modify them to obtain the most accurate estimate.\n\n## Specifications\nFrameset\n- Frame: Lightweight hydroformed alloy, Removable Integrated Battery, BoostMax-compatible, internal cable routing, post-mount disc, 135x5 mm QR\n- Fork: SwiftVolt rigid alloy fork, 1-1/8'' steel steerer, 100x15mm thru-axle, post-mount disc brake\n- Max compatible fork travel: 63mm\n\nWheels\n- Front Hub: Swift sealed bearing, 32-hole 15mm alloy thru-axle\n- Front Skewer: Swift Switch thru-axle, removable lever\n- Rear Hub: Swift alloy, sealed bearing, 6-bolt, 135x5mm QR\n- Rear Skewer: 148x5mm bolt-on\n- Rim: SwiftRim, tubeless compatible, 32-hole, 35mm width, Presta valve\n- Spokes: 14g stainless steel, black\n- Tire: Swift E6 Hard-Case Lite, reflective strip, 27.5x2.40''\n- Max tire size: 27.5x2.40\"\n\nDrivetrain\n- Shifter: Shimano Deore M4100, 10 speed\n- Rear Derailleur: Shimano Deore M5120, long cage\n- Crank: Swift alloy, 170mm length\n- Chainring: Swift 46T narrow/wide alloy, w/alloy guard\n- Cassette: Shimano Deore M4100, 11-42, 10 speed\n- Chain: KMC E10\n- Pedal: Swift City pedals\n- Max chainring size: 1x: 48T\n\nComponents\n- Saddle: Swift Commuter Comp\n- Seatpost: Swift Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length\n- Handlebar: Swift alloy, 31." - }, - "a60df45d-4ec6-418a-84b1-2f88d46251e7" : { - "embedding" : [ 0.019184478, 0.0063453238, -0.03310369, -0.0042932187, 0.010476534, 0.02253265, -0.0019660378, -0.023626205, -0.010739798, -0.012272126, 0.0065782103, 0.008998209, -0.014594244, -0.011543089, -0.0029853398, 0.016200826, 0.02508428, -0.009295224, 0.008579687, -0.018468942, 0.0016529906, -0.0010496785, -0.0048534973, -0.013001163, -0.00333467, -0.018293433, 0.020143026, -0.014445737, -0.008903704, -0.007081111, 0.014175723, 0.0092412215, -0.013345431, -0.018009918, -0.022087127, 0.0024773763, 0.025813317, 0.030322546, 0.023585703, 0.028135434, 0.017996417, -0.006824598, -0.021506596, -0.011104316, -0.018374437, 0.0068178475, 0.0012445947, 6.3284475E-4, 0.016025318, 0.0031557858, -0.0017128999, 0.036370855, -0.017726405, -0.010922057, -1.4808567E-4, -0.01783441, -0.0017061495, 0.02137159, 0.04547032, 0.018252932, 0.010139017, 0.015458289, -0.042662177, -0.0028115183, -0.02508428, -0.011678096, -0.010307776, 0.015633797, -0.004725241, 2.8035024E-4, 0.022708157, 0.027149884, -3.5207265E-4, -0.011698347, 0.010922057, -0.020332037, -0.013959711, -0.0044181, 0.015593295, 0.011259574, 0.026231838, 0.0110435635, 0.002389622, 0.006139438, 0.03666787, 0.006254194, 0.0025836942, 0.0021702356, -0.023977222, 0.005967304, -0.011205572, 0.020872064, 0.014958763, 0.01313617, -0.009254722, 0.013095668, -0.02137159, 0.017321384, -0.029728515, 0.005376649, 0.009767748, -0.0061563137, 0.004860248, -0.021452595, -0.020710057, -0.014972263, -0.024422746, 0.00461386, 0.008424429, -0.015404286, -0.015161273, 0.01745639, 0.030106535, -0.013284678, 0.012197872, -0.022330139, 0.029485503, 0.0048298715, 0.00392195, -0.012373381, 0.013460186, 0.026326342, 0.010895056, -0.011421583, 0.016430337, 0.0047961194, -0.01431073, -0.0084649315, 0.0060854354, 0.014013714, 0.0051235114, 0.010490035, 0.0013931023, 0.02274866, -0.015188275, 0.014864258, -0.016038818, 0.008491933, -0.03475077, -0.017010868, 0.00960574, 0.0037160644, -0.030889574, -0.016956864, -0.006051684, 0.008761947, -0.009430231, 0.017955916, 0.012825654, -0.0014217913, 0.016160324, -0.029053481, 0.01510727, 0.017010868, 0.025448797, -0.0056162863, 0.007978907, 0.022708157, -0.034291748, 0.014000214, 0.0066997167, 0.01981901, -0.0031996632, 0.015971314, 0.02764941, 0.005437402, -0.005072884, -0.012299127, -0.019778509, -0.008998209, -0.023612704, -0.007492882, -0.019386988, 0.012899908, -3.8962142E-4, 0.0024385618, -0.0040029543, -0.022114128, -0.014283729, -0.019724505, 0.03240165, -0.006645714, 0.010145768, 0.016214326, 0.002833457, 0.016781356, 0.002870584, -0.007094612, 0.008282673, -0.017132374, 0.0051133856, 0.013014664, 0.018684953, -0.0106385425, -0.62081563, -0.040826082, -0.018252932, -0.0036451858, 0.0017820909, 0.0235182, -0.0024756887, 0.007911404, 1.2751821E-4, -0.001891784, -0.026555855, 3.934185E-4, -0.002047042, -0.0013745389, -0.027095882, -0.01744289, 0.019873014, -0.005373274, -8.087756E-4, -0.034183744, -0.037180897, 0.0030798446, -0.0100782635, 0.0036958135, 0.028189437, 0.005309146, -0.0056770393, -0.008471682, -0.016241329, 0.015822807, -0.025421796, 0.027203888, -0.005680415, -0.00882945, 0.041636124, -0.044012245, 0.010051263, 0.019575998, 0.043256205, 0.016524842, -0.009977009, -0.01590381, -0.0050492575, -0.033238694, -0.008532435, 0.008545936, 0.04352622, 0.014756252, 0.038773976, -0.032671668, -0.0029566507, 0.0043843486, 0.002278241, 0.0055994107, 0.0013627257, -0.024287738, 0.030268544, -0.005707416, 0.0035574315, -0.0031827872, 0.0012336255, -0.0072026174, -8.218544E-4, -0.02666386, -0.0075603854, 0.009524736, -0.031159589, -0.020440042, 0.014783254, 0.0026680736, 0.020845063, 0.034102738, -0.004198714, 0.0060145566, 0.024827765, 0.0176724, 0.03512879, 0.018603949, -0.01648434, 0.025340792, 0.027082382, 0.008842951, 2.740218E-4, -0.033373702, 0.005707416, 0.001569455, -0.010760048, -0.007870901, 0.025583804, 0.011313577, 0.011590341, -0.0025566928, -0.0066153375, 0.005731042, 0.007371376, 0.04946652, -0.0072836215, 0.012103368, -0.010307776, -0.03221264, -0.0015036392, -0.003473052, 0.012346379, 0.024382243, 0.04433626, 0.0020436668, -0.01138108, -0.03315769, 0.011219072, -0.04749542, 0.003965827, -0.013379183, -0.019346487, 0.009045461, -0.007877652, -0.016403336, 0.01549879, 0.017861411, 0.028459452, -0.026839368, 0.008559437, 0.012481387, 0.03256366, 0.0053496477, -0.03175362, 9.0032717E-4, 0.0077358945, -0.0018310308, -0.006416202, -0.010355028, 0.024085227, 0.012670396, 0.030727567, -0.0069191027, 0.023990724, 0.013608694, 0.034480758, 0.016983867, 0.011941359, -0.028540455, -0.025637807, -0.013426434, -0.0046206107, -0.03156461, -0.007965406, -0.013500689, -0.019846013, 0.018117923, -0.009774499, -0.0011855292, -0.009349227, 0.0056162863, -0.027757416, -0.002531379, -0.008883453, -0.022816163, -8.6235645E-4, -0.040880084, -0.028000427, -0.016403336, 0.027095882, -0.007378126, 6.1385945E-4, 0.00529902, 0.003017404, -0.0051673884, 0.015377284, 0.036775876, -0.018266432, -0.02864846, -0.030079534, -0.0034595514, -0.0021297336, 0.038692974, -0.021479595, 0.01587681, -0.016335834, -0.001480013, 0.0033009183, -0.016511342, 0.0067503443, 0.028864471, -0.0549208, 0.0056601637, 0.012886407, 0.012879657, 0.021047574, 0.032293648, -0.020710057, 0.011981861, 0.021871116, 0.0069123525, -0.015039767, 0.0018816584, -0.021938618, -0.009963508, 0.023275187, -0.010942308, 5.480436E-4, 0.020804562, 0.01725388, 0.003513554, 0.015768804, -0.011786101, 0.0061124368, -0.015444787, 0.03237465, -0.009153467, 0.008653942, 8.2776096E-4, 0.018468942, -0.026636858, -0.0059504285, -0.009342477, -0.016335834, 0.017523894, -0.0010007386, 0.023990724, 0.010024261, -0.010955809, -0.009659743, 0.021790111, 0.008107163, -0.022883667, -0.014135221, 0.019562498, -0.0110435635, 0.02727139, 0.016835358, -0.0372619, -0.0069866064, 0.008950956, 0.03453476, -0.017753405, 0.007816899, 0.014837257, 0.012245124, -0.018171927, 0.04544332, -0.013763952, 0.021736108, 0.03785593, 0.015714802, -0.0073511247, 0.022141129, 0.018279932, 0.026582856, 0.01686236, 0.023491198, 0.020494046, -0.004745492, 0.012096616, 0.015863309, 0.021074574, 0.0136829475, -5.088072E-4, -0.0033194819, -0.0029363998, 0.02667736, -0.0013838205, 0.0034342376, 0.030052533, 0.015539292, 0.02412573, 0.0019795385, 0.0011973423, -0.0018023419, -0.016335834, 0.019751508, -0.03018754, 0.010496785, -0.01998102, 0.021493096, -0.0070743607, 0.012602893, 0.016376335, 0.0044484767, -0.0024520624, 0.009963508, 0.01745639, -0.0091804685, -0.052652683, 0.0011829978, 0.043985244, -0.009355977, -0.0048872493, 0.015741803, 0.011441833, -0.007371376, 0.036100842, 0.0010673982, 0.03475077, 2.7064662E-4, 0.0117591, -0.01748339, -0.0010471471, 0.028297443, 8.76701E-4, -0.00922097, -0.0215741, -0.020777559, -0.005744543, 0.013358931, -0.029674513, 0.04471428, -0.009517985, -0.002237739, -0.018009918, 0.0021415467, -0.024544252, 0.0016808357, -0.02390972, -0.017537395, -0.011840104, 0.011556589, 0.017874911, -0.0013078792, -0.012778401, 0.0012614706, -0.033481706, -0.01001076, 0.0069933566, -0.01844194, -0.020116026, 0.054299768, 0.020723557, 0.015606795, 0.022033123, -0.031348597, -0.0057175416, -0.030943578, -0.0046543623, 0.004492354, 0.026623357, 0.012231624, 0.0153907845, 0.008984708, -2.8963195E-4, 0.007931654, -0.022492146, 0.03213164, -0.041231103, -4.0185644E-4, -0.002165173, -0.0017635274, -0.015998315, 0.015539292, 0.0072228685, 0.015066768, -0.012103368, 0.018522944, 0.007465881, 0.009362727, -0.027676411, -0.0012758151, -0.004880499, 0.024233736, -0.011981861, -0.023099678, -0.0055622836, 7.615232E-4, -0.012886407, 0.027568405, 0.02606983, 0.013352181, 0.014391734, 0.009882504, -0.0051943897, 9.6192403E-4, -0.0018175301, 0.0027254515, 0.016322332, 0.013946211, -0.025772814, 0.03040355, 0.009592239, -0.014675248, 0.004904125, 0.014594244, 4.3792857E-4, -0.008518934, -0.015944313, -0.022681156, -0.03863897, 0.0013551316, -0.011428333, 0.020156527, -0.019684004, 0.0032351024, -7.982282E-4, 0.019278983, 0.013541191, -0.0045396066, 0.023113178, -0.015417786, -0.012589392, -0.030835573, 0.022073625, -0.014810255, 0.0028942102, 0.024611754, -0.029782519, 0.015161273, 0.023585703, 0.004782619, 0.011435083, 0.020912567, -0.031132588, -0.009848752, 0.007182366, 0.03412974, -0.004630736, 0.01313617, -0.010226771, -4.1809946E-4, -0.026339844, 0.025813317, -0.0046577374, -0.011252824, 0.0074388795, 0.037774928, 0.04352622, 0.007992407, -0.021236584, 0.0090859635, -0.0123801315, 0.013210423, 0.03472377, 0.025840318, 0.0051707635, -8.7248196E-4, -0.005751293, 0.0075941375, -0.03750491, -0.0072228685, 0.0038679473, -0.02431474, -0.008917205, -0.028297443, 0.021493096, 0.006868475, 0.008350176, 0.01667335, -0.015647298, 0.019427491, -0.04609135, 0.032023635, 0.016538342, -0.003955702, 0.029485503, -0.0052416422, -0.006875226, 0.013655947, 0.007101362, 0.050330568, 0.039260004, -0.013439936, -0.008917205, -0.014661748, -0.018090922, -0.020899065, 8.0160337E-4, -0.0017989668, 0.0043607224, -0.018198928, 0.0026478225, 0.004181838, 0.026893372, -0.0012429071, -0.018725455, -0.014445737, 0.014459237, -0.013561442, 0.048953496, -0.027676411, -0.005646663, -0.038773976, -0.015188275, -0.0107938005, -0.025408296, -0.005221391, -0.020669553, 0.025948323, 0.040529065, 0.012454385, 0.0013129419, 0.012339629, 0.019859513, 0.0072093676, -0.010760048, -0.0136829475, -0.016943363, -0.025975324, 0.0074861315, 0.046415366, 0.002320431, -0.0041683377, -0.006291321, 0.0021111702, 0.023207683, -0.010962559, -0.046253357, -0.0020858564, -0.031348597, -4.8180582E-4, -0.02899948, -0.009031961, -0.014526741, -0.021493096, -0.022910668, 0.043256205, 0.0074186283, 0.014364732, 0.03488578, 0.02411223, -0.017186377, 0.035911832, 0.014837257, 0.030160539, -0.0036755623, -0.029728515, -0.031240594, -0.022478646, 0.023788214, -0.008397428, 0.0012631582, 0.027311893, -0.020453542, -0.019494994, 0.020048521, 0.0028604583, -0.0215741, 0.0100782635, -0.003179412, -0.018779458, -0.020251032, -0.009740747, -0.03982703, -0.015755303, 0.019494994, -0.014985764, 0.029296493, -0.024017725, -0.021628102, 0.036019836, 0.009126466, 0.015930813, 0.0045024795, -1.8911512E-4, 0.010220021, -0.015188275, -0.024368742, -0.036532864, -0.0062339427, 0.0010193019, 0.025070779, 0.026204836, -0.023180682, -0.006568085, -0.0012707523, 0.005275394, -0.025786314, -0.013750452, -0.004725241, 0.027298393, 0.033994734, -0.0031591612, 0.006274445, -0.0011154944, 0.006632213, -0.0040670824, 0.008424429, 0.00372619, -0.023059176, 0.005839048, -5.0965097E-4, -0.016956864, 0.009733996, 0.0047488674, -0.025448797, 0.018360937, -0.006335198, -0.010132266, 0.006051684, -0.008458181, 0.039124995, -0.029053481, -0.002364308, 0.01138108, 0.0034460507, 0.0012412196, 0.0052888948, 0.008559437, 0.020696556, -0.013352181, 0.002841895, -0.011354079, 0.005845798, -0.0074186283, 0.0017702777, -0.01294041, -0.019157477, -0.0022579902, 0.0011686534, -0.008127415, 3.7527696E-4, -0.01590381, -0.023450695, -0.0071081123, -0.033400703, -0.01610632, 0.0023221185, 0.016133323, -0.040691074, -0.013817955, -0.01625483, -0.011644344, 0.013865207, 0.018671453, 0.0023086178, -0.021682106, 0.011921108, -0.049763538, -0.0021871114, 0.026218336, -0.012319379, 0.011934608, 0.023288688, 0.012636645, -0.016565345, -0.0012015613, 0.0052450174, -0.018549945, -0.007330874, 0.0050492575, -0.032482658, 0.018185427, -0.00862694, 0.027109383, -0.006703092, -0.005882925, -0.01784791, -0.028108433, -0.0015424537, -0.008134165, -0.01782091, 0.0028857721, -0.03250966, 0.014607745, 0.011853605, -0.003624935, 0.006925853, -0.015944313, -0.01921148, 0.0155797945, 0.019724505, -0.0073578754, -0.026582856, -0.036424857, 0.0021803612, -0.018077422, -0.0038983237, -0.0143377315, -0.014391734, 0.019657003, -0.009760998, -0.028162437, 0.002392997, -0.03221264, -0.025786314, 0.0037903183, -0.014675248, -0.012103368, -0.03431875, -0.006136063, 0.03515579, 0.003000528, -0.030160539, 0.015606795, -0.005960554, -0.019589499, 7.066767E-4, -0.010928807, 0.0011914357, 0.020885564, 0.028783469, 0.005552158, -0.013480437, 0.019413989, 0.003962452, -0.0064600795, -0.011279825, -0.008100413, 0.029944526, 0.023261687, -0.0069326037, -0.05551483, -0.010091765, 0.025705311, 0.01744289, 0.0021904868, 2.514503E-4, -0.011057064, 0.007938405, 0.0141487215, -0.0065005813, 0.014364732, 0.0060955607, -0.007823649, -0.035749823, -0.01491826, -0.0011441833, -0.0041244603, 0.012515138, 7.2017737E-4, 0.0032840425, -0.021317586, 0.009936507, -0.022114128, -0.027865421, 0.0010733047, -0.014013714, 0.019954018, -0.0029752143, -0.0011349017, 0.046604376, -7.7038305E-4, -0.044255257, 0.012400382, 0.011401331, 0.015957814, -0.008687693, -0.009679994, -0.01784791, -0.018860461, -0.00863369, 0.0015973002, -0.003803819, 0.003273917, -0.005022256, 0.011111067, -0.03569582, 0.028540455, 0.008552686, -0.017604897, -0.018266432, -0.0039118244, -0.010469784, 0.013568192, -0.001736526, 0.030133536, -0.040124048, 0.014351232, -0.015228776, -0.025732312, -0.024058226, 0.04061007, -0.0044383514, -0.029107485, 0.0056534135, 0.20132227, 0.008572937, -0.0028942102, 0.031483606, 0.009166967, 0.010429282, -0.003547306, -1.7455968E-4, -0.009079213, -0.00725662, 9.7120577E-4, 0.008788948, -0.019143976, -0.0048534973, 0.03180762, -2.1094826E-4, -0.04004304, -0.02017003, 0.0027220764, 0.0012268751, 0.0019289108, 0.0023862466, -0.031402603, -0.03966502, -0.003513554, 0.023450695, -0.017564395, -0.03780193, 0.018738955, -0.0010960872, 0.0051471377, -0.016308831, -0.007924904, 0.012737899, -0.023801714, -0.011293326, -0.007297122, 0.0051302616, -0.01431073, 0.031456605, 0.0107938005, 0.0010631792, 0.020831563, -0.013419684, -0.022775661, 0.0075401347, -0.016389836, -0.009700244, 1.3205361E-4, -0.013561442, -0.009916255, 0.0042797183, 0.032455657, 0.029593509, 0.0060280575, -0.019427491, 0.0055049057, -0.020264532, 0.013493938, -0.012096616, -0.02606983, 0.02999853, -4.577577E-4, 0.010874804, 0.0066187126, 0.02493577, -0.026960874, -0.036748875, 0.036100842, 0.0065377085, -0.012636645, -0.01899547, 0.007681892, 0.025381295, -0.01725388, -0.019697504, 0.0056230365, -0.007027108, 0.024787264, 0.01899547, 0.008302923, -0.00922097, -0.0026343218, 0.008579687, 0.00843118, -0.028351447, 0.017955916, -0.0017888412, 0.004394474, 0.020521047, -0.005150513, 0.0064567043, -0.00724987, -0.022505648, -0.007337624, -0.014742752, -0.012589392, 0.019481493, 0.0010041137, -0.009193969, -0.020440042, 0.049088504, -0.026974376, 9.1129646E-4, -0.039178997, 0.0024756887, -0.00382407, 0.029053481, 0.024827765, -0.028162437, 0.016700352, -0.023423694, 2.3626204E-4, -0.005741168, -6.2526383E-6, -0.007857401, -4.577577E-4, -0.028729465, 0.0029769018, -0.020507546, 0.011495836, 0.005450903, 0.010348278, -0.03542581, 0.018522944, -9.3745405E-4, -0.009760998, 0.019170977, -0.017766906, -0.022330139, 0.015836308, 0.025151782, 0.004482229, 0.016227828, -0.026434347, -6.3790753E-4, 0.013156421, -0.014891259, 0.004080583, -0.011516088, -0.00803291, 0.03196963, 0.017186377, -0.0027710162, 0.0122248735, -0.016389836, 0.011327078, 0.0018225929, -0.013946211, -0.003766692, -0.013669447, 8.205887E-4, -0.008383928, -0.032860674, -0.0019997894, 0.026704362, -0.04098809, 0.0064060767, -0.022397643, 0.0063655744, -0.019913515, -0.0034443631, 0.027365895, -0.0015880185, -0.014783254, -0.0010724609, -0.17108072, 0.009787999, 0.029593509, -0.023977222, 0.007310623, 0.013048415, 0.012413883, 0.024058226, -0.016524842, 0.0075806365, 0.010861304, -0.013986713, -0.03475077, -0.02295117, -4.6999272E-4, -0.005764794, -0.027703412, 0.025070779, 0.010233521, -0.002873959, 0.014027216, -0.018050421, -0.010523787, -0.004556482, -0.009565238, -0.005545408, 0.015309781, 0.024584753, 0.0052618934, -0.0012437509, 0.019697504, -0.018603949, 0.03296868, -0.011617342, 0.016821858, 2.8435825E-4, -0.016592346, 0.005680415, -0.0026478225, 0.040826082, 0.0035203046, 0.010672295, 0.03742391, -0.0022630529, 0.013007914, 0.027730415, 0.0101727685, 0.0060044313, -0.010226771, -0.010564289, 0.03566882, -0.017051369, 0.007924904, 0.0050897594, 0.012960661, 0.0033076687, -0.0043573473, 0.022519149, 0.023059176, -0.010496785, -0.036640868, -0.016538342, 0.009268222, -0.0074186283, 0.0030477804, -0.038908985, -0.022073625, 0.04074508, -0.019157477, 0.008647191, 0.015053268, 0.004391099, -0.019238481, 0.0045261057, 0.012960661, 0.0071283635, -0.03018754, 0.01274465, 0.018873962, -0.017348384, 0.002873959, 0.036208846, -9.1467163E-4, 0.009247972, -0.016173825, -0.025043776, -0.011023312, 0.021439094, -0.008505434, -0.0012049364, 0.008559437, -0.03412974, -0.01136758, 0.011833353, 0.005302395, 0.025624307, -0.0029566507, -0.02000802, -0.0035169292, -0.019062972, 4.0312213E-4, -0.0033042934, -0.03296868, -0.003959077, 0.026785366, 0.0030342797, 0.0012032489, -0.002718701, 0.021736108, 0.011340578, -0.011340578, 0.020318536, 0.025556803, 0.01196161, -8.716382E-4, 0.008923955, -0.019562498, -0.010989561, 0.025570303, -0.01449974, 0.029053481, -0.004056957, -0.025637807, 9.4842335E-4, -0.01215737, -0.03294168, -0.07689992, -0.0038780728, 0.031267595, 0.02272166, -0.030862574, -0.0018495943, 0.0027035128, 0.0235182, -0.0145537425, 0.01845544, -0.0104225315, -0.02644785, -0.018549945, 0.041555118, -0.0047522425, 0.008248921, 0.008599939, -0.015512291, -0.033751722, 0.01431073, -0.020575048, -0.020453542, -0.007897902, -0.004553107, -0.011279825, -0.01644384, 0.003245228, 0.026528852, 0.028675463, 0.0016555219, -0.012879657, -0.0313756, 0.020615552, 0.0059504285, -0.007162115, -0.025610806, -0.01449974, -0.00725662, 0.026420847, -0.03232065, 0.013986713, 0.0039016989, 0.004239216, -0.033481706, 5.931865E-4, -0.002323806, -0.025421796, 0.02216813, 4.6492997E-4, -0.020858563, -0.005997681, -0.006588336, -0.017982917, -0.008026159, 0.01864445, -0.027392898, 0.001756777, -0.0036181845, 0.0035844329, 0.02646135, -0.010645293, 0.021101575, -1.3627257E-4, 0.008397428, 0.018117923, -0.021776611, 0.015080269, 0.015255778, 0.02899948, 0.006196816, -0.017051369, 0.018023418, -0.017888412, 0.016025318, 0.0063250726, -0.007081111, -0.023383193, -0.014486238, -7.9316547E-4, -0.0025583804, -0.015647298, -0.016524842, 0.0029937776, -0.039935037, 0.0026427598, 0.023491198, 0.0031726619, 6.1132805E-4, 0.0076413895, -0.059133016, 0.017240379, 0.025840318, 0.03542581, -0.0079991575, -0.0061529386, 0.0064668297, 9.5854886E-4, -0.00411771, -0.0048129954, -0.010679045, -0.0549208, -0.0033329825, -0.083056234, 0.033022683, 0.017375385, 0.003942201, -0.006726718, 0.01880646, 0.0042189653, -0.016241329, 0.0024976274, 0.009700244, -0.03256366, -0.0016006754, -0.004725241, 0.008458181, -0.011860355, 0.014837257, 0.026434347, -0.013230675, 0.036046837, 0.002242802, 0.0025145032, -6.961292E-4, -0.014108219, 0.01119207, -0.01980551, 0.0020284785, -0.010341527, 0.015822807, 0.0019643502, 0.027568405, 0.01903597, -0.02018353, -0.0069866064, 0.04239216, -0.0059943055, -0.019900015, -0.008181417, -0.006260944, -0.02039954, -0.023477698, -0.02611033, -0.0023862466, 3.0334358E-4, -0.016997367, -0.008161166, 0.0022394266, 0.0020807935, -0.0026562605, 0.015728302, 0.024004225, -7.3409994E-4, 0.0033751721, 0.0014690437, -0.040097043, -0.0047184904, -0.0031743494, 0.0020774184, -0.0043607224, 0.010503535, -0.0039962037, 0.038125943, 0.0011796226, 0.013905709, -0.009673243, 0.008478432, -0.016538342, -0.009531486, 0.00470499, -0.007621139, 0.012420634, -0.0055757845, 0.017942416, 0.009315475, 0.022802662, 0.010679045, -4.5480445E-4, 0.010901806, -0.009139966, -0.02372071, 0.004745492, 0.005825547, 0.013696449, 8.944206E-4, 0.007978907, 0.013561442, -0.013196923, -0.022303138, 0.011225822, 0.0036046838, 0.019292483, -0.036964886, 0.013088917, -0.036991887, 0.001920473, 0.020723557, -0.007378126, 0.005646663, -0.02390972, 0.027041879, -0.0088092, 0.016686851, -0.0072633703, -0.0011990299, 0.016511342, -0.006487081, 0.008728195, -0.03434575, -0.030133536, -0.0016909612, -0.016160324, 0.0039016989, -0.015228776, -0.0067604696, 0.015512291, -0.021250084, -0.009916255, -0.018738955, -0.013095668, -0.028783469, -0.005974055, 0.017213378, 0.007992407, 0.016430337, 0.014094719, 0.013210423, -0.005943678, 0.008383928, -0.014540241, 0.032833673, -0.013507439, 0.006584961, -0.005818797, -0.012339629, -0.010240273, -0.02138509, -0.004549732, -7.066767E-4, -0.0028064556, -0.013986713, 0.11000361, -0.002225926, -3.8624625E-4, 0.006780721, -0.009342477, 0.0038780728, 0.008498684, -0.0049750037, -0.015120771, -0.020291535, -0.00411096, -0.0176319, 0.0050458824, 0.013385933, -0.03253666, 0.0353178, 0.011887356, 0.022519149, -0.0176319, -0.029188488, 0.023612704, -0.012164121, 0.0010496785, -0.011421583, -0.0047319913, -0.00724987, 0.007175616, 0.011516088, 0.013824705, -0.055946853, 0.0030950329, 0.0135276895, -0.020737058, -0.011529588, 0.013318429, -0.007567136, -0.024760263, 0.010037762, -0.0050897594, -0.006183315, 0.016713852, 0.032671668, -0.017942416, -0.025421796, 0.019130476, -0.02471976, -0.004850122, -0.027406398, -0.032077637 ], - "id" : "a60df45d-4ec6-418a-84b1-2f88d46251e7", - "metadata" : { - "name" : "Avant SLR 6 Disc Pro" - }, - "text" : "price: 999.99\nname: Avant SLR 6 Disc Pro\nshortDescription: Avant SLR 6 Disc Pro is a high-performance carbon road bike designed for riders who prioritize speed and handling. With its aero tube shaping, disc brakes, and lightweight carbon wheels, it offers the perfect balance of speed and control.\ndescription: ## Overview\nIt's right for you if...\nYou're a rider who values exceptional performance on fast group rides and races, and you want a complete package that includes lightweight carbon wheels. The Avant SLR 6 Disc Pro is designed to provide the speed and aerodynamics you need to excel on any road.\n\nThe tech you get\nThe Avant SLR 6 Disc Pro features a lightweight 500 Series ADV Carbon frame and fork, Bontrager Aeolus Elite 35 carbon wheels, a full Shimano Ultegra 11-speed drivetrain, and powerful Ultegra disc brakes.\n\nThe final word\nThe standout feature of this bike is the combination of its aero frame, high-performance drivetrain, and top-quality carbon wheels. Whether you're racing, tackling challenging climbs, or participating in professional stage races, the Avant SLR 6 Disc Pro is a worthy choice that will enhance your performance.\n\n## Features\nAll-new aero design\nThe Avant SLR 6 Disc Pro features innovative aero tube shapes that provide an advantage in all riding conditions, whether it's climbing or riding on flat roads. Additionally, it is equipped with a sleek new Aeolus RSL bar/stem that enhances front-end aero performance.\n\nAwesome bikes for everyone\nThe Avant SLR 6 Disc Pro is designed with the belief that every rider, regardless of gender, body type, riding style, or ability, deserves a great bike. It is equipped with size-specific components that ensure a perfect fit for competitive riders of all genders.\n\n## Specifications\nFrameset\n- Frame: Ultralight 500 Series ADV Carbon, Ride Tuned performance tube optimization, tapered head tube, internal routing, DuoTrap S compatible, flat mount disc, 142x12mm thru axle\n- Fork: Avant SL full carbon, tapered carbon steerer, internal brake routing, flat mount disc, 12x100mm thru axle\n- Frame fit: H1.5 Race\n\nWheels\n- Front wheel: Bontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, 100x12mm thru axle\n- Rear wheel: Bontrager Aeolus Elite 35, ADV Carbon, Tubeless Ready, 35mm rim depth, Shimano 11/12-speed freehub, 142x12mm thru axle\n- Front skewer: Bontrager Switch thru axle, removable lever\n- Rear skewer: Bontrager Switch thru axle, removable lever\n- Tire: Bontrager R2 Hard-Case Lite, aramid bead, 60 tpi, 700x25c\n- Max tire size: 28mm\n\nDrivetrain\n- Shifter: \n - Size 47, 50, 52: Shimano Ultegra R8025, short-reach lever, 11-speed\n - Size 54, 56, 58, 60, 62: Shimano Ultegra R8020, 11-speed\n- Front derailleur: Shimano Ultegra R8000, braze-on\n- Rear derailleur: Shimano Ultegra R8000, short cage, 30T max cog\n- Crank: \n - Size 47: Shimano Ultegra R8000, 52/36, 165mm length\n - Size 50, 52: Shimano Ultegra R8000, 52/36, 170mm length" - }, - "7f42e70a-8a4f-4fd6-9318-d457e237e9f4" : { - "embedding" : [ 0.011777901, 0.006042091, -0.0017071691, -0.03126852, -0.0066755363, 0.028261393, -0.011207105, -0.024474645, -0.014576197, -0.038702793, 0.0196716, 0.017416257, -0.036614515, -0.023374818, -0.012418307, 0.0024554697, 0.0052624666, -0.0056836028, 0.026660379, -0.032354422, 0.02525427, 0.009320691, -0.0023197313, 0.006511954, 0.0011964106, -0.007121036, 0.03873064, -0.0077823247, -0.0020378134, -0.017569399, 0.022094006, 0.013601665, -0.013539017, -0.01727704, -0.0030628112, 0.009271964, 0.013991478, 0.0022118369, 0.045329604, 0.00901441, 0.02042338, 0.0078032073, -0.021787725, -0.0072532934, -0.01191712, 0.0060629738, 0.025727613, 0.02078535, 1.2290399E-4, 0.022330677, -0.021509288, 0.028372768, 5.090183E-4, 0.0064527863, 0.016525257, -0.012926455, 0.020715741, 0.010016785, 0.032883454, -0.004855252, 0.0031950688, 0.007991153, -0.025003675, 0.01638604, -0.02525427, -0.03611333, -0.0062857238, 0.011965846, -0.015035618, -0.006491071, 0.010928667, 0.028428456, 0.024989754, -0.011436815, 0.0128846895, -0.01102612, 0.0050014313, 0.003814592, 0.008102528, -0.012954298, 0.007455161, 0.009007449, -0.021634584, 0.0058541456, 0.031045767, -0.00521722, 0.01660879, -0.013789611, -0.0036266467, -0.01594054, -0.0076848716, 0.017430179, 0.0049944706, 0.017764304, 0.012279089, -0.0013904467, -0.015314056, -0.0014617962, -0.0016262482, -0.008701168, -0.015188759, 1.5585967E-4, -0.013385877, -0.01638604, -0.0073646684, -0.023806395, -0.0068878448, 0.009689621, 0.013525096, -0.006087337, -0.020799272, 0.039454576, 0.0031324204, -0.004427154, 0.014040205, -0.013211854, 0.027718442, -0.0071697626, 0.0142003065, -0.021356147, 0.018822366, 0.017332727, -0.0032977427, -0.010009823, -0.011951924, 0.023931691, 0.016734086, 0.009118824, -0.019379241, 0.0011929302, 0.0017123899, -0.005833263, -0.005631396, 0.00566272, -0.017430179, 0.014966009, -0.008304395, 0.0069156885, -0.03689295, -0.012397424, -0.0040094983, 0.016803695, -0.015077384, 0.009585206, -0.009522558, -0.0021022023, -0.014492665, 0.010483167, 0.0013582524, -0.048141822, 0.017708616, -0.015188759, 0.042879354, 0.0016279885, 0.014409134, 0.004416713, 0.0064040595, 0.016260743, -0.016817618, -0.006713821, -0.012905573, 0.026047817, 0.009021371, -0.017402336, 0.044438604, 0.008819504, 0.003106317, -0.026660379, -0.0074621215, -0.00633445, -0.0039468496, 0.016664477, -0.029096706, 0.0071697626, -0.01229301, 0.022692647, 0.023082457, -0.005899392, -0.006891325, 0.013831377, 0.011833589, -0.007392512, 0.002429366, 0.0018742316, -0.032911297, 0.022316756, 0.02405699, 1.4288949E-5, 0.025059363, 0.014854634, 0.026242722, -0.013573822, -0.015912697, 0.0056139934, -0.6045432, -0.040289886, -0.0090700975, 0.0017541555, -0.014395212, 0.02369502, -0.0045802947, 0.004743877, -0.031463422, 0.0041243536, -0.030238299, 0.018864132, -0.015105228, -0.00826959, -0.006243958, -0.03761689, 0.0084227305, -0.009585206, 0.035556454, 0.008276551, -0.024669552, -0.015662102, -0.014283838, 0.011596916, 0.002041294, 0.0035674789, 0.014492665, -0.015244447, -0.018808445, -0.0081999805, -0.035278015, 0.029486518, -0.014325603, -0.010845136, 0.05006304, -0.053543508, -0.006449306, 0.01713782, 0.01676193, 0.026256645, -0.0393432, -0.028901799, -0.018195882, -0.019253945, 0.003664932, -0.0026555965, 0.035695672, -0.0126619395, 0.0015853528, -0.023889927, 0.01087994, 0.001206852, 0.030823017, 0.0025807663, -0.0015070423, -0.013030869, 0.027801972, -0.0045315684, -0.008262629, -0.001237306, -4.76824E-4, 0.004945744, -0.011736135, 0.00797027, -0.019198257, 0.017068211, -0.060476597, -0.013448525, 0.030739486, -0.013817455, -0.016246822, 0.02831708, -0.0070862314, 0.026562925, 0.0072532934, 0.034219954, 0.022455974, -0.015787398, 0.009376379, 0.037366297, 0.010246496, 0.009042254, -9.01441E-4, -0.030711642, 0.032020297, 0.016845461, -0.008018997, -0.0017419738, 0.03903692, 0.006825196, 0.031157142, 0.007308981, 0.005593111, -0.017527632, -0.015453274, 0.038535733, 0.0011093989, 0.019657679, -0.0075734966, -0.032298736, -0.013622548, 0.014798947, 0.014715415, -0.007211528, 0.010044629, 0.014116775, 0.002391081, -0.011638682, -0.0057149273, -0.018195882, -0.01147162, -0.0029583971, -0.028790424, -0.005617474, -0.0066859773, -0.031769704, 0.015216603, -0.0022501221, 0.0063588135, -0.018710991, -0.0045802947, 0.01802882, 0.016706243, 0.019267866, -0.014144619, -0.0030662916, 0.025825066, 0.012181635, -0.0045002443, -0.012954298, 0.01705429, 0.009049214, 0.05485216, -0.0040477836, 0.04170992, -0.0111444555, 0.019240022, 0.019031195, 0.0047369157, -0.016664477, -0.034748983, 0.016330352, -0.010030706, -0.016970757, 6.5389276E-4, -0.018140195, -0.004604658, 0.025490941, -0.0013582524, 8.074684E-4, -0.0046220603, -0.011972807, -0.027064113, 0.010392675, -0.004938783, -0.02227499, -0.010072472, -0.027620988, -0.0035744398, -0.010371792, 0.018724913, 0.010998276, -0.013671275, -0.017959211, -0.008659402, -0.008916957, 0.0046916697, 0.008137332, -0.006727743, -0.040985983, -4.3636357E-4, -0.020506913, -0.015244447, 0.0066442117, -0.01825157, 0.012968221, -0.010956511, 0.008283512, 0.018112352, -0.014172463, -0.005982923, 0.018237649, -0.052346226, 0.020813193, 0.019838663, 0.018669225, 0.031853236, 0.0073368247, -0.007503887, 0.0041313143, -0.0067173014, -8.286503E-6, -0.017875679, -0.004611619, 0.015188759, 0.0016749748, 0.01683154, -0.021551052, 0.014423056, 0.02376463, 0.030906549, 0.0077823247, 0.013030869, -0.026549004, 0.016567023, -0.040039293, 0.026200958, -0.017263116, 0.00901441, 0.017221352, 0.026312333, -0.017068211, -0.014061088, 0.017819991, 0.010462284, 0.008889114, 0.004604658, 0.02153713, -0.001750675, -0.01110269, 0.014464822, -0.0054121264, 0.029737111, 0.014464822, -0.012432229, 0.007040985, 0.01720743, 0.019643757, 0.009898448, -0.013371955, 0.0056035523, 0.006362294, 0.003978174, -0.005154572, 0.010030706, -0.0074830046, 0.018599616, -0.037811797, 0.030266143, -0.0037484632, 0.023263443, 0.051483072, 0.017652929, -0.010030706, 0.031073611, -0.011478581, 0.03873064, 0.020353772, 0.020827116, -0.008227824, 0.015119149, -0.0013834857, 0.0059411577, 0.013406759, 0.004260092, -0.023848161, 0.008151254, 0.031908922, -0.016246822, 0.0111444555, 0.02592252, 0.020910647, 0.018376866, 0.023597568, 0.020757506, -0.023082457, -0.022400286, 0.009926292, -0.002331913, -0.036224704, -0.008708129, -0.024780927, -0.006525876, 0.005774095, -0.00499099, -8.970904E-4, 0.015077384, 0.0030036431, 0.00975923, 0.023639333, -0.014993853, -0.017374491, 0.005906353, 0.025393488, -0.011165339, -0.0041556777, 3.1454721E-4, 0.006310087, 0.010789448, 0.030293986, -0.0017158703, 0.003405637, -0.004632502, -0.003097616, -0.014687572, 6.756457E-4, 0.017221352, -0.018850211, -0.013998439, 0.0045559313, -0.02689705, 0.025616238, 0.023430506, -0.013894025, 0.022219302, -0.007879778, 0.007427317, -0.010691995, 0.018975507, -0.0021718114, -0.016622711, -0.01653918, 0.0025024558, -0.017847836, 0.006839118, -0.0017419738, -1.8424723E-4, -0.015425431, 0.023263443, -0.028038643, 0.011645643, -0.01713782, -0.018933741, -0.018321179, 0.002867905, 0.036530983, -0.004611619, 0.011005238, -0.0020813195, 0.012397424, -0.031853236, 0.0026468954, -0.0039050842, 0.037728265, -0.012209479, -0.0076639885, -0.0018150636, -0.018641382, -0.005596591, -0.006898286, -4.933562E-4, -0.014979931, 0.023138145, -0.00834616, -0.018349024, -0.018836288, 0.010517972, 0.010796409, 0.006943532, 0.013197931, -0.0013025649, -0.003471766, 0.010622386, 0.0011189702, -0.012056339, -0.015550727, 0.039872233, 0.0016636633, -0.029904174, 8.7142194E-4, 0.010295222, 0.008909996, 0.015954461, 0.008972645, 0.010399636, 0.019128649, 0.0040094983, 0.031045767, 0.0014443939, -0.00975923, -0.013824415, 0.021690272, 0.012863806, -0.011659565, 0.035138797, -0.0112558305, -0.020980256, -0.009056176, -0.011200143, 0.0025529226, 0.008304395, -0.0049109394, -0.021258693, -0.020089258, 0.019643757, -0.024516411, 0.02085496, -0.0076848716, -0.016274665, -0.011346323, -0.025296036, -0.0027756726, -0.013894025, -0.014283838, -0.032298736, 0.002220538, -0.03427564, 0.017931366, 3.8502668E-4, -0.0020378134, 0.03054458, -0.027453925, -0.008701168, 0.010782488, -0.04312995, 0.017471945, -0.011207105, -0.009668738, 0.015676023, 0.0059864037, 0.029848486, 0.0068808836, 1.5988397E-5, -2.8452819E-4, 0.010336988, -0.013636471, 0.017040368, -0.018571774, -0.0082208635, 0.008896074, 0.010086394, 0.0023736786, -0.016107602, -0.012418307, 8.5488975E-4, -0.05192857, 0.0060629738, 0.014798947, 3.1476474E-4, -0.0059481184, -0.010712878, -0.0062161144, -0.016706243, -0.026702145, 0.0026312333, -0.016413882, -0.019240022, 0.0042496505, -0.021481443, 0.00514065, -0.0033864945, -0.007719676, -0.0048448103, -0.008297434, 0.009278925, -0.0437982, 0.048448104, 0.01607976, -0.019824741, 0.04900498, 0.016956836, 0.006578083, -0.019838663, 0.027272942, 0.019908272, 0.029291611, 3.1389465E-4, -0.0076083015, -0.026340175, -0.022233224, -0.0030732525, 0.0034212992, 0.009606089, -0.008283512, -0.0036927757, -0.0013991478, 0.0067312233, 0.007343786, -0.010093355, -0.017346648, -0.034387015, -0.004566373, -0.029932018, 0.027899425, -0.023959536, -0.0029340337, -0.011053964, -0.029402986, -0.022038318, -0.005617474, -0.017068211, -0.016191134, 0.0041904827, 0.024516411, 0.02741216, 0.01504954, 1.8250699E-4, -0.010775526, -8.27046E-4, 0.0077753635, -0.02965358, 0.010761605, -0.039538108, 0.01869707, 0.047278665, -0.010406597, -0.015815243, -0.021105552, -0.027815893, 0.027704518, -0.013685197, 0.00633445, -0.005937677, -0.034470547, 0.011833589, -0.036419608, 0.008290472, -0.007281137, -0.02636802, -0.022302834, 0.026061738, -0.0010293481, 0.0022414208, 1.9806034E-4, -0.008889114, -0.03344033, 0.036196858, -0.0051128063, 0.020673975, -0.0033168853, -0.03472114, -0.016942915, -0.036865108, -0.0038389552, -0.02778805, 0.020367693, -3.9851348E-4, 0.0052555054, 5.903742E-4, 3.7654303E-4, -0.0097383475, 0.009529519, 0.00841577, -0.013030869, -0.02338874, -0.008353122, -0.027815893, -0.024530333, -0.016650556, 0.001832466, 0.0029932018, 0.030488893, -0.01378265, 0.009898448, 0.008429691, -0.004176561, 0.026994504, -0.0064980322, 0.012209479, 2.7930748E-4, -0.007281137, -0.012634096, -0.014297759, -0.0033221059, 3.941629E-4, 0.017513711, 0.034916047, -0.031017924, -0.014325603, 0.025087208, -0.009125785, 0.009153629, -0.022567349, 0.015355821, 0.03293914, 0.038257297, -0.0076639885, -0.015341899, -0.019421007, -0.0012642797, 0.0027095438, -1.5596843E-4, -0.0012042416, -0.020325929, -0.0052555054, 0.0040999902, -0.020701818, 0.029625736, 0.011541229, -0.0087568555, 0.009445988, 0.004427154, -0.0032020297, 0.0026938815, 0.0020552159, 0.058917347, 0.0043088184, -0.002003009, 0.03903692, 0.012091143, -0.029959861, -0.0027861139, 0.009188433, 0.032131672, -0.031324204, 0.009244121, -0.011047003, 0.015327977, -0.011757018, -0.012912533, -0.0019577628, 7.913712E-4, -0.023221677, -0.00730202, 0.0028696451, -0.013156166, -0.022998927, -0.009334613, 0.005558306, -0.036085483, -0.01638604, 0.0026207918, 0.010295222, -0.052039944, -0.004865693, -0.052095633, 0.013921869, 0.016901148, -0.001773298, -0.027815893, -0.0050188336, 0.018084507, -0.02525427, 0.008680285, 0.007183684, 0.012132908, -0.030767329, 0.0050675604, 0.01021169, -0.009919331, 0.01422815, 0.007838012, -0.009042254, -0.02042338, 0.004336662, -0.019086882, -0.010114238, -0.008464497, 3.8781377E-6, 0.010664151, -0.0016627932, -0.0133301895, 0.0070653483, 0.0275653, 0.0028957487, 0.008360082, 0.010469246, -0.031240674, 0.030516736, -0.0077475198, -0.011283674, -2.712589E-4, -0.03196461, 0.0022605634, 0.024739161, 0.004949224, -0.009564324, -8.018126E-4, -0.034025047, -0.027607067, -0.016107602, 0.03193677, -0.0022083565, 0.011931041, 0.0126689, -0.0026538563, -0.006132583, 0.031073611, -0.008840387, -0.010469246, 0.0025320398, -0.022094006, -0.029458674, -0.023346974, -0.0085341055, 0.04633198, 0.008575872, -0.018112352, -0.012543604, 0.0015592492, -0.040958136, -0.020270241, -0.008102528, 0.010810331, 0.006080376, 0.0043714666, 0.0077475198, 0.0090700975, 0.010295222, 0.018752757, -0.008631558, 0.017694695, 0.01087994, 0.011492503, 0.006337931, 0.022010475, -0.0573581, -7.8789075E-4, 0.01958807, 0.010747682, 0.018390788, 6.417111E-4, -0.009787073, -0.003912045, 0.012432229, -0.011951924, 0.00484133, 0.008715089, 0.008165176, -0.047111604, -0.008067723, -0.007942426, 0.007566536, -0.0042948965, 0.004566373, -0.018293336, -0.0013251879, 0.010413558, -0.0033864945, -0.0096269725, 0.004336662, -0.028261393, 0.035974108, 3.7415023E-4, -0.016873306, 0.043547604, 0.006494552, 0.01065023, -0.001781129, 0.013838338, -0.0010850356, -0.018710991, 0.008923918, -0.014269915, -0.007740559, -0.014325603, 0.002465911, -0.0012103325, 0.012641056, -0.0016384299, -0.012536643, -0.017430179, 0.018585695, 0.022929318, -0.020270241, -0.017318804, 0.013880103, 0.0076987934, 0.021175163, 0.006101259, -0.00886127, -0.025087208, 0.0026207918, -0.0019159971, -0.026131347, -0.012265166, 0.023848161, -0.014952087, 0.0075943796, -0.0044828416, 0.17708617, -0.0154950395, 0.0054712943, 0.039649483, 0.024864458, -0.0032437954, 0.02116124, 0.0048030447, 0.014165501, -0.007517809, 0.026507238, 0.00863852, -0.011715253, 0.006303126, 0.02152321, -0.0067312233, -0.052791726, -0.017861757, -0.015425431, 0.0040582246, -0.0054330095, 0.013058713, -0.018126274, -0.021397913, 0.029764956, 0.008909996, -0.0026329735, -6.647692E-4, 0.017750382, 0.008186059, -6.712951E-4, 0.0023754188, -0.006477149, -0.012195557, 0.007531731, -0.013079596, 0.0018985949, -0.0071628015, 0.015467196, 0.020172788, 0.0027843737, -0.016622711, 0.026131347, -0.04761279, -0.0058054193, -0.01393579, -0.016901148, 0.0036440492, -0.0072672153, -0.020353772, -0.033022672, 0.01504954, 0.026910972, 0.027384317, -0.001989087, -0.0075595747, 0.015968384, 0.008784699, -0.007211528, -0.0042113652, -0.031129299, 0.04084676, -0.007427317, 0.023862083, -0.007218489, 0.0036753733, -0.012815081, -0.025393488, 0.0075734966, 0.005819341, -0.02331913, -0.014255994, -0.004984029, 0.007281137, -0.020966334, -0.04552451, 0.008053801, 0.021718115, 0.017959211, 0.018432554, 0.019699445, -0.01669232, 0.009118824, 0.0052694273, -0.0044967635, -0.020590443, 0.01758332, -0.0069122077, 0.0047717206, 0.0031271998, 0.014221189, 0.013455486, 0.003083694, 0.010538855, 0.0023771592, -0.005199818, -0.02614527, 0.024558177, -0.027259018, 0.0055235014, -0.022233224, 0.047779854, -0.011123573, 0.014812868, -0.02718941, -0.013211854, -0.01914257, 0.014896399, 0.0069609345, -0.0371157, 0.012940377, -0.02042338, -0.002340614, -0.009696581, -0.0054469313, -0.019824741, 0.0022170576, 0.005596591, 0.011652604, -0.0061395443, 0.035807047, 8.951327E-5, 0.031769704, -0.011123573, 0.014617962, -0.024182286, -0.015133072, -0.0011676968, -0.01705429, -0.026799597, 0.032521486, 0.017792149, 0.0262288, -0.020896725, -0.0411252, -0.024446802, -0.013100479, 0.002852243, 0.007872817, 0.0013582524, -0.004193963, 0.01482679, 0.005408646, -0.004677748, 0.027008425, -0.041097358, -0.0033308072, -0.01110269, 0.0061117006, -0.008116449, -0.020437304, 0.001587093, 0.017165665, 0.001281682, 0.024669552, 0.01653918, -0.014436978, -0.041821294, -0.030154768, 0.0050397166, -0.04649904, -0.0053216345, 0.0083322385, -0.015773477, -0.01415854, -0.021704193, -0.17775442, -0.005579189, 0.027231175, 0.0065502394, 0.0012381762, 0.013726963, 0.03822945, 0.0051302086, -0.024836615, 0.0102813, 0.0137548065, 0.0037797873, -0.051009726, -0.015425431, 0.0010389194, -0.019170413, -0.015411508, 0.0020499951, 0.030433206, 0.032437954, -0.0021996552, -0.0044201934, 0.0041069514, 0.0071697626, -0.0030889146, 0.023110302, 0.008234785, 0.025142895, 0.016706243, -0.009766191, -0.009466871, -0.045552354, 0.015801322, -0.0029705788, 0.006943532, -0.013615588, -0.007991153, 0.030795174, -0.016706243, 0.036363922, -0.017012523, 0.016330352, 0.022455974, 3.616423E-5, 0.02414052, 0.019128649, 0.0026660378, 0.008749895, -0.005878509, -9.275445E-4, 0.050703447, -0.006654653, 0.023040693, -0.020451225, 0.033941515, -0.011304557, -0.011443776, 0.0019856065, 0.027064113, 0.0060246885, -0.027481768, -0.029041018, 0.016859382, -0.0064632273, 3.008429E-4, -0.026938817, -0.021592818, 0.004806525, -0.0123486975, -0.020075334, -0.018460399, -0.011478581, 0.020994179, 0.004698631, 0.047195137, 0.012912533, -0.0090700975, -0.009898448, 0.016775852, 0.012341737, -0.031546954, 0.045635886, -0.027537456, 0.021620663, -0.0035048304, -0.0102743395, -0.017026445, -0.0042322483, -0.0059028724, -0.011596916, -0.022135772, -0.02242813, 0.0032194322, -0.002204876, 0.019156491, 0.0142003065, 0.0022344599, -0.008172137, -0.010128159, -0.0049144197, 0.01147162, -0.0038563577, -0.05371057, 0.015314056, 0.047195137, 0.013740884, 0.005074521, 0.024210129, 0.010378753, 0.0016723645, -0.0052241813, 0.019100804, 0.0077753635, 0.02965358, 0.004291416, 0.014659728, -0.036141172, -0.013121361, 0.015369743, 0.014353447, 0.036837265, -0.014409134, -0.009675698, 0.011227987, -0.0059341965, -0.026785675, -0.07356315, -0.025240349, 0.01318401, 0.0125714475, -0.028901799, -0.0122373225, -0.0065989657, 0.021049866, -0.0042426893, 0.038563576, -0.018307257, -0.004949224, 0.0061360635, 0.029152393, -0.0035814007, 0.03538939, -0.006807794, -0.012606252, -0.035723515, 0.02696666, -0.017652929, -0.020312006, -0.021105552, -0.010886901, -0.017471945, -0.0010336988, -0.009995902, 0.021495365, 0.020604366, -0.0050014313, 0.018571774, -0.0424617, -0.010524933, -0.009773152, -0.025323879, -0.021704193, -0.012195557, -0.007733598, 0.024307583, -0.04855948, -0.0078658555, 0.00521374, 0.0012634096, -0.031379893, -0.010824253, -0.0153836645, -0.0057636537, 0.03939889, 0.003160264, -0.016427806, -0.012313893, -0.01609368, -0.010914745, -0.028846111, 0.018836288, 0.0054260483, -0.013448525, 0.021411834, -0.02898533, 0.0033116646, 0.012258206, 0.016358195, 0.00834616, 0.018070586, 0.017179586, -0.011805745, -0.005488697, 0.011241909, 0.041097358, -0.018975507, 0.009097941, 0.017332727, -4.6986307E-4, 0.04084676, -0.013351073, 0.030628111, -0.014617962, -0.012425268, 0.026729988, 0.0034108579, -0.021592818, -0.006348372, 0.016330352, -0.048615165, 0.009995902, 0.026604692, 0.01460404, 0.0035883617, 0.0076222233, -0.03360739, 0.033913672, 0.017123898, 0.0524576, -0.025212504, 5.2337523E-4, -0.016399961, -0.003978174, 0.0022222784, -0.02427974, -0.0036231664, -0.044689197, 0.0018150636, -0.08186059, 0.029347299, -0.0056731617, -0.013128323, -0.033189736, 6.238737E-4, 0.014743259, 0.018293336, 0.023152068, 0.0080886055, -0.012780275, 0.0061082197, -0.012522721, -0.020799272, -0.009731386, 0.016191134, 0.017750382, -0.006727743, 0.0016949875, 0.017917445, -0.019922195, -0.005060599, -0.010288261, 0.034219954, -0.018237649, 0.009230199, 1.00335346E-4, 0.0022831864, -0.0028887878, -0.009592167, 0.037951015, -0.0019751652, 0.007441239, 0.045134697, -0.0030036431, -0.0022831864, -0.006362294, 0.0029288132, -0.017931366, -0.020465147, -0.048002604, -0.011854472, -0.005878509, -0.00886127, -0.0062335166, 0.017346648, 0.015884852, 0.012933416, -0.0055722278, 0.032298736, 0.020131022, 0.003783268, 0.018042741, -0.036920797, 0.008408809, -0.014116775, -0.006605927, 0.0068286764, 0.005502619, 0.0047682403, 0.0515666, 0.0014783285, -0.0040477836, -0.04505117, -0.001579262, -0.015258368, -0.022915397, -0.0024189246, 0.0134415645, -0.025588395, -0.027718442, -0.004514166, -0.0039224867, 0.026562925, -0.014715415, 0.005502619, -6.8869744E-4, 0.018321179, -0.036141172, 0.015286212, 0.014367368, -0.008659402, 4.7203837E-4, 0.0070966724, 0.009056176, -0.030823017, -0.01736057, 0.013392838, 0.012091143, 0.015620337, -0.037756108, 0.017708616, -0.01415854, -0.005074521, 0.0025128974, 0.00849234, -0.0090700975, -0.010169925, 0.011415932, 0.007726637, -0.019936116, 0.006508474, 0.0050849626, -0.008561949, 0.0046916697, 0.020757506, -0.017513711, -0.012766354, 0.0048030447, 0.008882152, 0.0011433335, -0.018376866, 0.010991315, 0.011339362, -0.02018671, 1.5868754E-4, -0.014269915, 0.0035448559, -0.02867905, 0.05371057, 0.006477149, 0.014395212, 0.024613865, 0.016803695, 0.009160589, -0.024432879, 0.022261068, -0.0257833, 0.010156003, -0.008130372, -0.0055617867, -0.009752269, -0.01318401, -0.018070586, -0.02816394, 0.018237649, 0.0036022835, 0.012334776, 0.025964284, 0.12986319, 0.011415932, -0.017012523, -0.0018168038, -0.015689947, 0.024224052, 0.004141756, -0.041626386, 0.0078658555, -0.027300784, 0.013657353, 0.0034073773, -0.026242722, 0.0016627932, -0.019880429, 0.019407084, 0.009501675, 0.030683799, -0.006588524, -0.0067381845, 0.028790424, -1.0272816E-4, 0.010664151, -0.0013747845, -0.007427317, -0.004611619, 0.042211104, 0.024989754, -0.0021039424, -0.016594868, 0.016789773, 0.013295385, -0.020966334, -0.014409134, 0.0030541099, -0.034888204, -0.0025337802, 5.5578712E-5, 0.03644745, -0.02414052, 0.010162964, 0.01005855, -0.012982142, -0.009585206, 0.0067660282, -0.012279089, -0.0036858148, -0.038786326, -0.060365222 ], - "id" : "7f42e70a-8a4f-4fd6-9318-d457e237e9f4", - "metadata" : { - "name" : "Voltex+ Ultra Lowstep" - }, - "text" : "| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | 6.0 |\n| H — Chainstay length | 48.5 | 48.5 | 48.5 | 48.5 |\n| I — Offset | 5.0 | 5.0 | 5.0 | 5.0 |\n| J — Trail | 9.0 | 9.0 | 9.0 | 9.0 |\n| K — Wheelbase | 111.8 | 112.3 | 113.6 | 114.8 |\n| L — Standover | 42.3 | 42.3 | 42.3 | 42.3 |\n| M — Frame reach | 36.0 | 38.0 | 38.0 | 38.0 |\n| N — Frame stack | 62.0 | 62.0 | 63.9 | 65.8 |\n| Stem length | 8.0 | 8.5 | 8.5 | 10.5 |\n\nPlease note that the specifications and features listed above are subject to change and may vary based on different models and versions of the Voltex+ Ultra Lowstep bike.\ntags: [bicycle, road bike, professional]" - }, - "24caa7c1-d0af-4883-9598-41a2b0f3a4e9" : { - "embedding" : [ 0.011843502, 0.0025021005, -0.017755095, -0.018648945, -0.016197631, 0.008681172, -0.018784376, -0.0024360775, -0.018296821, -0.014288044, 0.011958619, 0.005220892, 0.006080883, -0.0048044394, -0.01149815, 0.016590383, 0.0055188416, -0.0015769327, -0.016035112, -0.019881373, -0.0020991913, -5.9124397E-4, -0.0039207474, -0.004452317, -0.0063178884, 3.483134E-4, 0.031095117, -0.0048992415, -0.019542793, -0.025501788, 0.014789141, 0.011416892, -0.002476707, -0.0019942317, -2.1941521E-5, 0.0055052983, 0.011985704, -0.002249859, 0.023687003, 0.027316572, 0.025908083, 0.009798483, -0.017876983, -4.0587186E-4, -0.011328861, 0.020477273, 0.018323908, 0.009493762, -0.01209405, 0.030526303, -0.0136311995, 0.01623826, -0.009967772, -5.8150984E-4, -3.364631E-4, -0.010861622, 0.00645332, 0.015845507, 0.020016804, 0.009520848, 4.103157E-4, 0.0129879, -0.025637219, 0.0029456392, -0.009405731, -0.029090727, 0.008220703, 0.01576425, 6.331432E-4, 5.793937E-4, 0.020057434, 0.04853872, 0.017077936, 7.114396E-4, 0.015452757, -0.014734969, -7.338705E-4, -0.017186282, -9.547934E-4, 0.010888708, 0.021520097, -0.029822059, -0.03242235, 0.0036871277, 0.025095493, 0.0057897046, -0.0121549945, 0.0012671328, -9.700295E-4, 0.0031538655, -0.010096433, 0.009920372, 0.0059589944, 0.02141175, -0.009324472, 0.0044963323, -0.0026984764, -0.006995047, -0.0064837923, -0.031203462, -0.010861622, 0.010922566, -0.014748511, -0.021018999, -0.01461308, -0.0253799, -0.03423713, 8.070882E-4, -0.0042288546, -0.019840743, -0.013211361, 0.021736786, 0.0057930904, 0.0025241082, 0.006487178, -0.015588188, 0.028007274, -0.0020331682, 0.01808013, -0.016847702, 0.018527055, 0.031176375, 0.004499718, -0.035835225, 2.2367391E-4, 0.03586231, -0.0091484105, -0.024716284, -0.0019993105, -0.0146401655, 0.02208891, -0.007157565, 0.024079755, 0.024174556, -0.010536586, 0.01145075, -0.004418459, 0.013157189, -0.030905513, -0.006439777, 0.0048992415, 0.015831964, -0.007482601, 0.0022803312, -0.003947834, -9.350606E-6, 0.0020467115, 0.0124664875, 0.009602107, -0.01594031, 0.010820992, 0.011653897, 0.030309612, 0.038895983, 0.014477648, 0.007062763, -0.004662236, 0.020572074, -0.016170545, -0.0021990722, -0.03106803, 0.015561101, -0.0010377454, -0.02133049, 0.01905524, 0.0266665, 0.010218321, -0.009541162, -0.0038056306, -0.0048349113, -0.027140511, 0.0136311995, -0.02611123, 4.469246E-4, 0.005390181, 0.032557778, 0.010611073, -0.0046216063, -0.013935921, 0.0018283279, -0.0011249295, 0.023483856, 0.027018623, 0.014003637, -0.0057930904, 0.00893172, 0.00782118, -0.005264907, 0.002886388, -0.005935294, 0.03299116, -9.2178193E-4, -0.012419086, -0.0049669575, -0.6063006, -0.03653947, 0.004889084, -0.011430435, -0.010055803, 0.018134303, 0.005413882, 0.016102828, -0.025704935, 0.0021855289, -0.03380375, 0.017159196, -0.008660857, 0.0033282337, -0.026720673, -0.011003825, 0.0068697724, -0.011592953, 0.018499969, -0.011735156, -0.035537276, -0.016644554, -0.012452944, 0.005918365, 0.0148704, 8.5618225E-4, 0.016739357, -0.013448367, -0.005610258, 0.010692332, -0.03683742, 0.055743683, 0.012588376, -0.00459452, 0.045315444, -0.030120008, -0.005606872, 0.010489184, 0.0020010034, 0.0260706, -0.021032542, -0.024932975, -0.0192313, -0.026246661, -0.01901461, 0.009547934, 0.048701238, -0.026314378, 0.015967397, -0.05368512, -0.008166531, 0.0037040568, 0.02212954, -0.009053608, -0.0019806884, -0.019962631, 0.006206157, 3.167832E-4, 0.008836918, 0.00863377, 0.0034145715, 0.023700546, -0.025136122, 0.00167766, -0.020328296, 0.007448743, -0.02751972, -0.017836355, 0.009493762, -0.012723807, 0.0051159323, 0.021939933, -0.017985329, 0.0043947585, 0.026233118, 0.027126968, 0.043527745, -0.02559659, -0.001671735, 0.022793153, 0.018391624, 0.004448931, 0.013306164, -0.019109411, 0.03913976, 5.4553576E-4, -0.016400779, -0.01790407, 0.024079755, 0.0025985956, 0.02456731, 0.0032842185, 0.014694339, -0.027059251, 0.007577403, 0.030797167, 3.4429276E-4, 0.011789328, 2.5684409E-5, -0.032557778, -0.008518653, 0.0028914667, 0.036431126, -0.016427863, 0.015412127, 0.032314003, 0.0040189354, 0.016549753, 0.023334881, -0.011396577, 0.0034433508, -0.02008452, -0.03507681, 0.012588376, -0.005430811, -0.032205656, -0.015100634, 0.025677849, 0.016116371, -0.01431513, 0.008315505, -0.0108954795, 0.037270803, 0.0010741426, -0.027397832, 0.0044286163, 0.01837808, 0.00645332, -0.014707882, 0.008877547, 0.026395638, 0.010116748, 0.025095493, -0.012486802, 0.053089224, 0.0038157878, 0.016956048, 0.007191423, -0.0019366732, -0.03380375, -0.027126968, -0.0013788639, -0.009581792, -0.017687378, -0.018039502, -0.008979121, -0.023957867, 0.016996678, 0.010631388, -0.007794094, -0.03063465, 0.01222271, -0.01786344, 0.012615462, -0.001973917, -0.027059251, -0.042119257, -0.040900372, -0.012710264, -0.022738982, 0.011653897, 0.012500345, -0.016725814, -0.024729827, 0.004313499, 0.0059420653, 0.005132861, 0.016942505, 0.0055933287, -0.042065084, -0.01564236, -0.010286037, -0.01816139, 0.0078482665, -0.006896859, 0.011606496, -0.025759108, -0.013028529, 0.01538504, -0.026287291, 0.0014939809, 0.001696282, -0.042444292, 0.012303969, 0.023402596, 0.014789141, 0.02004389, 0.022346228, -0.012723807, 0.018296821, -0.019637596, 0.0060876547, -0.019881373, -0.013387423, 0.0016277196, -0.0013814033, 0.0072252806, -0.016549753, -0.011376262, 0.03179936, 0.020247038, 0.012852468, 0.03683742, 0.0119044455, 0.011592953, -0.026165403, 0.02559659, -0.008105587, 0.012547746, 0.027668694, 0.014694339, -0.036051918, -0.0011232366, 0.008295191, -0.005349552, -0.009947457, 0.017145652, 0.032395262, -0.002656154, -7.3852594E-4, -0.004333814, 0.0062840306, 0.03055339, 0.0065819803, -0.01021155, 0.027628066, 0.015628817, 0.03978983, -0.002708634, -0.029117813, 0.0050922316, 0.014829771, 0.025190296, -0.015886137, 0.0010512886, 0.01192476, 0.036079004, -0.018215563, 0.04312145, -0.005850649, 0.02995749, 0.027194684, 0.017660292, -0.0117961, 0.024458963, 0.009493762, 0.04054825, 0.022576462, 0.0146401655, 0.022061823, -0.005217506, 0.006754656, -0.009663051, 0.027154054, 0.013008214, -0.004889084, 0.011037683, 0.03144724, -0.0014465798, 0.022928586, 0.03242235, 0.017497774, 0.0041171233, 0.01760612, 0.016062198, -0.01808013, -0.0101573765, -0.008308735, -7.503762E-4, -0.028142706, 8.345978E-4, -0.020219952, -0.01752486, 0.011647126, 0.0017309863, -0.0029202458, 0.01709148, -5.531538E-4, 0.021262776, 0.030661736, -0.010245408, -0.026693586, 0.009256756, 0.035997745, -0.0022413945, 0.008152988, 0.014721425, -0.0076315757, -0.0063382033, 0.026896734, 0.014545363, 0.016563296, -0.014017181, 0.016170545, -0.024553766, -0.0060910406, 0.014531821, 0.001581165, 9.7341527E-4, -4.3634398E-4, -0.017822811, 0.0054071103, -0.0070289047, -0.011003825, 0.026449809, -0.004936485, 0.012744122, -0.03188062, 0.027235312, -0.015371497, -0.012540975, -0.035103895, -0.0130488435, -0.0010064268, -2.3573579E-4, -0.0056170295, 0.0018029345, -0.0229015, 0.01871666, -0.043961126, -0.009500533, -0.01709148, -0.01875729, -0.010272494, 0.02593517, 0.013651514, 0.0018232492, -0.007611261, -0.010997053, 0.0022583234, -0.011308546, -0.00910101, 0.0031724875, 0.039004326, -0.01738943, 0.015872594, -0.0076992917, -0.013990094, -0.017010221, -0.013143646, -0.0024750142, -0.019407362, 0.015032918, 0.02384952, -0.012866011, -0.010123519, -0.006280645, 0.008051414, 0.02922616, -0.0013907142, 0.0045200326, 0.008342592, 0.00786181, -0.004022321, -0.0068155997, 4.1306665E-4, 0.018188477, -0.011565867, -0.023456769, 0.01841871, 0.026436266, -0.028738605, 0.021574268, -0.0014558907, -0.0073945704, 0.020192865, 0.0013890213, 0.015032918, 0.005562857, -7.5249234E-4, -0.0016497273, 0.016102828, 0.0076586623, -0.016766444, 0.019718854, -0.017335257, -0.012168538, 0.0075570885, 0.020802308, 0.014897486, -0.01337388, -0.0101776915, -0.0074419715, -0.02995749, -0.0049330993, -0.031501412, 0.026801933, -0.003114929, 0.005996238, -0.013028529, -0.010956424, 0.014288044, 0.0063856044, -0.010319895, -0.038950156, -0.020138692, -0.027113425, 0.013820805, -0.0032740613, -0.004794282, 0.038435515, -0.02765515, 0.008051414, -0.017457144, -0.038354255, 0.014694339, -0.012730579, 0.0059251366, -0.002380212, 0.01786344, 0.038706377, -0.0070018186, 0.025623675, -0.004526804, 0.022915043, -0.025352813, 0.011782557, -0.009006208, 0.01568299, -0.0129879, 0.012412314, 0.00876243, 0.010374067, -0.006226472, 0.0050109727, -0.0110309115, 0.014531821, 0.018229106, 0.0073133116, 0.019095868, 0.00756386, 0.008843689, -0.01709148, -0.017673835, -0.029551195, -0.011606496, -0.009033293, -0.008105587, -0.020815851, 0.014938116, 0.016603926, -0.0023785192, 0.0035415387, -0.009304157, 0.014044266, -0.03743332, 0.03337037, 0.0064973356, -0.012920183, 0.046128035, 0.003160637, -0.002134742, -0.010265722, 0.033045333, 0.038814723, 0.039004326, -0.009344786, 0.010414697, -0.017159196, -0.025474701, -0.033993356, 0.018689573, 0.012439401, -0.019312559, -0.019258387, 0.0013670137, 0.021073172, 0.01871666, -0.007530002, -0.021696158, -0.019556336, 0.017064393, -0.019326102, 0.01705085, -0.033478715, 0.009791711, -0.008681172, -0.021357577, -0.035401843, -0.02131695, -0.01209405, -0.016522666, 0.016062198, 0.024553766, 0.025434071, 0.017511318, 0.012337827, 0.026531069, -0.004614835, 0.01128146, -0.01461308, -0.005850649, -0.04815951, 4.7570383E-4, 0.031013858, -0.0017826196, -0.0070356764, -2.4716282E-4, -0.015737163, 0.016928962, -0.0140578095, -0.022657722, -0.021357577, -0.056556273, -0.012060192, -0.022319144, -0.007922754, -0.017470688, -0.025027776, -0.005099003, 0.028169792, 0.024635024, 0.009771396, -0.012486802, 0.015628817, -0.021032542, 0.024756914, -0.0061215125, 0.027303029, -0.014585993, -0.01833745, -0.025434071, -0.018689573, 0.016129915, -0.013109787, 0.025163209, -0.00790921, -0.024458963, 8.062418E-4, -0.008518653, -0.004824754, -0.021655528, 0.009080695, -0.004411687, -0.0120398775, -0.012798295, -0.021208603, -0.025759108, -0.019678226, 0.0055052983, 0.009602107, 0.031420153, -0.015114177, -0.013069158, 0.032584865, 0.014139068, 0.028142706, -0.023402596, 0.008660857, 0.012493574, -0.008789517, -0.01808013, -0.015737163, 0.0075570885, -0.0075096874, 0.006754656, 0.037541665, -0.0028237507, -0.024201643, 0.0073674843, -0.004096809, -0.0019688383, -0.01508709, 0.02863026, 0.02615186, 0.009243213, -0.021980563, -0.00254273, -0.016414322, 0.0026443037, 0.013367108, -0.0048552263, -0.0014474262, -0.023104647, 2.604944E-4, 0.039518967, -0.009656279, 0.018784376, 0.008450937, -0.0016573453, 0.026368551, -0.009114553, -0.022874413, 0.006521036, -0.011234059, 0.055743683, -0.021777416, -0.0041475957, 0.02555596, 3.8788482E-4, -0.014220328, -0.020544987, 0.0017893913, 0.026219575, -0.009906828, -0.0064600916, 0.0016852781, -3.629146E-4, -0.007204966, -0.0054341964, -0.012168538, -0.00897235, -0.008058186, -0.015249608, 0.0013348486, -0.022549376, -0.017822811, -0.0229015, -0.024905888, -0.027018623, -0.013590571, -0.019515706, 0.015317325, -0.027086338, 0.0015142956, -0.013861434, 0.02555596, 0.056610446, 0.0072659105, -0.036593642, 0.009310929, 0.0052750646, -0.01542567, 0.016251802, 0.013021757, 0.008254562, -0.014450561, -0.0010495957, -3.8047842E-4, -0.0041475957, -0.0026680043, -0.0039241333, 0.0068359147, -0.03234109, 0.033668317, 0.005837106, -8.511035E-4, -0.0087014865, 0.0036735847, -0.0029320961, 0.009243213, -0.018283278, -0.049676344, 0.009629194, 0.0043439716, 0.00713725, 0.00769252, -0.0054477397, 0.009723996, -0.006653082, -0.017064393, 0.008552511, -0.0050143586, -0.008911406, 0.009040065, 0.025637219, -0.0019146656, -0.004303342, -0.03453508, -0.039166845, -0.015439213, 0.034941375, -0.020125149, 0.008823374, -0.003907204, -0.012872783, -0.011626811, 0.04003361, -0.01380049, -0.037243716, 0.0058743497, -0.023050474, -0.042715155, -0.0110309115, 0.0057626185, 0.036810335, 0.033316195, -0.019624053, -0.017931156, -0.021980563, -0.028765691, -0.013624428, -4.6385353E-4, 0.005525613, 0.023307795, 0.017849898, -0.006893473, 0.028874036, 0.026829017, 0.0111528, -0.045396704, -0.0042627123, 0.004486175, 0.016089285, 6.9620355E-4, 2.482209E-4, -0.028494827, -0.006047025, 0.0012485109, 0.023429682, 0.005701674, -0.012012791, -0.0028914667, -0.006243401, 0.02521738, -0.0073945704, 0.025136122, 0.0031911093, 0.0069341026, -0.038435515, -0.007963384, 0.0031081573, 0.0024682425, -0.02393078, -0.0037954731, -0.030688822, -0.02936159, 0.013387423, -0.007868581, -0.022752523, -0.011755471, -0.01226334, 0.018987523, 0.009629194, -0.020842938, 0.045857172, -0.006395762, -0.0037040568, 1.550058E-5, 0.013786946, -0.012954041, -0.013922378, 0.012161766, -0.042119257, 0.0020636404, -0.013949464, 0.0061248983, -0.013590571, -0.0038259453, 0.0070018186, -0.023009844, -0.0259758, 0.0039376765, 0.004042636, -0.0060537965, -0.017836355, 0.009365101, -0.023903694, 0.019177128, 0.006612452, 0.008694715, -0.04417782, 0.0067241834, 0.009696909, -0.0044895606, 3.1043484E-4, 0.0297408, -0.0041577527, 0.004550505, 0.0036634272, 0.2052061, 0.014843313, 0.0012265033, 0.020761678, 0.007238824, -0.010827764, 0.019244844, 3.559314E-4, 0.005708446, -0.002312496, 0.007915982, 0.02389015, -0.0028237507, 5.6923635E-4, 0.007597718, -0.01726754, -0.053089224, 0.007597718, -0.022576462, -1.2358141E-4, 9.285535E-4, 0.010969967, -0.01970531, -0.017497774, 0.036051918, 0.002298953, -0.010441784, -0.0086744, 0.0076383473, 0.004222083, 0.0015193743, -0.011911217, -0.011782557, 0.0053698667, -0.02038247, -0.0022278514, 0.022644179, -0.004269484, -1.8875793E-4, 0.029551195, 0.003605869, -0.018621858, 0.038300082, -0.036431126, -0.0028931596, -0.0100016305, -0.0067377267, -0.006639539, -0.025732022, -0.01183673, -0.032855727, 0.004885698, 0.022481661, 0.04978469, -0.009080695, -0.0108751645, 0.021682614, -0.014667252, 0.013326478, -0.0018232492, -0.028657347, 0.040710766, 0.0032080382, 0.023104647, -0.0043507433, 0.00638899, -0.023470312, -0.016265346, 0.028386483, -0.015574644, -0.017213369, -0.009933915, 0.0054375823, 0.0048789266, -0.039600227, -0.030688822, 0.030932598, 0.009933915, 0.021398207, 0.005054988, -0.002348047, -0.008234247, 0.006747884, 0.021899305, -0.0029744185, -0.027844757, 0.007116935, -0.00790921, 0.0060199387, -0.015953854, 0.0046825507, 0.01756549, -0.007116935, 0.009798483, -0.01897398, 0.0049026273, -0.0179447, 0.025840366, -0.010746505, 0.015276695, -0.024472507, 0.035645623, -0.011295003, -0.02337551, -0.022793153, -0.019434448, -0.014585993, -0.01572362, 0.016468493, -0.02133049, -0.007963384, -0.04452994, -0.007089849, -0.008207161, 0.019122954, -0.0030218195, 0.023091104, -0.015669446, 0.016468493, -0.019542793, 0.013746317, -0.023185905, 0.024418334, 0.0035042951, 0.01572362, -0.017199825, -0.009649508, -0.004648693, -0.014125526, -0.03196188, 0.023267165, -0.0149110295, 0.003998621, -0.0061418274, -0.016143458, 0.006734341, -0.029686626, 0.010346982, 0.0022617092, -8.295191E-4, -0.0050109727, 0.010936109, 0.0126222335, -0.018296821, 0.027126968, -0.006443163, 0.013380651, -0.0030963072, -0.023876607, -0.0010191235, -0.03580814, 0.008403537, -0.0015803186, 0.007618033, 0.025867453, 0.02371409, -0.0063178884, -0.04165879, -0.013096245, 0.013773403, -0.03957314, -0.013590571, 0.024621481, 0.0018418711, -0.017213369, -0.005542542, -0.17172739, -0.0029930405, 0.024865258, -0.0035957114, 0.003927519, 0.006206157, 0.035483103, 0.015032918, -0.027763497, -0.011274688, 0.021696158, -0.0025308798, -0.04336523, 0.004672393, -0.0067377267, -0.010969967, -0.0064973356, 0.012866011, 0.017010221, 0.02508195, -0.0062671015, -0.010143834, 0.0088572325, 0.0047197943, -0.018987523, 0.026815476, -0.003666813, 0.019150041, 0.009209355, 0.0019180514, -0.0044252304, -0.040494077, 0.019312559, -0.0071981945, -0.00316233, -0.009493762, -0.014992288, 0.022075366, -0.01738943, 0.03867929, 0.011295003, 0.0043778294, 0.013935921, 0.018581228, 0.01209405, 0.025488244, -0.0044455454, 0.008071729, 0.009514077, -0.0028609945, 0.034805946, -0.036512386, 0.038354255, -0.010956424, 0.0057592327, 0.016265346, 0.005772776, 0.0030590633, 0.026869647, -0.022874413, -0.032205656, -0.0229015, 0.014342216, -0.020152235, 0.0040155496, -0.01649558, -0.025664305, 0.028061446, -0.024987148, -0.0024563924, 0.0068054427, -0.024106842, 0.01786344, -0.008308735, 0.028711518, 0.0146401655, -0.022644179, -0.013976551, 0.033939183, -0.0050956174, -0.0026155245, 0.03949188, -0.011098627, 0.006714026, -0.01111217, -0.01572362, 0.0018689573, 0.003930905, 0.0037717726, -0.017186282, 0.004814597, -0.038191736, -0.0024682425, -0.0014584301, 0.014450561, -9.46329E-4, 0.006128284, -0.023565114, 0.009263528, 0.0029033169, 0.004960186, -0.013238448, -0.03691868, 0.014802684, 0.04542379, -0.018323908, 0.028034361, 0.014491191, 0.008037871, 0.024215186, -0.013549941, 0.019596966, 0.021425294, 0.022359772, -0.012385229, 0.01820202, -0.034751773, -0.01423387, -7.136615E-5, -0.0029524108, 0.0471844, 0.0020280895, -0.008213932, 0.01021155, -0.0020416328, -0.025880996, -0.07405405, -0.002967647, 0.026084144, 0.02367346, -0.0076992917, 0.0054071103, 0.0025816667, 0.029171987, -0.018879177, 0.0223056, -0.035970658, -0.016725814, -0.005589943, 0.006714026, 0.0013340021, 0.020368926, 0.00935833, -0.023727633, -0.017213369, 0.022955671, -0.012554518, -0.015479842, 0.01538504, -3.362515E-4, -0.015886137, -0.0035923256, -0.024161015, 0.02474337, 0.033451628, 0.010238636, 0.008437394, -0.04016904, 3.8069003E-4, 0.0074555147, -0.031203462, -0.020016804, -0.003880118, 0.004059565, 0.024242273, -0.036512386, 7.584175E-4, -0.0100016305, 0.0041577527, -0.030715907, -0.0023057247, -0.029036555, -0.006568437, 0.05503944, -0.0047502667, -0.014396389, -0.008769202, -0.021249233, -0.0014956738, -0.0077196066, 0.018391624, 0.012811838, -0.008261333, 0.0017038999, -2.1446878E-4, 0.012507116, -0.011741928, 0.0062027713, 0.014504734, -0.0049297134, 0.027790584, -0.01264932, -0.011809643, 0.020910652, 0.032232743, -0.018662488, 0.0028694589, 0.021547182, -0.01841871, 0.028792778, -0.03913976, 0.0014474262, -0.012832153, -0.023199448, 0.015791336, -0.0071507934, -0.027262399, -0.013543169, 0.011694526, -0.03675616, 0.017971786, 0.04201091, 0.0044963323, -0.012838924, -0.0020941126, -0.02393078, 0.01025895, 0.008491567, 0.03957314, 0.017579034, -0.023402596, -0.019691767, 0.007171108, 0.012073736, -0.019028153, -0.0050922316, -0.048782494, -0.008897862, -0.081313185, 0.03055339, -6.377986E-4, -0.0040663364, -0.016874788, -0.0102928085, 0.027099881, -0.0149110295, 0.019759484, 0.008261333, -0.011599724, 0.00786181, -0.016901875, -0.0027170982, -0.011349176, 0.01671227, 0.009236441, -0.004194997, 0.017700922, 0.02533927, 0.015777793, 0.028034361, -0.010441784, 0.017971786, -0.029253246, 0.015168349, 0.0012620541, -0.00824779, 0.004553891, 0.011335633, 0.036431126, -0.012168538, 0.023768261, 0.030092921, -0.0049195564, -0.009182269, 8.7014865E-4, 0.004861998, -0.0084103085, -0.021303406, -0.028657347, -0.009304157, 0.006470249, -0.01893335, 0.0014821306, 0.006849458, 0.021980563, -0.0024360775, 0.012202395, 0.022522291, 3.7032104E-4, 0.00910101, 0.0026493825, -0.018296821, 0.0142745, -0.028874036, 0.008362907, 0.011017368, 0.009737539, -0.014098439, 0.05872318, -0.015371497, 0.008789517, -0.027018623, 0.0017893913, -0.015872594, -0.014734969, 0.0024191486, -0.0018300207, -0.014951658, -0.021465924, -0.007915982, -0.013814033, 0.016915418, 0.013028529, 0.022278514, 0.01264932, 0.0048349113, -0.033668317, 0.007259139, 0.030824253, -0.0062671015, 0.006568437, -0.0038835038, 0.008782745, -0.01730817, -0.033451628, -0.0065142643, -0.0013255377, 0.024337076, -0.042796414, 0.032855727, 0.0039715343, -0.007116935, 0.0077670077, 0.012933726, -0.020815851, 7.200099E-5, 0.039437708, 0.02995749, -0.020504357, -0.009635965, -0.005173491, 0.0047197943, 0.01730817, 0.028765691, -0.019353189, -0.028088532, 0.010353752, 0.005837106, -0.017375886, -0.00553577, 0.0010191235, 0.0063788327, -0.0167529, -0.001694589, -0.008322277, -0.024472507, -0.029876232, 0.03884181, 0.026977994, 0.0063686753, -0.008064957, -0.017998872, 0.03884181, -0.01965114, 0.0053021507, -0.012547746, -0.0038631891, -0.016319519, -0.0027882, -0.022806697, 0.004953414, -0.011491379, -0.03144724, 0.0052581355, 0.010421469, 0.017768638, 0.0049635717, 0.10357816, 0.007259139, -0.016021568, 0.0019586808, -0.015750706, 0.019989718, 0.0072929966, -0.006734341, 0.0069070165, -0.037189543, 0.009635965, -0.016143458, -0.05726052, -0.010279265, 0.008572826, 0.011701298, 0.018039502, 0.011159572, -0.013712459, 0.009385416, 0.012202395, -0.0062840306, 0.0075367736, -0.0019214371, -0.0031538655, 0.014585993, 0.024431877, 0.015263151, -0.0010775283, -0.044773716, 0.007855038, -9.700295E-4, -0.017538404, -0.0039342907, -0.002756035, -0.029036555, -0.015060004, -0.006209543, 0.017375886, -0.012967585, -0.0063822186, 0.023565114, -0.019542793, -0.014450561, 0.010773591, -0.016834158, 5.5400026E-4, -0.024553766, -0.07589592 ], - "id" : "24caa7c1-d0af-4883-9598-41a2b0f3a4e9", - "metadata" : { - "name" : "AgileEon 9X" - }, - "text" : "5\" | 27.5\" |\n| A — Seat tube | 44.6 | 49.1 | 53.4 |\n| B — Seat tube angle | 73.0° | 73.0° | 73.0° |\n| C — Head tube length | 16.5 | 19.5 | 23.0 |\n| D — Head angle | 69.5° | 70.0° | 70.5° |\n| E — Effective top tube | 59.5 | 60.7 | 62.2 |\n| F — Bottom bracket height | 29.5 | 29.5 | 29.5 |\n| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.4 | 4.4 | 4.4 |\n| J — Trail | 8.6 | 8.1 | 7.9 |\n| K — Wheelbase | 114.6 | 115.0 | 116.4 |\n| L — Standover | 79.5 | 83.7 | 87.9 |\n| M — Frame reach | 40.5 | 40.8 | 41.2 |\n| N — Frame stack | 62.3 | 65.2 | 68.8 |\ntags: [bicycle, road bike, professional]" - }, - "039f058e-321c-488c-8276-aaf004e38067" : { - "embedding" : [ 0.0056732874, -0.009585783, -0.010619143, -0.009830526, 0.004136843, 0.011020251, 0.006890206, -0.061729718, 0.005129413, -0.015758755, -0.009218668, -0.019416308, -0.032360513, 0.00838926, 0.016316226, 0.012434323, 0.013440491, -4.8481283E-4, -0.0072199297, -0.042422187, 0.024827857, 0.0028264462, -0.030783279, -0.012332347, -0.006502696, -0.022978684, 0.03385617, -0.0017140534, 0.034291267, -0.020204926, 0.021809354, 0.0066896523, -0.018913224, -0.011088235, -0.00548973, -0.022543585, 0.011428156, 0.0011030448, 0.010292819, 0.0016494684, 0.026133154, 0.003626961, 0.0044801636, -0.012040014, -0.022162873, 0.016996069, 0.0042864084, -0.019810617, 0.0028757348, -0.0020837178, -0.013841598, 0.032251738, -0.03285, 0.010306416, -0.003548779, -0.012787841, 0.001232215, 0.024528725, 0.030946441, 7.881926E-5, -0.03263245, 0.007831789, -0.029097268, -0.00427961, -0.006866412, -0.024229595, 0.0121012, -0.0063871224, -0.0062001655, 0.01422231, -0.0010877483, 0.03951246, 0.03034818, -0.018559707, 0.014793377, -0.02356335, 0.0026428886, 0.025181375, -0.018954014, 0.0052415873, 0.01119701, -0.0032972372, -0.015772352, 0.0013817804, 0.034427237, -0.0051702037, 0.016343419, 0.03924052, -0.03263245, -0.0041742343, -0.00894673, 0.023019474, -0.024324773, 0.0015670375, 0.0027431655, 0.013535669, -9.313845E-4, 0.0289613, -0.022203663, -0.008498034, 0.009748945, 0.021075124, -0.022543585, -0.018015832, -0.036711507, -0.0142631, -0.01638421, -0.0060030115, -0.001638421, -0.02282912, -0.020735202, 0.029287625, 0.008368864, 3.6987694E-4, -0.0044121793, -0.0017522946, 0.018559707, 0.0016792115, -0.002840043, -0.019198759, 0.016792115, 0.03336668, 0.017390378, 0.015799545, 0.016180256, 0.011081437, -0.0041776337, -0.0013477883, 0.034400042, -2.8213474E-4, -0.0044121793, 0.034264073, -0.0016367213, -0.01158452, 0.00436459, 0.015364446, -0.0039090957, 0.02529015, 0.001499903, -0.006941194, 0.010150052, 0.027506437, -0.02830865, -0.011536931, -0.012006023, 0.0154324295, 0.0040416652, 0.019307533, 0.007267519, 0.011319381, 0.011523334, -0.016221048, 0.013467684, -0.0023709515, -0.00713155, -0.0057786633, -2.230734E-4, 0.014453457, -0.016316226, -0.0117068915, -0.012645075, 0.007811393, 0.008824359, 0.024895841, 0.04171515, 0.017961444, 0.0041232463, -0.023087459, 0.0051192157, 0.0026870784, -0.019701842, 0.015636383, -0.02382169, 0.029940274, -0.0064007193, 0.01668334, 0.01789346, -0.01046278, -0.016125869, -0.019022, 0.004599136, 0.008178508, 0.017703105, 0.016887294, -0.009341039, -0.006237557, 0.007430681, -0.00652649, 0.013583258, -0.015527608, 0.012237169, 0.018790852, 0.006237557, 0.006271549, -0.5943457, -0.007267519, -0.012080805, -0.007933765, 0.004388385, 0.011543729, -0.0028247465, 0.032061383, -9.0759003E-4, -0.0014293693, -0.014616619, 0.036004473, -0.019389115, -0.023699317, -0.028553395, -0.011910845, 0.0036235617, -0.012141991, 0.042340606, 9.0504065E-4, -0.049682908, 0.017403973, -0.009504201, 0.018043026, 0.006890206, -0.0051022195, 0.01495654, -0.019946586, -0.0052109943, 0.020286506, -0.041008115, 0.034372848, -0.009184675, -0.007267519, 0.037146606, -0.036113247, 0.015242074, 0.038696647, 0.010972662, 0.038234357, -0.017132036, -0.017240811, -0.024311176, 1.4669732E-4, -0.03168067, -5.578959E-4, 0.045549463, -0.011645706, -0.0048744725, -0.029885886, 0.025834024, 0.0035827712, 6.6539604E-4, -0.014847765, -0.020830382, -0.01594911, 0.045631044, -0.009544992, 0.0074238824, -0.0013826302, -0.0057990584, -0.010653135, 0.022665957, -0.033883363, -0.030375373, 0.026595447, -0.04185112, -0.022978684, 0.032523677, -0.0029012288, 7.81288E-5, -0.0016358716, -0.011319381, -0.008457243, 0.015704367, 0.044081002, 0.042802896, 0.01836935, 0.008701987, 0.023658527, 0.012325549, -0.002126208, 0.0030405966, -0.005996213, 0.02969553, 0.0011897248, 0.017023262, 2.4113171E-4, 0.030892054, 0.0037765263, 0.013861993, 0.01832856, -0.019334728, -0.0060098097, -0.024827857, 0.04266693, -0.0027261693, 0.021714177, -0.0072335266, -0.022380423, -0.017512748, -0.010782306, -0.0046229307, -0.020585638, 0.013161755, 0.012169185, -0.029151656, -0.012821834, 0.025344538, -0.020694412, 0.016221048, -0.0060234065, -0.025303746, 0.009062303, -0.03195261, -0.02800952, 0.019661052, 0.014779781, 0.014208713, -0.05525762, -0.009300249, -0.022407616, 0.016887294, 0.0053095715, -0.01473899, 0.02519497, 0.024148013, 3.8814772E-4, -0.025222166, -0.004837081, 0.029505175, 0.012148789, 0.020721607, -0.016941682, 0.033475455, 0.028825331, 0.027288888, -0.0016452194, -0.0056222994, -0.063959606, -0.017607927, 0.0038717042, -0.008443647, -0.024270386, -0.026160348, -0.012291556, -0.014167923, 0.001193124, -0.013889187, 0.0049118637, -1.4935296E-4, -0.023672124, -0.027982326, -0.028363038, -0.023114653, -0.030021856, -0.0145214405, -0.018423738, -0.0017251009, -0.018899627, 0.012910213, -0.009307047, -0.022761134, 0.010741515, -0.0055713113, 0.00964017, 0.0015933814, 0.027479243, -0.0065060947, -0.040273882, -0.0063361344, -0.013549265, -0.017023262, 0.01582674, 0.0069955816, 0.011965232, -0.012910213, -0.025276553, 0.0072199297, -0.0034196088, 0.0053061727, 0.03513427, -0.039322104, 0.015622786, 0.005850047, 0.013474483, 0.030402567, 0.021469433, -0.026432285, 0.016560968, -0.0026054971, 0.014412666, -0.008803964, 0.0073287045, -0.01288302, -0.013025787, -0.0033312293, 0.0075190607, 0.004833682, 0.003263245, 0.011856457, -0.018654885, -0.0022961688, -0.005649493, -0.002299568, -0.004871073, 0.014616619, 0.012651873, 0.014902152, 0.020721607, 0.021401448, -0.01872287, 0.007172341, -0.015010928, 0.0013834799, 0.03469917, 0.024080029, 0.014575828, -0.018614095, -0.020476863, -0.0031782647, 0.0019766428, 0.03994756, -0.008110524, -0.021170303, -0.008939932, -0.019742632, 0.03701064, 2.3667025E-4, -0.026962563, 0.007179139, 0.032006994, 0.010170448, 0.009952897, 0.032877196, -0.009225465, 0.021754967, -0.009266256, 0.048296027, -0.0047521004, 0.039974753, 0.03143593, 0.029722724, -0.01845093, 0.012896617, 0.016275436, -0.0019154568, 0.024433548, 0.0049254606, 0.008797165, -0.00834167, -0.0041674357, -0.011067839, -0.0011956734, -0.006584277, 0.011298986, 0.016479388, -0.007036372, 0.0017471958, 0.0064007193, 0.008640801, 0.021102319, 0.017512748, 0.01573156, -0.0034587, -0.015024524, -0.025385328, -0.0024525325, -0.015310058, -0.026894579, 0.010218036, -0.027152918, 0.011040646, 5.2772794E-4, -0.0017641919, 0.010727918, -0.0036133642, 0.00881756, 0.019334728, 0.032387707, -0.0078045945, -0.026989756, 0.0017098044, 0.016207451, 0.005737873, 0.0135696605, -0.021047931, 0.0034807948, 8.8634493E-4, 0.048187252, 0.017607927, 0.022462003, -0.01975623, 0.0047011124, -0.006421115, 0.006710048, 0.03475356, -0.01223037, 0.01141456, -0.026880981, -0.023196233, 0.019932989, -0.014643813, -0.037364155, 0.008443647, -0.013562863, -0.009932502, -0.025521295, 0.018111011, -0.010469578, 0.012427525, -0.025426118, -0.015187686, -0.023033071, -0.0051872, 0.0094498135, 0.0036881468, -0.012339146, 0.010653135, 0.017200021, -0.0056087025, -0.009619774, -0.014290294, 0.0015160493, 0.055747103, 0.023291413, -0.020000974, 0.022842716, -0.017091246, -0.035433404, -0.014820571, -0.018872434, 0.020123344, 0.0072131315, -0.0021686982, -0.01422231, 0.009959696, -0.019837812, 0.0061049876, -0.013963969, -7.6652266E-4, -0.02576604, 0.021156706, -0.023508962, -0.0044937604, -0.00242024, -0.009103094, 0.006169573, 0.02844462, -0.010014083, 0.032278933, 0.022747537, 0.0150381215, -0.011700094, 5.1455596E-4, 0.013032585, 0.0038785026, 0.028716557, -0.029423593, -0.022407616, -0.007267519, -0.0068970043, 0.018083816, 0.035460595, 0.006020007, 0.036113247, 0.0014837567, 0.015010928, 0.013991163, 0.009109893, -0.0010699024, 0.020694412, 0.023277815, -0.01400476, 0.017689507, 0.027791971, -0.0145214405, 0.005469335, 0.021292673, 0.006696451, -0.022978684, -0.015717965, -0.017648717, -0.036357988, 0.00280945, -0.019198759, 0.019035596, 0.0015245473, 0.0061661736, -0.032469288, -0.009279854, -0.0039974754, -0.03165348, 0.0058738412, -0.04111689, -0.014154325, 0.013542467, 0.019157968, 0.0145622315, 0.006560482, 0.01097946, -0.020626428, 0.017295199, 0.020436073, -0.006030205, -0.014290294, -0.021537418, -0.020109748, -0.0058908374, -0.0043543926, 0.040083528, -0.021673387, 0.011774876, -0.0069887834, -0.0032870397, -0.00795416, 0.024351966, -0.010027681, 0.01646579, 0.004854077, 0.004789492, 0.021619, 0.020735202, -0.01582674, 0.023876077, 0.018029429, 0.032306127, -0.012169185, 0.018777257, 0.006495897, 0.0018117809, 0.0039396887, 0.007818191, 0.028689364, -0.007301511, 0.013821202, -0.014018357, 0.008035741, -0.026513867, -0.0013171952, -0.0023896473, -0.0108774835, 0.02455592, -0.025834024, -0.016982472, -0.022774732, 0.02316904, -0.0055645127, -0.011475746, 0.03034818, -0.0019562475, -0.0050036423, -0.017213618, 0.025398925, 0.050009232, 0.015106105, -0.013392902, -0.007179139, 0.0027516633, -0.040790565, -0.01763512, 1.0930596E-4, -0.007858982, -0.01936192, -0.019348323, 0.008715584, -0.0112921875, -0.011951636, -0.022040501, -0.019293936, -0.0085796155, -0.0054319436, -0.05136892, 0.06629826, -0.0058976356, -0.012033217, -0.022570778, -0.01932113, -0.026622642, -0.032659646, 0.008137718, -0.00795416, 0.032605257, 0.018967612, 0.025344538, -0.009742146, 0.020136941, -0.007593843, -0.009123489, -0.011468947, -0.022244453, -0.012373137, -0.007355898, 0.027601615, 0.03034818, 0.010095664, -0.026473075, -0.029559562, -0.0065332884, 0.0011106931, -0.0038751035, -0.034862336, -0.033828974, -0.021496627, -0.0018746663, -0.016234644, -0.005204196, -0.019769827, -0.0376089, 0.005731074, 0.029586755, -0.015568399, 0.016112272, -6.1313313E-4, 0.024882244, -0.03548779, 0.01650658, 0.004690915, 0.015717965, 0.02174137, -0.016139466, -0.024487935, -0.040192302, 7.5717486E-4, 0.02368572, 0.0039736805, 0.027873551, -0.011686496, 0.0027601614, 0.0066250674, -0.0015321956, -0.01741757, 0.03766329, 0.005506726, -0.021333465, -1.10899346E-4, -0.040654596, -0.028091101, -0.022965087, 0.030320985, -0.019266743, 0.022951491, -0.049438164, 0.0099664945, 0.002260477, -0.001681761, 0.017104844, 0.0029165254, 0.017036859, 0.02282912, 0.0073423013, -0.01495654, -0.04870393, -0.010299617, -0.0018253777, 0.02917885, 0.04544069, -0.012957802, -0.0017395476, 0.027723987, -0.019647455, -0.026636237, -0.034780756, 0.004024669, 0.019416308, 0.033094745, -0.025031809, -0.031843834, -0.006635265, 0.013936776, -0.018124606, 0.018954014, 0.020340895, 0.002442335, 0.01400476, 0.036575537, -0.027248096, 0.022026904, 0.022584375, -0.017036859, 0.0033856167, -0.004915263, 0.01046278, -0.0051770024, 0.013086973, 0.041307244, 0.0075190607, -0.013352111, 0.02731608, 0.0094294185, -0.0065060947, -0.02261157, -0.0045549464, 0.023631332, -0.019932989, 0.0066114706, -0.023019474, 0.004425776, -0.0066080713, -0.0013970768, -0.003881902, -0.01745836, -0.007947361, -0.02568446, -7.546254E-4, -0.009565387, -0.007301511, -0.0048608757, 9.6027786E-4, -0.003626961, -0.041959893, -0.01928034, 0.029097268, -0.023495365, -0.041606374, -0.00570728, -2.698126E-4, 0.015350848, -0.013556064, -0.011944837, -0.004469966, 0.027955133, -0.047888122, 0.007355898, 0.025385328, -0.007892974, -0.043509934, 0.018981209, -0.007287914, -0.029668337, 0.021795757, -0.0022587774, -0.03285, -0.026187541, -0.015554802, -0.0031544704, 0.003151071, -0.015799545, 0.027723987, -0.017648717, 0.010591949, -0.008226097, -0.02576604, 0.017023262, -0.009782936, -0.005969019, 0.02225805, -0.03842471, 0.018314963, 0.00268028, -0.015704367, -0.0118088685, -0.0031697666, -0.018559707, 0.012515904, 0.014113535, 0.011720489, -0.022067694, -0.010517167, -0.029342012, -0.046256498, 0.0074578747, 0.023536155, 0.0058840388, 0.014888556, -0.010455981, 0.009551791, 0.0077570053, -0.0014812073, 0.0015211481, -0.0033924151, -0.013107368, -0.02541252, -0.024936631, 0.005996213, 0.052048758, 4.716409E-4, -0.035079885, -0.005285777, 0.01936192, -0.021020737, 0.022747537, 0.009218668, 0.03864226, 0.025793234, 0.023984851, 0.008028942, 0.0108570885, 0.018899627, 0.019865004, 0.015391639, 0.015378042, -0.0011344876, 0.008620406, 5.770165E-4, 0.0054591373, -0.058629636, -0.016166661, 0.022706747, 0.03320352, 0.016805712, 0.0070567676, -0.005554315, 0.015799545, -0.0042116255, 1.1392677E-5, 0.0028723355, 0.016846502, 0.024392758, -0.033747394, -0.018151801, -0.011360172, 0.018614095, 0.016166661, -0.0033380277, -0.0048948675, -0.008810761, 0.017077649, -0.023046669, -0.0018746663, -0.0068018264, -0.0023029672, 0.016452193, -0.0016715633, -0.015446027, 0.01677852, 0.009103094, -0.022597972, 0.01711844, 0.027329678, -0.0077841994, -0.009225465, 0.009395426, -0.00782499, 0.0125363, 0.010945468, 0.0066250674, 0.011795271, -8.243093E-4, -0.0041300445, -0.021768564, -0.027520034, 0.03195261, 0.005493129, -0.023658527, -0.024433548, 0.008151314, -0.015418833, 0.020803187, 9.007916E-4, 0.008287283, -0.022625165, 0.001893362, -0.011298986, -0.02705774, -0.03021221, 0.027302483, -0.010483175, -0.024039239, 9.1013947E-4, 0.18491723, 0.013739621, 0.017390378, 0.036276408, 0.02563007, 0.0037901232, 0.0018746663, 0.008987521, 0.00976934, 0.00592143, 0.020000974, 0.014385472, -0.0035385813, -0.008566018, 0.020123344, 0.0026037977, -0.03899578, -0.0014752587, -0.026853787, 0.0023318606, 0.0099664945, 0.0012475114, -0.013460886, -0.018926822, 0.0024661296, 0.022924297, 0.0051634056, -0.006812024, -4.4062306E-4, 0.0033142334, -0.005727675, -0.014915749, -0.0077094166, -0.023155443, -0.006584277, -0.0022978685, 0.014154325, 6.114335E-4, 4.3977326E-4, 0.013841598, 0.0094906045, 0.0047147092, 0.009511, -0.01785267, -0.035379015, 0.004578741, -0.00618317, 0.0074646734, 0.0057480703, -0.023223428, -0.011965232, 0.011441753, 0.010496772, 0.027030546, -0.0022315837, -0.010659934, 7.724713E-4, -0.010455981, 0.019987376, 0.016071482, -0.018940419, 0.029831499, -0.009578984, 0.0029029285, -0.009721751, 0.0072811157, -0.009062303, -0.009619774, 0.015119703, 0.0067508384, -0.001638421, -0.003341427, 0.008008547, 0.005782062, -0.02735687, -0.012631478, 0.0075598513, -0.00964017, 0.005554315, 0.025235763, 0.0051158164, -0.01781188, 0.007029574, -0.0033788183, -0.0038479099, -0.02485505, 0.014616619, 0.010795902, 0.02044967, -0.014167923, -0.017907057, -0.028036714, 0.007124752, -0.02969553, -0.01936192, 0.03159909, -0.019348323, 0.0073898905, -0.00786578, 0.0038581074, -0.006591075, 0.043727484, 0.007117953, -0.02775118, -0.036058858, 0.0037459335, -0.011904046, 0.028825331, -0.0046195313, -0.01789346, -0.014099938, -0.02727529, 1.3979265E-4, -0.009218668, 0.027397662, -0.004089254, 0.0025851019, -0.027030546, 8.237782E-5, -0.019593067, 0.02221726, -0.015636383, 0.016941682, -0.01660176, 0.012835431, -1.2003473E-4, -0.033448264, 0.00639732, 0.0059146318, -0.04223183, 0.010435586, 0.019185161, 0.011985627, -0.012855826, 0.004602535, -0.006376925, -0.0030303989, -0.015119703, -0.010061672, 0.011163018, -0.010313214, 0.037799254, 0.01953868, 0.005472734, 0.034644786, -0.01638421, 0.012169185, -0.011992426, -0.019647455, -0.004072258, -0.021632595, -0.007539456, 0.00682902, -0.042558156, 0.0055577145, 0.011319381, -0.039186135, -0.03894139, 0.027520034, -0.01132618, -0.009864518, -0.0061355806, 0.026513867, -0.0027805567, -0.024487935, -0.01953868, -0.17153792, 0.02866217, 0.01352887, -0.017036859, 0.0010138155, 0.0033125337, 0.028499007, 0.022706747, -0.017322393, 0.0023454574, 0.008049338, 3.851734E-4, -0.027329678, -0.023576945, 0.0061219838, -0.009939301, -0.009307047, 0.0077841994, 0.02451513, 0.015554802, 0.021211093, -2.528165E-4, 0.003786724, -0.021809354, -0.0073966887, 0.011598117, -0.023712914, 0.026948966, 0.0076278355, 0.0042422186, -0.015405236, -0.025018211, 0.015881127, -0.013726025, 0.03475356, -0.011652504, 0.01028602, 0.006968388, 0.01236634, 0.015745157, 0.004690915, 0.021469433, 0.032006994, 0.012828632, 0.019076386, 0.050988205, 0.0075530526, 0.0064619053, 0.004500559, -0.02568446, 0.02580683, -0.009347837, 0.019565873, -0.002148303, 0.031191185, 0.003072889, 0.018342156, 0.014942943, 0.020408878, 0.0021500026, -0.01957947, -0.018668482, 9.789736E-4, -0.011366971, -0.025018211, -0.019348323, -0.021333465, 0.003142573, 0.022529988, -0.0012560094, -0.0015942312, -0.0036575538, -0.011516536, 0.00540475, 0.009300249, 0.030892054, -0.025031809, 4.8821207E-4, 0.03211577, 0.0018066821, -0.008912738, 0.042177442, -0.0065128934, 0.014290294, -0.0033601227, -0.014127132, 0.015772352, -0.004007673, -0.018002236, 9.3903276E-4, -0.017621523, -0.0255077, 0.00579226, -0.026595447, -0.02364493, 0.0022621767, 0.005907833, 0.008722383, -0.0036847475, -0.010789104, 0.010931871, -0.024134416, -0.035977278, -0.0029080273, 0.01962026, -0.0021602002, 0.026173946, 0.010272424, 0.011380567, 0.0070703644, -0.017934252, 0.026636237, 0.029151656, 0.024651097, -0.014942943, 0.012529502, -0.03108241, -0.05251105, 0.008973924, -0.010557958, 0.025480505, -0.023699317, -0.010714321, 0.013861993, 0.0078045945, -0.01872287, -0.061838493, 0.011190211, 0.027084934, 0.014752587, -0.026486672, 0.013556064, -0.018532513, 0.053789157, 0.006366727, 0.028825331, -0.017009664, -0.015296461, -0.02346817, 0.0289613, -0.006495897, -0.020517653, 0.01711844, -0.02221726, -0.019878602, 0.011985627, -0.007430681, -0.004102851, -0.008837955, -0.010007285, -0.028172683, -0.00838926, -0.032061383, 0.0062783477, 0.03298597, -0.0060030115, 0.01854611, -3.9369797E-6, 0.005044433, -7.333803E-4, -0.039974753, -0.003232652, -0.020204926, 0.0027890548, 0.0090555055, -0.061892882, -0.003643957, 0.0065502846, 0.018192591, -0.0032173558, -0.024066433, -0.0018746663, -0.0019273541, 0.016017094, 0.007029574, -0.0033091344, 0.007920167, -0.011734085, 0.01767591, -0.03108241, 0.018981209, -0.008586413, -0.01145535, -0.008260089, 6.0845923E-4, -0.018056624, -0.019293936, 0.029722724, -0.013324917, 0.014439859, -7.3890405E-4, -0.020640025, -0.009646968, 0.012461517, 0.030592922, -0.0032904388, -0.009157482, 0.01495654, -0.010598748, 0.009497403, -0.0050954213, 0.015785947, -0.018981209, -0.009028312, -0.011530133, -0.014942943, -6.0421025E-4, -0.023522558, -0.002688778, -0.038370322, 0.012264363, 0.026826594, -0.0067134467, -0.008022144, 0.0038207162, -0.008661197, 0.014303891, 0.019253146, 0.0471267, 0.0016392708, -0.016275436, -0.0033516246, 0.016533775, 0.0112310015, -0.0154732205, 0.0010741515, -0.041905507, -0.0077162147, -0.07918808, 0.035161465, 0.014589425, -0.028281458, 0.010959065, 0.009218668, 0.012121595, 0.005217793, 0.01093867, -0.008586413, -0.003800321, -0.0016154763, -0.009483806, 0.0041130483, -0.015146896, -0.01785267, 0.0080629345, 0.015051718, 0.019701842, 0.014630215, -0.010646337, 0.00998689, -0.004068859, 0.042639736, -0.037065025, 0.032306127, -0.014399069, 0.03467198, 0.019511485, -0.0023981452, 0.004891468, -0.035678145, -0.00834167, 0.05104259, 0.0017352985, 0.010727918, -0.007491867, 0.027329678, 0.0021466033, -0.03293158, -0.036303602, -0.02134706, -0.0024882243, -0.020177731, -0.041878313, -0.017784685, 0.0077909976, 0.004157238, 0.0048438795, 0.025466908, -4.690915E-4, 0.008396057, -0.012379936, -0.033910554, 0.014630215, -0.017268006, -0.012651873, -0.01288302, -0.020816784, -0.01745836, 0.030511342, 0.0025256157, 0.03279561, -0.023631332, -0.0017777887, -0.01957947, -0.02126548, 0.0060879914, -0.011421358, -0.004922061, -0.030973634, 3.5330578E-4, 0.028553395, 0.011373769, -0.0103744, -0.0061015883, -0.005017239, -0.019865004, -0.01141456, 0.016628953, 0.0030032052, 0.0018797652, -0.01184286, 0.012984996, -0.001750595, -0.006172972, -0.011441753, 0.022081291, 0.001089448, 0.0068970043, -0.040573012, 0.016832907, -0.015704367, -0.024827857, 0.0030236004, 0.02541252, -0.008647599, 0.007593843, 0.017689507, 0.008069733, 0.02451513, 0.008355267, -0.024800662, 0.0027329677, 6.781431E-4, -0.0094702095, -0.023005879, -0.027615212, -0.021387853, 0.010646337, 0.006383723, -0.021632595, -0.0010996456, 0.013209344, -0.024719082, -0.016615355, 0.019647455, -0.021632595, -0.033747394, 0.024270386, 0.025317343, 0.038098387, 0.014779781, 0.01836935, 0.014113535, 0.017036859, 6.981135E-4, -0.023984851, 0.029042881, -0.013542467, 0.010748314, 0.002285971, 6.908902E-4, -0.012169185, -0.034073718, 0.00393289, -0.0043509933, 0.009157482, -0.011645706, 0.09463411, 0.0032836404, 0.0052959747, 0.029994661, -0.009259458, 0.011883651, 0.030946441, -0.015092509, -0.022094889, -0.011360172, 0.021890936, 0.017390378, 9.0759003E-4, 0.010489973, -0.039349295, 1.3214443E-4, 0.00786578, 0.025534892, -0.005061429, 0.007111155, 0.030293792, -0.025398925, 0.0023896473, 0.0118292635, -0.0018882632, 0.0044325744, 0.023590542, 0.043673098, -0.0072471234, -0.04889429, 0.0064619053, 0.010367601, -0.011944837, -0.013800807, 0.008701987, -0.012991794, -0.00570728, 0.012114798, -0.004677318, 0.010408392, -0.0033295297, -0.0043475945, -0.03548779, -0.03747293, 0.024093626, -0.007253922, -0.028091101, -0.016329823, -0.034807947 ], - "id" : "039f058e-321c-488c-8276-aaf004e38067", - "metadata" : { - "name" : "VeloRide VersaRack Cargo System" - }, - "text" : "price: 30.99\nname: VeloRide VersaRack Cargo System\nshortDescription: A versatile cargo system designed to provide convenient on-bike storage for a variety of items, compatible with VeloRide racks.\ndescription: ## Overview\nMake your bike rides more enjoyable and practical with the VeloRide VersaRack Cargo System. This innovative accessory offers a secure and hassle-free way to transport your belongings on your bike. With its user-friendly design and durable construction, you can trust the VersaRack to safely carry your cargo wherever you go. \n\nProduct Details\n- Compatible with VeloRide racks, ensuring a seamless and secure mounting experience\n- Sleek and stylish design with reflective elements for enhanced visibility and safety\n- Multiple storage pockets for efficient organization, including a spacious main compartment, side pockets, and an internal mesh pocket\n- Dedicated zippered pocket with a soft lining for secure and easy access to your phone\n- Integrated rain cover stored in a rear pocket to protect your belongings from the elements\n- Convenient light loop for easy rear light attachment\n- Adjustable carrying strap for effortless off-bike use\n\nFeatures\nFunctionality, Performance, and Style\nThe VeloRide VersaRack Cargo System combines functionality, performance, and style. Its high-quality materials and thoughtful finishing touches ensure both practicality and aesthetics.\n\nVeloRide Mounting System\nThe innovative VeloRide mounting system allows for easy and secure installation of the VersaRack. Simply slide the cargo system onto the VeloRide rack and hear the click to confirm the installation. Removing the cargo system is just as effortless with the use of the provided key.\n\nPerfect Fit\nThe VeloRide VersaRack Cargo System is designed to seamlessly integrate with VeloRide racks. The bags and racks are developed as a complete system to ensure a secure fit and protect your valuable cargo.\n\nIntegrated Light Mounting\nFor enhanced visibility during all hours of the day, the VersaRack Cargo System features a dedicated spot for mounting your bike light on both the racks and trunk bags.\n\nSpecs\n- Cargo Capacity: 15L\n- Bag Type: Trunk bags\n- Dimensions: 40cm (L) x 18cm (W) x 20cm (H)\n- Attachment: VeloRide Mounting System\n- Material: Durable Woven Fabric\n- Weight: 900g\ntags: [trunkbag]" - }, - "4367b794-5749-4663-a555-b897b6b9bc8c" : { - "embedding" : [ -0.0012777883, 0.017650424, -0.010236139, -0.024995545, -0.0014014173, 0.007995254, 4.3875343E-4, -0.039561294, 0.009413098, -0.04260447, 0.014579582, 0.0134660555, -0.026254313, -0.0018881527, 0.009302437, 0.004958994, 0.019172011, -0.0059480267, -0.004837959, -0.027319426, 0.026475634, 0.019241175, -0.02749925, -0.025092373, -0.02011263, -0.019711483, 0.027333258, -0.010464378, 0.01235253, -0.014385925, 0.02534136, 0.016765136, -0.0067918166, 0.012449359, 3.2895702E-4, 0.02935282, 0.034138907, -0.015036059, 0.019420998, 0.013535219, 0.028287709, 0.0043399846, 0.01415077, 0.012788258, -0.026337309, 0.029186828, 0.009966403, -0.0031987934, -0.0038281777, 0.0021302234, -0.009011952, 0.023695279, -0.018438883, 0.01027072, 0.0161565, -0.0075733596, 0.03505186, 0.01825906, 0.030653087, 4.646896E-4, 0.006096727, 0.0012985372, -0.035383843, -0.01462108, -0.0078085144, -0.010893188, -0.0011913344, 0.01074103, -0.0058339075, -0.0058339075, 0.025991494, 0.02412409, 0.019974304, -0.007023513, 0.016405487, -0.018784698, -0.026046824, -0.007912259, 0.004644302, 0.009067283, 0.035605166, 0.013037245, -0.0016339783, 0.0012509876, 0.021440562, 0.0077670165, -0.0060275644, -0.003959588, -0.007469615, 0.015160552, 0.0013659713, 0.0014135209, 0.0041394117, 0.011799226, -0.011052264, 0.037846047, -0.016294826, 0.034387894, -0.00388005, -0.0021717213, 0.010616536, -2.0403115E-4, -0.020997917, -0.01889536, -0.03220234, -0.04005927, -0.010602703, -0.0018431967, 0.012311032, -0.013549051, -0.01816223, -0.002939432, 0.016612977, 0.004976285, 0.010907021, -0.0030604673, 0.036988426, 0.04180218, 3.9206832E-4, -0.024027262, 0.02470506, 0.042576805, 0.0018795073, -0.020458445, 0.011384247, -0.019393334, -0.019185845, -0.00865922, 0.031483043, 8.69726E-4, 3.1166623E-4, 0.017014123, 0.018231394, 0.005550339, -0.017913243, 0.013424558, -0.022796158, 0.0035290474, -0.029269824, -0.0020835383, -0.0062073884, 0.030210443, -0.020984085, -3.1793414E-4, -0.02571484, -0.0022996732, -0.015243548, 0.025576515, 1.6177681E-4, 0.0071237995, 0.014289097, -0.033723928, 0.02138523, 0.038454685, 0.011667815, -0.009911072, -9.3802455E-4, 0.045896634, -0.0068160235, -0.034221902, -0.0037970543, -0.0010460919, 0.008769881, 0.0074004517, 0.0147455735, 0.003966504, 0.013362311, -0.03759706, -8.740487E-4, -0.015492535, -0.0074419496, 0.034498554, -0.033806924, 0.003459884, 0.023695279, 0.029408151, 0.018231394, 0.00892204, -0.014814736, -0.003831636, 0.010429796, -0.0046235532, 0.012394028, 0.026544798, -0.012241869, 0.012788258, 0.012905835, -0.009060366, 0.008479396, -0.029740134, 0.015976677, 0.026945945, 0.011197506, -0.0038489266, -0.59358543, -0.03726508, -0.026281979, -0.013182487, 0.009717416, 0.007642523, -0.004665051, 0.014192268, 0.017027956, 0.017110951, -0.017276943, 0.025963828, -0.0069681825, -0.00892204, -0.010339884, -0.030376434, 0.011142176, -0.016626809, 0.010955435, -0.01895069, -0.04714157, -0.010810193, 0.014289097, 0.014911565, -0.0030535508, 0.0011057451, 0.03590948, 0.0089151235, -0.011218255, 0.004391857, -0.035245515, 0.04487302, 0.013943281, -0.0012285096, 0.04614562, -0.034719877, 0.01805157, 0.02127457, 0.0018622165, 0.023446292, -0.02444224, -0.022726996, 0.009758914, -0.0019573157, -0.01688963, 0.013853369, 0.029076168, -0.0079537565, -0.007199879, -0.028467532, -0.0013132344, 0.028910177, 6.311133E-4, 0.016861964, -0.011529489, -0.023515455, 0.041995835, -0.0131479055, 0.022975983, 0.009191777, -0.014178436, 0.017595094, -0.010830942, -0.022602502, -0.009399265, 0.016142668, -0.020015802, -0.015506367, 0.0016434882, -0.025590347, 0.0022408846, 0.01016006, -0.007448866, 0.0144412555, 0.020652102, 0.016267162, 0.035079524, 0.020223292, 0.00963442, 0.010021733, 0.026586296, 0.008797547, -0.0031797737, -0.006622367, 0.0054569687, -0.0023532745, -0.0046166372, 0.008368735, 0.019158179, 0.02095642, 0.03261732, 0.02982313, -0.0010746217, -0.019102849, -0.009046534, 0.02549352, -0.011750811, 0.0092401905, 0.022602502, -0.032949302, -0.002412063, 0.010824026, 0.008859794, 0.0010806734, 0.031953353, 0.01137733, 0.010146227, -0.037652392, 0.017608926, -0.027153434, -0.0042258655, -0.023404794, -0.02307281, -0.017498264, -8.6670014E-4, -0.045426324, 0.037846047, 0.0018846946, 0.00944768, -0.021731047, 0.015451037, -0.013189403, 0.019365668, -0.01222112, -0.009413098, 0.011460326, 0.013860285, 0.01868787, -0.029684803, -0.0035307764, 0.035715826, 0.025535017, 0.032534324, -0.0124770235, 0.019420998, 0.026032992, 0.007407368, -0.010077064, 0.0051837745, -0.034858204, -0.010561205, 0.009682834, -0.0050074086, -0.029325156, -0.02982313, -0.020458445, -0.012905835, 0.021883205, -0.005667916, 0.0063664634, 0.0118268905, -0.026489468, -6.099321E-4, 8.204473E-4, 0.0049624527, -0.012504688, -0.0066984463, -0.0066742394, -0.04180218, -0.01462108, 0.018618707, 0.013715043, -0.017636592, -0.024359245, 0.0041394117, 0.02095642, 0.009426931, 0.024373077, -0.014019361, -0.06855447, 0.011992882, -0.0063180495, -0.013929449, -0.0025140787, -0.025645679, 0.0014627996, -0.0098903235, -0.004997034, 0.0069716405, -0.0174706, 0.02074893, 0.020140296, -0.016709805, 0.024013428, 0.03189802, 0.009537592, 0.03162137, 0.008098999, -0.002920412, 0.020970253, 0.007386619, -0.004232782, -0.013811871, 3.3673784E-4, 0.0040909974, -0.016972626, 0.0075733596, 0.0022253229, 0.02676612, 0.0029290575, 0.0439324, -0.01016006, 0.023681447, 0.01688963, 0.009793495, -0.013057994, 6.2808744E-4, 0.0031106104, 7.86298E-4, 0.021288402, 0.008970454, -0.025175368, -0.011460326, -0.001250123, 0.02074893, -0.025853168, 0.008354902, 0.025313696, -0.017304609, -0.003235104, -0.0061866394, 0.0026143652, 0.015838351, -0.005999899, -0.010706448, 0.012898918, 0.015921347, 0.027983392, -0.005667916, -0.02507854, 0.012594601, 0.018079234, 0.034138907, -0.01300958, 0.02307281, 0.02296215, 0.018411217, 0.008057501, 0.046062626, 5.1569735E-4, 0.03817803, 0.03361327, 0.018065402, -0.023100477, 0.012234952, 0.004253531, 0.038427018, 0.0041117463, 0.009385433, 9.103593E-4, -0.0103468, -0.016488483, 2.8745914E-4, 0.0041463277, 0.02138523, -0.011896053, -2.4488062E-4, 0.009530676, -0.0036068556, 0.0011956571, 0.019863643, 0.033530273, 0.011017682, 0.004744589, 0.012518521, -0.004544016, -0.040308256, 0.005152651, -0.029269824, -0.03790138, 0.004374566, -0.007690937, 0.0030639253, -0.014980728, 0.02871652, -0.009281688, -0.0056575416, 0.01567236, 0.006764151, 0.055662464, -0.024469905, -0.032534324, 0.0035290474, 0.017913243, -0.023252634, 0.017276943, 0.008534727, -0.010090897, -0.0038558429, 0.0401146, 0.010616536, 0.0017524201, -0.018840028, 0.004526725, -0.0239166, -0.009115697, 0.03220234, -0.019503994, 0.0034650713, -0.006743402, -0.02935282, 0.022685498, 0.00642871, -0.019766815, 0.011667815, -0.024608232, 0.0050039506, -0.03109573, 0.007718602, 5.260718E-4, 0.011674732, -0.02549352, -0.0139087, -0.011107594, 0.0137980385, 0.004173993, -8.684292E-4, -0.02607449, 0.008223493, 0.0037071423, 0.0032644984, -0.006446001, -0.0115225725, -0.002432812, 0.045149673, 0.0023688362, 0.0045198086, 0.017705753, -0.008507062, -0.0446517, -0.014953063, -0.023045145, 0.012262618, 0.02755458, -0.018203728, 0.010699532, -0.016557647, -0.0037763054, 0.0065912437, -0.029186828, 0.014399758, -0.03209168, -0.007843096, 0.0044541038, -0.026046824, -0.009987152, 0.0038904245, 0.017553596, 0.010720281, -0.009876491, 0.023460124, 0.03604781, 0.007275958, -0.007995254, 0.008610806, -0.007981422, 0.01274676, 0.012442442, -0.029131498, 0.007269042, 0.01462108, -0.0070477203, 0.01958699, -0.0016832569, -0.010976184, 0.022879153, -0.01567236, 0.030210443, 0.017110951, -0.013244734, -0.0014783613, 0.017774917, 0.018120732, -0.009703583, 0.026364975, 0.0047791703, -0.028633524, -0.012656848, -0.0105335405, 0.022837656, -0.011232087, -0.026281979, 0.00341147, -0.04260447, -0.010561205, -0.030016785, 0.023460124, -0.0077670165, 0.0069716405, -0.0048310426, 0.002540015, -6.64398E-4, -0.029435815, -0.022076862, -0.03289397, -0.011093762, -0.020126462, 0.013203236, 0.024926381, 0.011889137, 0.00944768, -0.03278331, 0.014206101, 0.010588871, -0.014994561, -0.0016815279, -8.8236986E-5, -0.011370414, -0.009454596, -0.015105221, 0.011902969, 0.0017740335, 0.0024224375, 0.0027405878, 0.014192268, 0.008375651, 0.016834298, -0.008583141, 0.0048275846, 0.009807328, 0.047058575, 0.016267162, -0.0064010452, -0.0174706, 0.033862256, -0.0071652974, 0.001416979, 0.016474651, 0.02232585, -0.0016780697, -7.5214874E-4, 0.011702397, 0.0076563554, -0.013957114, 4.759286E-4, 0.016765136, -0.00905345, -0.008576225, -0.027679073, -0.0056125857, 0.012629182, 8.0445333E-4, 0.017346106, -0.033640932, 0.008036752, -0.039035656, 0.03162137, -0.005865031, -0.014206101, 0.030763747, 0.02417942, 8.8442315E-4, -0.006200472, 0.01261535, 0.033530273, 0.013652796, 0.023695279, -0.02159272, -0.024234751, -0.03134472, -0.0058304495, -0.009904156, -0.005083488, -0.014496586, -0.007995254, 0.0137980385, 0.015451037, 0.02048611, -6.2333245E-4, -0.021551222, -0.0042224075, -0.005232189, -0.028910177, 0.022367347, -0.014088524, -0.029435815, -0.01805157, -0.021302234, -0.033281285, -0.021509724, -0.039561294, -0.0193795, 0.01261535, 0.006532455, 0.03806737, 0.018328222, 0.0108655235, 0.016032007, -0.012968082, 0.004097914, -0.015617029, -0.0055607134, -0.023473958, -0.0035342346, 0.040142264, -0.001192199, -0.009039617, -0.010471294, -0.016087338, 0.013929449, 0.008652304, -0.018480381, -0.031981017, -0.0304041, 0.0035376926, -0.019974304, -0.011100678, -0.012836671, -0.037680056, -0.008251158, 0.03474754, -0.008963538, 0.026185151, 0.015755355, 0.01446892, -0.031234058, 0.031289387, 1.5151042E-4, 0.035549834, 0.004820668, -0.023736777, -0.012228036, -0.033032298, 0.03992094, -0.010789444, 3.782357E-4, -6.1036437E-4, -0.03419424, -0.01805157, 0.019918973, -0.01567236, -0.018549545, 0.016806634, -0.01572769, -0.023349464, -0.03552217, -0.03220234, -0.047860865, -0.008998119, 0.016350158, -0.009288604, 0.02417942, -0.040418915, 0.0033336615, 0.02924216, -0.015824517, 0.017761085, -0.0070096804, 0.041885175, 0.0102223065, -0.022519507, -0.035826486, -0.034664545, -0.007974505, -0.0013685649, 0.02893784, 0.055081494, -0.019808313, -0.006843689, 0.011889137, -0.01694496, -0.007559527, -0.042217158, -0.0038662173, 0.010561205, 0.008880543, -0.02074893, -0.020970253, -0.012110459, 0.029435815, -6.824453E-5, -8.455189E-4, 0.019434832, -0.032257672, 0.009364684, 0.037431072, -0.008527811, 2.0738124E-4, 0.02211836, -0.0051803165, 0.01658531, -0.008693802, 0.0013504096, 6.0517713E-4, 0.009738165, 0.045177337, 0.018037736, 0.020140296, 0.02929749, -0.0050661974, 3.1598893E-4, 7.482583E-4, -0.0056540836, 0.026115987, 0.004215491, -0.006961266, -0.028744185, -0.024317747, 0.010339884, -0.0092332745, -0.02935282, -0.02543819, 0.021233073, 0.0044575618, 0.006314591, 0.015049891, -0.027845064, -0.013417642, -0.0108655235, -0.010996933, -0.029989121, 0.0071860463, 0.018383553, -0.018231394, -0.027748236, -0.02348779, 7.3226437E-4, -6.989796E-4, 0.030625422, -0.004765338, -0.0077739325, 0.01758126, -0.030155113, 0.010637285, 0.022920651, 0.011114511, -0.011543321, 0.01990514, -3.7672278E-4, -0.021288402, 0.009724332, 5.6108565E-4, -0.018840028, -0.016073504, 0.003096778, -5.138602E-5, 0.0065186224, -0.018300558, 0.0079537565, 4.3529528E-4, -9.233274E-4, -0.012843588, -0.008749132, 0.010236139, -0.022837656, 0.008361819, -0.00588578, -0.022892987, 0.015741521, -0.0063387984, -0.0016996833, 0.008299572, -0.02084576, -0.029795464, 0.01060962, -0.0028858304, -7.668459E-4, -0.012145041, -0.009018868, -0.009088032, -0.03098507, -0.014074692, -0.013396893, 0.011550238, 0.020831926, 0.00281148, -0.027416253, 0.009046534, -0.028467532, -0.02877185, 0.0019849811, -0.0039837947, -0.012269534, -0.027762068, 0.0016460818, 0.06318741, 0.02860586, -0.01610117, -0.010443629, 4.5474738E-4, -0.045149673, -0.0034460516, 0.0062108464, 0.013369228, -0.001514672, 0.023584617, 0.015174384, -0.0054085543, 0.014192268, 0.022796158, -5.105101E-4, 0.017290775, 0.011045347, 0.009655169, -0.0020368532, 0.020209458, -0.04999109, -0.022007698, 0.019697651, 0.015686192, 0.012179622, 0.017442934, -0.013555968, -0.028633524, 0.008527811, -0.027167266, 0.016668307, 0.021426728, 0.0033353905, -0.041027553, -0.003323287, -0.0068367724, 0.0075526107, -0.006352631, -0.0047411304, -2.4401608E-4, 0.017055621, -0.007469615, -0.0026403014, -0.0011861472, -0.012608433, -0.026724622, 0.030708417, -0.013728876, -1.06392305E-4, 0.045315664, 0.008617722, -0.016294826, 0.010485127, 0.03516252, -0.012504688, -0.031372383, 0.012359446, -0.006805649, -0.002851249, 0.0018397385, 0.024400743, 0.0050316155, 0.008126664, -0.01773342, 0.0041152043, -0.02877185, 0.027540747, -0.004768796, -0.02507854, -0.038510013, -0.0037106003, -0.002363649, 0.0029636389, 0.017830247, 0.009814244, -0.030902075, 0.008624638, 0.0017999697, -0.03317062, -0.0137842065, 0.032064013, -0.01926884, -0.007850012, 1.9916812E-4, 0.19255008, 0.019517828, -0.02095642, 0.039284643, -0.0010798089, -0.01306491, 0.008071334, 0.019144347, 0.005840824, 0.0037970543, 0.029131498, 0.015796853, -6.942246E-4, -0.004464478, 0.023307966, -0.003031073, -0.018936858, -0.023294132, -0.015921347, -0.030044451, -0.016294826, -0.017650424, -0.017636592, -0.02571484, -0.009793495, 0.011363498, -0.023266468, -0.016018175, 0.007974505, -0.0055399644, 0.0079537565, -0.029380485, -0.018604875, -0.0027267553, -0.028439868, -0.0026939027, -0.0062108464, -0.021675715, -0.007275958, 0.0413872, 5.3039455E-4, 0.011315083, 0.027789734, -0.028578194, -0.014261432, 0.019213509, -0.00508003, -0.0021578888, -0.021509724, -0.0023169639, -0.03347494, 0.010837858, 2.1829605E-4, 0.018176064, -0.0023913141, -0.022630166, 0.0013331188, 0.001548389, -0.0025071625, 0.003634521, 6.0085446E-4, 0.016170334, -0.0015406081, 0.022892987, -0.0050039506, 0.013970947, -0.0118268905, -0.015368042, 0.012919667, -0.0105266245, 0.0061036437, -0.0015544407, -0.00847248, 5.1829097E-4, -0.008451731, -0.029020837, 0.013424558, 0.01641932, -0.003126172, 0.025521185, -5.321236E-4, -0.03134472, -0.002695632, 0.0025555766, -0.0019538577, -0.026005326, 0.016834298, -0.006293842, 0.016018175, -0.002320422, -0.01074103, -0.01825906, 0.0012829755, 0.011384247, -0.0016357073, 0.01462108, -0.033087626, 0.017276943, -0.01879853, 0.016709805, -0.032949302, 0.035881817, 0.0062350538, -0.019448664, 0.0016867152, -0.0109831, -2.4355679E-5, 0.03300463, 0.010021733, -0.0245529, -0.025147704, -0.046422273, -0.0070546363, -0.00611056, 0.015990509, -0.002723297, -0.02011263, -0.02054144, -0.011626317, -0.0046754256, 0.021412896, 0.027540747, 0.027374756, 0.0060275644, 0.023446292, -0.014455088, -0.05004642, 0.020472279, -0.0025607639, -0.026323477, 0.017968575, 0.004571681, -0.005505383, -0.016557647, -0.020306287, -0.005605669, 0.020804262, -0.015381874, -0.008500145, 0.006114018, -0.018425051, 0.0019469414, 0.014717908, -0.0018172605, 0.023031313, -0.012020547, 0.008313404, 0.00105906, -0.012110459, -0.015644694, -0.029518811, -0.010789444, 0.012767509, -0.027111936, -0.0017005478, 0.015063724, -0.026849115, -0.02813555, -0.017512098, 0.011972133, -0.039893277, 0.0054811756, -0.005062739, 0.0067191953, -0.024290081, -0.033391945, -0.17584027, 0.006152058, 0.016488483, -0.011660899, 8.174214E-4, 0.008368735, 0.01825906, 0.0076148575, -0.026046824, -0.027457751, 0.009662085, 0.011301251, -0.00802292, -0.038565345, 0.0155202, -0.019988136, -0.017982407, 0.014856234, 0.015437204, -0.013929449, 0.0161565, -0.041719183, 0.011211338, 0.0014472379, -0.01700029, -0.0017723045, 0.011474159, 0.0446517, 0.0049140383, -0.0039699622, -0.014060859, -0.027222596, 0.029601807, 0.022146026, 0.03610314, -0.0121727055, 0.0030656545, 0.0193795, -1.21575766E-4, 0.026060658, 0.015838351, 0.009717416, 0.016087338, 7.002764E-4, 0.0014403216, 0.02592233, -0.00669153, -0.0067918166, 0.030653087, -0.006978557, 0.034692213, -0.019420998, -0.010900104, -0.0020662476, 0.027789734, 0.012331781, 0.0011835536, 0.015132886, 0.020223292, -0.023211136, -0.016668307, -0.020721266, 0.0023757524, -0.014787071, -0.0118268905, -0.045951966, -0.0025244532, 0.026544798, -0.031759698, -0.015381874, 0.010485127, -0.007933008, 0.00432961, 0.0012077607, 0.022021532, 0.011045347, -0.021786377, -0.012954249, 0.031289387, -0.0021094745, 0.009288604, 0.039146315, -0.011017682, -5.6973106E-4, -0.016391655, -0.010637285, -0.026973609, 0.004308861, 0.020278621, -0.0079468405, -0.034609217, -0.0046270117, -0.008043669, -0.0013849911, 0.009198693, 0.011626317, -0.00695435, -0.017498264, 0.0032593112, -0.003188419, 0.011404996, -0.0026869865, -0.017346106, 0.04714157, 0.020154128, -0.0025140787, -0.0012527166, 0.033087626, 0.009219442, -0.0010573309, -0.019808313, 0.015464869, 0.034664545, 0.015188217, -0.013749625, -6.1036437E-4, -0.013943281, -0.03341961, -0.0036829351, -0.01731844, 0.02470506, -0.018452715, -0.01715245, 0.0064321687, 0.0036967678, -0.018093068, -0.061250843, -0.018577209, 0.024207085, 0.005747454, -0.02513387, 0.0014083337, -0.0265033, 0.05859498, -1.535637E-4, 0.013230901, 0.0064978735, -0.025963828, -0.0058131586, 0.029657139, 0.0010780798, -0.01578302, 0.016502315, -0.014178436, -0.01895069, 0.009157195, -0.012656848, -0.014662578, -0.017332273, -0.015174384, -0.01604584, -0.022464175, -0.03668411, 0.028882511, 0.010962351, 0.00789151, 0.008071334, -0.016806634, -0.015824517, 0.010187725, -0.0038558429, -0.02333563, -0.0065981597, 0.007718602, 0.014130021, -0.032285336, 0.008237326, 0.0034668006, 0.012380195, -0.01863254, -0.017512098, -0.014496586, -0.0082649905, 0.029767798, 0.0060137315, 0.001004594, 0.014067775, -0.0095721735, 0.013071827, -0.012864337, 0.0027941894, -0.02269933, 0.018037736, -0.0027890021, -0.014033194, 0.015838351, -0.008403317, 0.022934485, -0.028993173, 0.018964522, 0.022740828, -0.021606553, -0.0077670165, 0.008520894, 0.018674038, 0.0064356267, -0.013445307, 0.029020837, 0.004952078, 0.01641932, -0.012753676, -0.009876491, -0.010132395, 5.809701E-4, 0.0031728572, -0.0053670565, -0.009343935, -0.015119054, 0.013023412, -0.033142958, -0.00388005, 0.04091689, 0.020098798, -0.0103468, 0.031068066, -0.03220234, 0.021191575, 0.0349412, 0.052591622, -0.004485227, -0.017124783, -0.0057924096, -3.3479262E-4, 9.2505646E-4, -9.674189E-4, 2.3407387E-4, -0.04091689, 7.871626E-4, -0.07397685, 0.023446292, 0.020237124, -0.015935179, 0.012691429, 0.008347986, 0.02543819, -0.019365668, 0.01079636, 0.035549834, -0.021260737, -0.009876491, -0.012601517, 8.74481E-4, -0.0187432, -0.015658526, 0.024539068, 0.010886272, 0.014911565, 0.018397385, 0.014399758, 0.013189403, -0.006757235, -0.0038039705, -0.035300847, 0.013217068, -0.004958994, 0.022823824, -6.2333245E-4, -0.0036033976, 0.009973319, -0.011308167, 0.020154128, 0.029850794, -0.01737377, -0.021302234, -0.0068125655, -0.017636592, 0.009606754, -0.0304041, -0.030487096, -0.027803566, -0.024262415, -0.017747251, -0.020458445, 0.003188419, 0.007116883, -0.0141023565, 0.01825906, 0.010104729, 0.023847437, 0.0011074742, -0.032395996, -0.03203635, 0.001126494, 0.00847248, 0.0028806431, -0.008098999, 0.019711483, -0.013659713, 0.066507235, 0.010173893, 0.010339884, -0.026378807, 0.038427018, 0.003433948, -0.036269132, 0.029214494, -0.0055365064, -0.010263804, -0.021924702, -0.013763458, 0.011156009, 0.015769187, -0.0042846543, -0.00879063, -0.0103468, 0.0073243724, -0.0068506054, 0.015686192, -0.0023878561, -0.025313696, -0.016903462, -0.0059653176, -0.0092471065, 0.004613179, -0.03109573, 0.0019538577, -4.6987683E-4, 0.009025785, -0.029103832, 0.0045993463, -0.006982015, -0.015603196, 0.030099781, -0.008617722, -0.026157485, -0.010727197, 0.02528603, 0.016059672, 0.0013651067, 0.017927077, -0.015796853, -0.018065402, -0.0076148575, 0.025728675, -0.014482753, -0.03109573, 0.010284553, 0.0014074692, -0.0021820958, 0.0018224478, -0.025465854, 0.021661883, -0.020997917, 0.024456073, 0.002164805, -0.008527811, -0.025299862, 0.03859301, 0.021758711, 0.011169841, 0.019338002, -0.0121727055, 0.008105916, 0.014856234, 0.014330595, -0.015063724, 0.021675715, -0.03579882, 0.011038431, -0.013057994, -0.0059480267, -0.0031088814, -0.032561988, -0.012096627, -0.0025019753, 8.4994965E-5, 0.005930736, 0.0911293, 0.0076978533, 0.013867202, 0.017387604, -0.016903462, 0.028163215, 0.0043019447, -0.0066327415, -0.017595094, -0.03726508, -0.011024598, 7.41342E-5, -0.020499943, -0.0022564463, -0.051236026, 7.7246537E-4, 0.006650032, 0.020223292, 0.0021457851, -0.0032506657, 0.027568413, -0.02159272, 0.00854856, -0.0047203815, -0.017110951, 0.0051076952, 0.04249381, 0.016875796, 0.0016754761, -0.052176643, 0.024940215, 0.036462788, -0.037707724, -0.018397385, -0.0092332745, -0.0111905895, -0.013244734, 0.038510013, 0.008645387, 0.0030846742, 0.0020385825, 0.02011263, -0.0012181351, -0.02924216, 0.01836972, -0.013389977, -0.009814244, -0.033530273, -0.023294132 ], - "id" : "4367b794-5749-4663-a555-b897b6b9bc8c", - "metadata" : { - "name" : "VelocityAir MIPS Road Bike Helmet" - }, - "text" : "price: 84.99\nname: VelocityAir MIPS Road Bike Helmet\nshortDescription: \ndescription: ## Overview\nExperience the perfect balance of speed, comfort, and safety with the VelocityAir MIPS Road Bike Helmet. Designed to elevate your road racing experience, this helmet offers exceptional performance and protection. With its advanced features and lightweight design, the VelocityAir MIPS is engineered for podium-worthy performance.\n\n## Product Details\n- Lightweight construction reduces weight and enhances comfort for an effortless ride.\n- Optimized ventilation system improves airflow, keeping you cool and maximizing your speed.\n- MIPS Air safety system integrated for enhanced protection against rotational forces.\n- Customizable fit with a single-lace BOA® fit system, providing a secure 360° fit.\n- Convenient rubberized storage port for sunglasses when not in use.\n- Beveled front edge expands your field of view for optimal visibility while riding in various positions.\n- Crash Replacement Guarantee offers a free helmet replacement within the first year in case of a crash.\n- 30-Day Unconditional Guarantee allows for hassle-free returns if you're unsatisfied for any reason.\n\n## Features\n### Ultralight Construction\n- Utilizes cutting-edge materials and components to minimize weight for a faster and more comfortable ride.\n- Incorporates OCLV Carbon inlay to reduce grams and enhance overall performance.\n\n### Advanced Ventilation\n- Multiple rounds of computational fluid dynamics modeling and wind tunnel testing ensure maximum airflow.\n- Designed to keep you 38% cooler* and save you 18 seconds at 45 km/h compared to previous models.\n\n### MIPS Air Safety System\n- Provides seamless integration of MIPS technology for enhanced protection against rotational forces.\n- Delivers improved sweat management for a comfortable and secure fit.\n- Offers lightweight construction without compromising safety.\n\n### BOA® Fit System\n- Features a single-lace design and 360° adjustability for a customized fit.\n- Two lace height positions and three yoke positions enable complete customization for the perfect fit.\n\n### Secure Storage\n- Equipped with rubberized side vents for easy and secure storage of sunglasses while cycling.\n\n### Expanded Field of View\n- Beveled edge design above the brow increases the field of view for better visibility.\n- Allows you to easily see the road ahead, even when in a tucked position.\n\n### Virginia Tech 5-STAR Rating\n- Independently tested and awarded a 5-STAR safety rating by Virginia Tech's reputable third-party testing facility.\n- Ensures the highest level of protection for cyclists.\n\n## Specifications\n| Size | Circumference | Fit System | Pad Material | Buckle Type | Includes | Weight |\n|----------|:----------------------:|:----------:|:------------------:|:------------------:|:--------------------------:|:------:|\n| S | 51-57cm (20\"-22\") | BOA® | Moisture Wicking | Lightweight Buckle | Crash Replacement Guarantee, travel bag | 240g |\n| M | 54-60cm (21\"-24\") | BOA® | Moisture Wicking | Lightweight Buckle | Crash Replacement Guarantee, travel bag | 260g |\n| L | 58-63cm (23\"-25\") | BOA® | Moisture Wicking | Lightweight Buckle | Crash Replacement Guarantee, travel bag | 285g |\n\n## Sizing\n| Size | Circumference |\n|:----:|:------------------:|\n| S | 51 - 57 cm (20\" - 22\") |\n| M | 54 - 60 cm (21\" - 24\") |\n| L | 58 - 63 cm (23\" - 25\") |\ntags: [helmet]" - }, - "530d3618-070a-4084-a022-06ba07647614" : { - "embedding" : [ 0.016933022, -0.003982272, -0.017107036, 0.0010909417, 0.0046515614, 0.018137742, -0.010608236, -0.025044808, -0.009303123, -0.029207788, 0.008406275, 0.022140093, -0.020721199, 0.00380491, 0.00858029, 0.016009402, 0.010855874, -0.015594442, 0.016049558, -0.03905973, 0.020158997, 0.013787361, -0.025914885, -0.027400708, -0.003818296, -8.6923956E-4, 0.04074634, -0.015500742, -0.002359245, -0.030519595, 0.006933838, 0.027347164, -0.005668881, 2.1176734E-4, -0.012221224, 7.2408747E-4, 0.025178667, -0.02611567, 0.01521964, 0.005836203, 0.016625147, -0.0069606095, -0.004838962, -0.007235018, -0.026370002, 0.023411741, 0.036088083, -0.008346039, 0.013285394, 0.01894089, -0.001172093, 0.023733001, -3.204223E-4, 0.0074023404, -0.0049594343, -0.025312524, 0.032848723, 0.018793646, 0.023679458, 0.0021551119, 0.009370051, 0.0074893483, -0.033196755, 0.012716498, -0.02278261, -0.031911716, 0.008446432, 0.0074893483, 0.0030268612, 0.014229092, 0.003557273, 0.018137742, 0.041362084, 0.0042734127, 0.011578706, -0.022207022, 0.008453125, -9.2947565E-4, 0.0032728252, -0.00705431, 0.021818833, -0.015795229, -0.0054346295, 0.018900732, 0.03940776, 0.007061003, -0.020801514, -0.0064285244, -0.011799572, 0.007556277, -0.0050430954, 0.004808844, 0.003945461, 0.0035171157, 0.008848006, -0.0061741946, -0.018284986, -1.0143917E-4, 0.0024746975, -0.029154245, 0.010320442, 0.010307057, -0.032902267, -0.011431462, -0.029341646, -0.027628265, -0.027735353, -0.0134727955, 0.00841966, 0.0032795179, -0.030198338, 0.012053901, -2.955331E-4, 0.017321208, 0.014148777, -0.012087367, 0.040612478, 0.01248894, 0.01973065, -0.029502276, 0.021912534, 0.01852593, 9.068871E-4, -0.03234006, -0.0042332555, -0.001239022, 0.0026704646, 0.0043771523, -0.010246821, -0.010487764, -0.015701529, 0.005789353, -0.0056119915, 0.016410975, -0.006692894, 0.021818833, -0.010387371, 0.01785664, -0.037480205, -0.0072751753, -0.0067363977, 0.01792357, -0.019784193, -6.642697E-4, -0.003393297, -0.012268074, -0.016196802, 0.035284936, 0.021711748, -0.025647169, 0.009631074, -0.005210418, 0.024870792, 0.02990385, 0.007248404, -0.002755799, -0.005729117, 0.019516477, -0.003811603, -0.022247178, -0.028404642, 0.009577531, -0.0084732035, -0.012361775, 0.03094794, 0.010119655, 0.007496041, -0.045270734, 0.018311758, -0.01792357, -0.025981814, 0.027146377, -0.037025087, 0.01811097, 0.0062344307, 0.029154245, 0.023184184, -0.026490474, -0.015460584, 0.013158229, 0.00888147, 0.0142692495, 0.009450366, 0.013379094, -0.018244829, 0.011833036, 0.010440914, -0.022140093, 0.015929088, -0.024161346, 0.026557403, -0.0030101289, -0.008935013, -0.010414143, -0.5971132, -0.023532214, -2.6018624E-4, 0.0060938797, -0.006625965, -0.0020061948, -0.0011411384, 0.01614326, -0.008888163, 8.2531746E-4, -0.014630666, 0.014938539, -0.0077771423, -0.0069003734, -0.030466052, -0.023786545, -4.9177084E-5, -2.0695683E-4, 0.007676749, -0.008553518, -0.043584123, -0.0029532393, -0.01963695, 0.020667655, 0.016263733, 0.0029114087, 0.011190519, 0.0012599373, 0.0015301629, 0.0052539217, -0.037132174, 0.03667706, -0.0027474328, -0.008821234, 0.040719565, -0.030225107, 0.005354315, 0.0136200385, -9.001942E-4, 0.0073287184, -0.008754305, -0.012642876, 0.0038751855, -0.013124765, 0.004755301, 0.005203725, 0.034428246, -0.010353907, -0.005769274, -0.051910084, 0.001208904, 0.004835616, 0.013660196, 0.0102133555, -0.0058295103, -0.034776274, 0.025044808, -0.012040515, 0.006860216, 0.008252338, 0.010246821, 0.0063013593, 0.0064285244, -0.0023224342, 0.010380678, 0.00726179, -0.04813529, -0.022153478, 0.0106550865, -0.018030657, -0.002111608, 0.029555818, -0.013425945, 0.0027005826, 0.017361367, 0.018579474, 0.04776049, 0.0023558985, 0.0034401475, 0.020788128, 0.01716058, 0.006853523, -0.0037078632, -0.032018803, 0.025633782, -0.0020480254, -0.0034016632, -0.016384203, 0.02408103, 0.022260565, 0.02065427, 0.00441731, 0.006779901, -0.021966077, -0.0157283, 0.030519595, -0.002193596, 0.018673174, 0.01147162, -0.02583457, -0.016504675, 0.013673582, 0.025901498, -0.002201962, 0.019342463, 0.0046482147, -0.009015328, -0.0030285344, -5.1530053E-5, -0.035579424, 0.020306239, -0.015567671, -0.030974712, 0.0055316766, -0.014215706, -0.029475505, 0.0130444495, 0.01681255, 0.003557273, -0.011324376, 0.020266082, 0.0045812856, 0.018659787, -3.2878842E-4, -0.022354266, 0.0032008765, 0.007616513, 0.025084965, -0.01121729, -0.014202321, 0.019155063, 0.019355848, 0.041870743, -0.014296021, 0.033732183, 0.033250295, 0.019570021, 0.003975579, 0.0018455655, -0.032688092, -0.02821724, 0.003855107, -0.0041429014, -0.017709397, -1.2350481E-4, -0.014657437, -0.010025955, 0.014818067, -0.018445615, -0.02488418, -0.01919522, -0.017495224, -0.011839729, 4.4047608E-4, -0.01547397, -0.02456292, -0.031590458, -0.024094418, -0.021390488, -0.034776274, 0.01954325, 0.0045043174, -0.029662905, -0.019596793, 0.008332653, -4.6850255E-4, 0.01861963, 0.0046180966, -0.005786007, -0.048001435, -0.029957393, -0.003968886, -0.006117305, 0.0030954634, -0.014992082, 0.001299258, -0.017200736, -0.008493282, -0.001059987, -0.019181833, 0.010922803, -5.3386284E-5, -0.059593525, 0.037694376, 0.022233794, 0.023344813, 0.033544783, 0.014349564, -0.017107036, 0.017535381, -0.005474787, -0.0030452667, -0.0070275385, -0.008506668, 0.007877536, -0.016116489, 0.0084732035, -0.010373985, -0.008238953, 0.013947991, 0.031697545, 0.026932204, 0.008031473, 0.00548148, -0.009570838, -0.020681042, 0.016866092, 0.0017836562, 0.025526697, 0.04077311, 0.006381674, -0.028940072, -0.0054346295, -0.0060436833, -0.015099169, -0.0024395597, 0.015179483, 0.027347164, 0.008874777, -0.008995249, -0.015996017, 0.012596026, 0.029314874, -0.003212589, -0.02056057, 0.029689677, -0.004852348, 0.032072347, -0.008412967, -0.027159764, -0.011692486, 0.039488073, 0.015112554, -0.0046381755, 0.006927145, 0.0136200385, 0.015741685, -0.0070944675, 0.044414043, -0.0036442806, 0.029207788, 0.056648653, 0.010226741, -0.019302305, 0.018766874, -0.0025165281, 0.025968427, 0.016544834, 0.027400708, 0.010829102, 0.009035407, 0.004186405, -0.020694427, 0.027467636, 0.010166505, -0.016277118, 0.004872427, 0.004792112, 0.0037379812, 0.015206255, 0.030733768, 0.042941608, 5.0615007E-4, 0.021631433, 0.026370002, -0.0073487973, -0.019248763, -8.2448084E-4, -0.0014925153, -0.021939306, 6.5339374E-4, -0.023197569, -0.0061675017, -8.094218E-4, 0.0011737662, -9.905483E-4, 0.0019426125, 0.022193635, 0.012910592, 0.053516377, -0.01683932, -0.026062129, -0.004634829, 0.009510602, -0.013526338, -3.741746E-4, 0.010166505, 0.020493641, 0.0014573776, 0.046020336, 0.022648752, 0.025098352, -0.025794413, 0.00948383, -0.023411741, -0.0052371896, 0.024696779, -0.02284954, 0.002621941, 0.004193098, -0.015192869, 0.0055818735, -0.013640118, -0.030519595, 0.03434793, -0.017977113, 0.0151393255, -0.021872377, 0.030921169, 0.014483422, -0.0133255515, -0.035927452, -0.016384203, -0.0073956475, -0.0057625817, 0.013479488, 0.025714098, -0.008633833, 0.017655853, -0.03501722, -0.013097993, -0.007977929, -0.017455067, -0.029288104, 0.016518062, 0.020413326, -0.005414551, 0.021725133, -0.03670383, -0.015340112, -0.006110612, 0.0064820675, 0.00339999, 0.013245237, -0.0029398536, 1.3040686E-4, -0.00583955, -0.018954275, -0.018673174, -0.0336251, 0.019141676, -0.013921219, -0.010367292, 0.0046515614, 0.004979513, -0.024067646, -4.793785E-4, 0.011150361, 0.014550351, -0.0041596335, 0.017321208, 0.018070813, 0.01253579, -0.015313341, -4.1642349E-4, -0.0045712464, 0.013405866, -0.0010583139, -0.019235376, 0.017495224, 0.013840904, -0.0128972065, 0.018044041, 0.009457059, 0.009584224, 0.02183222, -0.010086191, 0.012816891, 0.01512594, -0.0022053085, 0.008064937, 0.012709805, 0.013666889, -0.030037707, 0.044922702, 0.012167681, -0.030332195, 0.009149185, -0.005779314, 0.019449549, -0.0010683532, -0.0059968326, -0.010025955, -0.042218775, -0.015299955, -0.01639759, 0.01938262, -0.009283043, -0.0041161296, 0.0023207609, -0.009818475, 0.017361367, -0.001932573, -0.023572372, -0.048376236, -0.013867676, -0.020921987, 0.02236765, 9.6461334E-4, -0.008051551, 0.015768457, -0.038845554, 0.014804681, 0.01274327, -0.017281052, 0.018003885, -0.017910184, -0.021698361, -0.014644052, 0.020627499, 0.021069229, 0.013265315, 0.024321975, -0.005263961, 0.021484189, -0.006733051, 0.02786921, -0.016330661, 0.0032226283, 0.002165151, 0.020212539, 0.023465285, 0.022327494, -0.015259798, 0.01861963, -0.013285394, 0.019248763, 0.025540082, 1.4525671E-4, -0.020627499, 0.00853344, -8.842986E-4, 0.003563966, -0.009751546, -0.014577122, -0.0072082467, -0.018646402, 0.0025299138, -0.032714866, 0.01461728, 0.030974712, 0.004865734, 0.008499975, -0.009959026, 0.01588893, -0.045993567, 0.033250295, 0.010976346, -0.01075548, 0.036248714, 0.015621214, 0.0015853792, 0.0050966386, 0.03250069, 0.06869586, 0.044467587, -0.015273184, -0.02567394, -0.042245544, -0.037774693, -0.038470753, 0.0055919127, 0.0211897, -0.021296788, -0.01699995, 0.01228146, 0.008760998, 0.010989731, -0.010983039, -0.015366884, -0.008051551, 0.010621622, 0.0038015638, 0.02236765, -0.008955092, -4.7310392E-4, 7.3078036E-4, -0.036329027, -0.03820304, -0.008185409, -0.016544834, -0.023625914, 0.00618758, 0.02262198, 0.029020388, 0.018793646, -0.0038517604, 0.023478672, -0.013285394, 5.396146E-4, -0.013352323, 0.0070743887, -0.03094794, 0.026169214, 0.041763656, -6.9271453E-4, -0.027922753, -0.013405866, -0.014751138, 0.025955042, -7.2785217E-4, -0.01878026, -0.03517785, -0.0394613, -0.0050899456, -0.03448179, -0.011331069, -0.028136926, -0.02303694, -0.02389363, 0.022073163, 0.0048188837, 0.016357433, 0.012435396, -0.013773975, -0.024067646, 0.019596793, 0.0011545242, 0.021684976, 0.003915343, -0.0075361985, -0.014965311, -0.017107036, 0.01699995, -0.010106269, -0.0011754395, 0.025312524, -0.01279012, 0.0070944675, -0.0040558935, -0.008379503, -0.019918052, 0.007904308, -0.002621941, -0.01630389, -0.023197569, -0.010206663, -0.036730602, -0.0055182907, 0.018084198, -0.017736169, 0.029448733, -0.023907017, 0.013680275, 0.035284936, 0.018231442, 0.020118838, 0.005437976, 0.007429112, 0.0012791794, -0.0065389574, -0.02151096, -0.018699946, 0.00674309, 0.010795638, 0.021551117, 0.013205079, -0.011478312, -0.009289737, 0.017803097, -0.029127473, -0.020948758, -0.021176316, 0.010548, 0.016705463, 0.017455067, -0.035659738, -0.0019861162, -0.018044041, 0.0042867986, -0.0074157263, 0.022220407, 0.0057257707, -0.017829869, -0.0019944822, 0.010561386, -0.016049558, 0.005608645, 0.01262949, -0.012729884, 0.014296021, 0.001040745, -0.008386196, 0.011786186, 0.017468452, 0.060396675, -0.00437046, -0.0047352226, 0.041736886, 0.013238544, -0.011257447, -0.0081787165, -0.011404691, 0.02405426, -0.026610946, -7.872516E-4, -0.012803506, -0.025044808, -6.914596E-4, 0.016344046, -0.007810607, -0.01699995, 0.0035472338, -0.013907833, 0.007368876, -0.013245237, -0.040398307, -0.010420836, -0.022970011, -0.022006234, -0.030653453, -0.0012975847, 0.007629899, -0.034053445, -0.015996017, -0.021377103, 0.019409392, 0.030144794, -0.007690135, -0.026222758, 0.012763348, 0.03739989, -0.012910592, 2.3027738E-4, 0.0078173, -9.5373736E-4, -0.010059419, -0.0073487973, 0.005344276, -0.01748184, 0.0015870525, -0.0020463523, -0.012723191, -0.025151895, 0.0014214033, -0.013673582, 0.012562562, -0.0024462526, -0.004825576, 0.01538027, 0.018191285, -0.014135391, -0.013372402, 0.032741636, 0.0021684975, 0.0030670185, 7.504407E-4, -0.021778677, 0.025058195, 0.0010231761, -0.011163747, -0.0027357202, 0.0051434888, -0.031349514, 0.0147109805, 0.023933789, 5.8353668E-5, -0.006164155, -0.02430859, -0.022019621, -0.008801156, 0.014804681, -0.020694427, -0.019302305, 0.00953068, -0.008212181, -0.018673174, 0.03670383, -0.011786186, -0.04947387, 0.023425128, -0.015246412, -0.022461351, -0.041388854, 0.0088413125, 0.043798298, 0.017040107, -0.014282635, -4.59875E-5, -0.010788945, -0.044976246, -0.022220407, -0.0037413277, 0.027266849, 0.0182716, 0.015795229, -0.0039555, 0.0075964346, 0.02611567, 0.03788178, -0.017133808, 0.011491698, 0.011551934, 0.021658204, 0.009356665, 0.016183417, -0.027440865, -0.011210597, 0.022729067, 0.028859759, 0.012127523, -0.0078976145, -0.012803506, 0.002687197, 0.011143668, -0.016344046, 0.01699995, 0.021872377, 0.007710214, -0.030519595, -0.03922036, -0.022046393, 2.8988597E-4, -0.010072805, -0.0034334545, -0.03940776, -0.0081921015, -0.0046549076, -0.012355082, -0.0036141626, -0.016959792, 9.7381603E-4, 0.019128291, 0.014242478, -0.002605209, 0.050357334, 0.0059031323, -0.0013026044, -1.5236791E-4, 0.019208604, 0.008754305, -0.007957851, 0.02199285, -0.018981047, 0.008018087, 0.0024546187, 0.03515108, 0.011712564, -5.233006E-4, -0.0025717444, -0.037158947, -0.023612529, 0.020306239, 0.016116489, -0.021296788, -0.019971594, 0.008064937, -0.018231442, 0.004942702, 0.005444669, -0.0075495844, -0.04353058, 0.004852348, -0.0119535085, -0.027574722, -0.0047586476, 0.03346447, -0.013787361, -0.0084732035, 0.0064084455, 0.18086876, 0.008941706, -0.0023575719, 0.026610946, 0.012609412, -0.0044675064, 0.01748184, -0.006739744, 0.018044041, -0.020721199, 0.0065188785, 0.014951925, 0.0012482246, 0.004179712, 0.02837787, -0.0067732083, -0.048403006, -0.035472337, -0.0063381703, -0.016317274, -0.024040874, 0.013907833, -0.034080215, -0.04502979, 0.013171615, 0.013947991, -0.02611567, -0.0100661125, 0.021055844, 0.019596793, 0.013131457, -0.027494408, -0.008640526, 0.005789353, -0.011464927, -0.008125173, 0.0055216374, -0.0055249836, -0.010226741, 0.04864395, 0.006776555, -0.007884229, 0.0144164935, -0.02752118, -0.012201145, 0.01070863, -0.003855107, 0.018418843, -0.0310818, -0.008292495, -0.0144164935, 0.007235018, 0.009376744, 0.039488073, -0.010373985, -0.013051143, 0.016089717, -0.01121729, -2.5893134E-4, -0.017709397, -0.020573955, 0.024000717, 0.0020580648, 0.037185717, -0.011920044, 0.008680684, -0.022300722, -0.037828237, 0.02160466, -0.010588158, -0.007884229, 0.0069070663, -0.009169265, 0.0019108212, -0.021283403, -0.034535334, 2.0957124E-4, 0.0144164935, -0.0075897416, 0.016598377, -0.008653912, -0.013318858, 0.014657437, -8.303371E-4, -0.0029030426, -0.041951057, 0.01244209, -0.007496041, 0.025031423, -0.008292495, 0.0012808526, 0.0037346347, -0.00756297, -0.00533089, -0.0038919176, 0.0067732083, -0.017776325, 0.01748184, -0.008359424, 0.0029699716, -0.025018036, 0.032848723, 0.005856282, -0.0124554755, -0.023492057, 0.0019342463, 0.00939013, 0.01674562, -0.005404512, -0.035204623, -0.01861963, -0.035980996, -0.0022354266, -0.002432867, 0.00964446, -0.0026119018, -0.020801514, -0.011993665, -2.955331E-4, -0.03298258, 0.031911716, -0.017615696, 0.018191285, -0.006816712, 0.018954275, -0.0075361985, -0.029984163, 0.0075361985, -0.005270654, -0.023063712, 0.019128291, 6.425178E-4, -0.009370051, 0.006308052, -0.019744037, 0.0050430954, -0.0014741098, -0.013559802, -0.002958259, -0.0073956475, 0.006274588, -0.0047452617, 0.014148777, -0.009129107, 0.022421194, -0.017013336, 0.006873602, -0.0128235845, -0.0144164935, -0.011123589, -0.026370002, -0.010112963, -0.007977929, -0.016437747, 0.019998366, 0.015259798, -0.029984163, -0.038899098, -0.026048742, 0.0036442806, -0.032366835, -0.012756656, 0.0045846323, -0.0037179026, -0.026383387, -0.010815716, -0.16780423, 0.009637767, 0.032045577, -0.017428296, 0.01040745, 0.010695244, 0.027266849, -0.005344276, -0.034588873, -6.655246E-4, 0.011739336, 2.4554553E-4, -0.027762122, -0.02786921, -0.0035003833, 0.0010457647, -0.015955858, -8.951745E-4, 0.027240077, 0.022608595, 0.012783427, -0.018365301, 0.008312574, -0.022461351, -0.015848773, 0.010474379, 5.3124846E-4, 0.015594442, 0.024937723, 0.0148448385, -0.015621214, -0.032447148, 0.022287335, -0.019275535, 0.014349564, 0.0019710572, -0.00634821, 0.0060537225, 5.011304E-4, 0.037667606, 0.021377103, 0.013245237, 0.018177899, -0.011404691, 0.028806215, 0.033036124, -0.005796046, -0.00669624, -0.0015569344, -0.016317274, 0.043289635, -0.02770858, 0.026209371, -0.008205487, 0.017040107, -5.571834E-4, -0.022394422, 0.017843254, 0.022836154, -0.026396774, -0.035311706, -0.005729117, -3.5555998E-4, -0.0115117775, -0.015407042, -0.0336251, -0.0060102185, 0.03603454, -0.022568438, -0.02456292, -0.016665306, -0.011645635, -0.0017401524, 0.011692486, 0.026169214, 0.013800747, -0.029877078, 0.001557771, 0.03555265, -5.889746E-4, -0.003122235, 0.044815615, -9.947313E-4, 0.0033313879, -0.0128235845, 0.014322792, -0.005247229, 0.002096549, 0.005488173, -0.014175549, -0.020480255, -0.012642876, 0.03234006, -0.0121743735, -2.1563667E-4, -0.0036944773, 0.0027691848, -0.0024981226, 0.0045879786, 0.00238769, -0.0054112044, -0.009912176, -0.028618814, 0.01829837, 0.03536525, -0.0029482197, 0.0065155323, 0.027949525, -0.0035505802, 0.015045625, -0.014389722, 0.011839729, 0.0145637365, 0.02541961, -0.005909825, -0.0035238087, 0.0011963547, -0.029448733, 0.026062129, -0.004835616, 0.019275535, -0.0031205616, -0.0070877746, 0.008540132, 8.851352E-4, -0.02856527, -0.06885649, -0.00811848, 0.009818475, 0.011572014, -0.022889696, 0.023599144, -0.0039588464, 0.028752672, -0.0025466462, 0.027400708, -0.011685792, -0.018539315, -0.00705431, 0.032554235, 0.010842488, 0.004828923, 0.011290912, -0.00959761, -0.029877078, 0.024897564, -0.024964493, -0.028511727, -0.010561386, 0.0055785268, -0.020962143, 0.004942702, -0.026102286, 0.02023931, 0.015835386, -0.005257268, 0.016718848, -0.030118022, -0.022514895, 0.012007051, -0.025379453, -0.00955076, -0.01348618, 0.0066995868, 0.01639759, -0.026744803, 0.0041027437, -0.009972412, -0.01445665, -0.020667655, -0.022514895, -0.03822981, -0.014429879, 0.033598326, 0.008024779, 0.011049967, 0.008981863, -0.002921448, 0.004333649, 8.9601113E-4, 0.010775559, -0.0211897, 0.00939013, -0.00867399, -0.028993616, 0.01639759, -0.0147109805, 0.013198387, -0.022514895, 0.010394064, 0.0075830487, -0.019275535, -0.002253832, 0.01075548, 0.036730602, -0.016504675, -7.274339E-4, 0.0061306907, -0.0014548678, 0.026664488, -0.032902267, 0.007174782, -0.038818784, -0.006381674, 0.019128291, -0.0029599322, -0.012361775, -0.011605478, 0.011545242, -0.032768406, 0.023505444, 0.045083333, -0.004942702, 7.560878E-5, 0.0075161196, -0.036623515, 0.016625147, 0.014242478, 0.06510847, 0.010300363, -0.00726179, 0.0035405408, -0.011384612, -0.0016313929, -0.010648394, -0.009175957, -0.055202987, -0.010534614, -0.07715568, 0.030840855, 0.016705463, -0.016477905, -0.014429879, 0.007736985, 0.0236393, -0.0067062797, 0.020855056, 0.021711748, -0.015862158, 0.00872084, -8.9015486E-4, -0.006759823, -0.020855056, 0.0030118022, 0.013566496, 3.087097E-4, -9.3616854E-4, 0.030867627, 0.012602719, 0.0039421143, -0.008078323, 0.026463702, -0.03094794, 0.0046047107, -0.0055551017, 0.013466102, 0.0155810565, -8.3744834E-4, 0.027762122, -0.017602311, 0.0102133555, 0.04540459, 0.0051334496, -0.0076499777, -0.0058529354, -0.013546417, -0.009155879, -0.043289635, -0.031536914, -0.023853473, -0.0074023404, -0.015674757, -0.003212589, 0.0057993922, 0.032688092, -0.005729117, 0.009570838, 0.035900682, 0.0074491906, -1.21204124E-4, -0.012000359, -0.03228652, 0.0065489965, -0.0022404462, 0.007201554, -0.0028327673, 0.019516477, 0.009865325, 0.054506928, -0.0027440866, 0.02313064, -0.018592859, 8.42468E-4, -0.013171615, -0.019596793, 0.013660196, 0.01861963, -0.019007819, -0.030840855, -0.004035815, 0.020975528, 0.018097585, -0.0010424182, 9.428614E-4, 0.007844072, -1.4849858E-4, -0.020855056, 0.019262148, 0.018900732, 0.0015820328, -0.0066828546, -0.008908242, 0.011786186, 0.004494278, -0.030225107, 0.03231329, 0.00268887, 0.031188885, -0.029957393, 0.03250069, 5.5216375E-4, -0.007228325, 0.036971547, 0.0068468302, -0.023411741, -0.008285803, 0.047921117, 0.048028205, -0.018914118, 0.0011603804, -0.015514128, 0.005427937, 0.009189343, 0.02611567, -0.005458055, -0.007107853, 0.001695812, 0.0061741946, -0.0070275385, -0.007837378, -0.0052606147, 0.013559802, -0.016223574, 0.017414909, 7.0819183E-4, -0.025781026, -0.02643693, 0.028966844, 0.01690625, 0.0017669239, 0.0064820675, 0.0065858075, 0.02176529, -0.016705463, 0.012181067, -0.010179891, 0.021792062, -0.025084965, 0.013707046, -0.0074893483, 0.008091709, -0.009028713, -0.01801727, -0.00777045, -0.0026085554, 0.008586982, 0.01801727, 0.107354015, 0.008038165, -0.019904666, 0.004380499, -0.00548148, 0.02541961, 0.022207022, -0.013700354, -0.023880245, -0.027976295, 0.015942473, 3.5409592E-4, -0.024710163, -0.0014105274, -0.038256582, 0.036918003, 0.008961785, 0.00985194, 0.002156785, -0.0038584534, 0.03466919, -0.009664538, 0.027400708, -0.0015159404, 0.0060102185, -0.018378686, 0.02465662, 0.019744037, -0.014429879, -0.03756052, 0.025914885, 0.023947174, -0.03314321, -0.0066694687, 0.006860216, -0.014470036, -0.01080233, 0.021350332, 0.02752118, -0.01262949, 0.008640526, -9.380509E-5, -0.018592859, -0.012977521, 0.016277118, -0.008172023, -0.0070877746, -0.025205437, -0.056488022 ], - "id" : "530d3618-070a-4084-a022-06ba07647614", - "metadata" : { - "name" : "Velocity V9" - }, - "text" : "Brake rotor\tShimano RT56, centerlock, 160mm\nRotor size\tMax brake rotor sizes: 160mm front & rear\n\nWeight\nWeight\tM - 11.5 kg / 25.35 lbs\nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| S | 155 - 165 cm 5'1\" - 5'5\" | 72 - 78 cm 28\" - 31\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n| XL | 186 - 197 cm 6'1\" - 6'6\" | 87 - 93 cm 34\" - 37\" |\n\n## Geometry\n| Frame size | S | M | L | XL |\n|--------------------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 44.0 | 48.0 | 52.0 | 56.0 |\n| B — Seat tube angle | 74.5° | 74.0° | 73.5° | 73.0° |\n| C — Head tube length | 14.5 | 16.0 | 18.0 | 20.0 |\n| D — Head angle | 71.0° | 71.0° | 71.5° | 71.5° |\n| E — Effective top tube | 56.5 | 57.5 | 58.5 | 59.5 |\n| F — Bottom bracket height | 27.0 | 27.0 | 27.0 | 27.0 |\n| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 |\n| H — Chainstay length | 43.0 | 43.0 | 43.0 | 43.0 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 7.0 | 7.0 | 6.6 | 6.6 |\n| K — Wheelbase | 105.4 | 106.3 | 107.2 | 108.2 |\n| L — Standover | 73.2 | 77.1 | 81.2 | 85.1 |\n| M — Frame reach | 39.0 | 39.8 | 40.4 | 41.3 |\n| N — Frame stack | 57.0 | 58.5 | 60.0 | 61.5 |\ntags: [bicycle, electric bike, mountain bike]" - }, - "bb2d42e0-689a-4fce-becc-cf64efb02c0a" : { - "embedding" : [ 0.02777912, 0.013726632, -0.025416672, -0.01538306, -0.0142833, 0.0017735325, -9.0034347E-4, -0.02606838, 0.008906697, -0.04825366, 0.012457156, -0.0036590775, -0.025443826, 0.0033603772, -0.015260865, 0.004280238, 0.006058862, -0.0023912988, 0.015002896, -0.01763689, 0.004382068, 0.0026560558, -0.017691199, -0.015559565, -0.03470353, -0.016822252, 0.02772481, -0.0011235201, 0.004724894, -0.017202416, 0.014649887, 0.011581421, -0.032992795, -0.0071009183, -0.0027510966, -0.0069312025, 0.018994616, -0.009782432, 0.03796208, 0.0012372298, 0.018370062, 0.0017718353, -0.0027986171, 0.0074335616, -0.012260285, 0.036142725, 0.021547146, 0.006856527, 0.019619172, 0.008655517, -0.003686232, 0.046108447, -0.020311613, 0.0023777215, -0.016319893, -0.026652204, 0.0046977396, 0.018152826, 0.023583738, 0.008621573, 0.008356817, 0.011554266, -0.038776718, -0.0031125918, -0.026502853, -0.003452024, -0.0019398541, -0.008187101, -3.951201E-5, 0.028810991, 0.009096779, 0.0279692, 0.047330406, 0.0050575375, 0.02452057, -0.028349364, 0.0022232798, -0.016170543, 0.008954218, 0.00293439, 0.029598475, -0.0069108363, 0.0020264094, 0.013672323, 0.035844024, 0.014120373, -0.00923934, 0.019157544, -0.02252471, 0.014228991, -0.017297456, 0.0023709328, 0.0095040975, 0.0133871995, 0.019958604, -0.01248431, -0.010481661, 1.5178976E-4, -0.0013492424, -0.020107955, 0.012457156, 0.0028291661, -0.017270302, -0.018139249, -0.028132128, -0.010101497, -0.01288484, -0.0058450196, -2.8931277E-5, -0.0125589855, -0.021289177, 0.019157544, -0.011723983, 0.0124028465, 0.015192978, -0.012497888, 0.05140359, -9.429846E-5, 0.025348784, -0.026774399, 0.025009353, 0.019795677, 0.018872421, -0.039102573, -0.006303253, 0.020813974, -0.0055123763, -0.019076081, -0.013590859, -0.014962165, -0.008988161, -2.084325E-4, 0.006340591, -0.0023658413, -0.023244306, 0.008227833, -0.0056617265, -1.0755753E-4, -0.023529429, -0.02153357, 0.0057024583, 0.019252585, -0.0064016883, 0.0021876395, -0.014921432, 0.0067886407, -0.0042598723, 0.015274442, 0.013848827, -0.013020613, 0.019171122, -0.003665866, 0.021615032, 0.03527378, 0.017854126, 0.016971603, -0.022008773, 0.023841707, -0.023597315, -0.0082957195, -0.017351765, 0.0012474128, 0.0052611968, -0.0040426357, 0.021112673, 0.018587299, 0.0074742935, -0.02642139, 0.0021146617, -0.028593754, -0.0036964149, 0.034730688, -0.020040067, 0.014106796, 0.0016224851, 0.014391919, 0.023312192, -0.0012211067, -0.0106378, -0.0044635315, 0.018424371, -0.0077662054, 0.005447884, 0.010603857, -0.0149757415, -0.005739796, 0.0014459805, -0.0149757415, 0.008655517, -0.024737807, 0.016089078, 0.0056583323, -0.015532411, -0.012328172, -0.5834973, -0.030983357, -0.019320471, -0.012708336, -0.015423792, 0.027290337, 0.0024659738, 0.0015605388, 0.0022843776, 2.7854642E-4, -0.025593176, 0.048063576, -0.0036726547, -0.0035504592, -0.018913154, -0.033753123, 0.023203574, -0.012355327, 0.0050100167, -0.00968739, -0.036387116, 1.02359976E-4, -0.031933766, 0.00499644, 0.0045925155, -0.009117145, 0.0034656012, -0.0013814884, -0.007107707, 0.0050711147, -0.024031788, 0.05289709, 0.021017632, -0.005553108, 0.034024667, -0.041465018, 9.173151E-4, 0.026760822, 0.024506994, 0.020202994, -0.017473962, -0.002712062, -0.0014018543, -0.023393657, -0.0093479585, 0.018410794, 0.038450863, -0.017093798, 0.004986257, -0.039482735, -0.0022538288, 0.0032772163, 0.016319893, -0.0055768685, 0.011079062, -0.015994038, 0.026231308, -0.0061369315, 0.014758505, -0.002985305, -0.0058925403, 0.02666578, -0.012341749, -0.017202416, -0.009734911, 0.021492837, -0.047574796, -0.028810991, 0.0058959345, -0.0035334877, -4.3235158E-4, 0.010135441, -0.0024948255, 0.028512292, 0.022321051, 0.03421475, 0.030223029, 0.0023997845, 0.016917294, 0.021710074, 0.010311945, 0.0039340174, 0.006571404, -0.023977479, 0.03551817, -0.014228991, -0.005923089, -2.1023572E-4, 0.010210115, 0.014609155, 0.032042384, 0.010603857, 0.01053597, -0.010427352, -0.006856527, 0.02213097, -0.0020824156, 0.007650798, -9.7077567E-4, -0.030738967, -0.010508816, -0.00709413, 0.012911995, 0.025742525, 0.017297456, -0.003954383, -0.0045382064, -0.00333492, 0.014568423, -0.027045945, 0.0022487373, -0.009185031, -0.031444985, 0.002192731, -0.008316085, -0.030087257, 0.01927974, 0.012382481, 0.032829866, -0.020705355, 0.020705355, 0.0021893366, 0.024846425, -0.0033960175, -0.01743323, 0.0063711395, 0.02427618, -0.0045619668, -0.011309876, -0.021289177, 0.01873665, 0.014256146, 0.04491365, -0.013604436, 0.011757926, 0.024384798, 0.007895189, 0.002053564, 0.004626459, -0.010909346, -0.04475072, -0.021153405, -0.0068667103, -0.031580757, -0.012382481, -0.015152247, -0.008187101, 7.921495E-4, 0.006887076, -0.022687638, -0.016374202, -0.022144547, -0.012864474, 0.0095719835, -0.002818983, -0.01827502, -0.042985674, -0.021859424, -0.016550707, -0.02772481, 0.0111605255, 0.01657786, -0.021316333, 0.0018957279, -8.1336405E-4, 0.017854126, 0.019849986, 0.03462207, -0.005637966, -0.041790873, -0.009307226, 1.3174207E-4, -0.01728388, 0.01508436, -0.01913039, 0.0050100167, -0.023991058, -0.0047214995, -0.0025050084, -0.019225432, 0.0018193558, 0.024262603, -0.052652698, 0.016360624, 0.03177084, 0.0069244136, 0.0109704435, -0.0020264094, -0.016061924, 0.014826392, -0.014079642, 0.007413196, -0.016224852, 0.00489461, -0.010278002, 6.3261646E-4, 0.026978059, -0.0055565024, 0.0052000987, 0.005118635, 0.029842865, -0.0056617265, 0.021153405, -0.0013755483, 0.032802712, -0.028430829, 0.01228744, 6.5595243E-4, 0.029598475, 0.013862405, 0.020053646, -0.029109692, 3.8546752E-4, -0.0019042138, 6.6189247E-4, -0.02062389, 0.0123010175, 0.03391605, -0.020705355, -0.010359466, 0.0072095366, 0.01758258, 0.029245464, 0.0089677945, 6.652868E-4, 0.02323073, 0.019537708, 0.030223029, -0.010474873, -0.007908766, -0.018465104, 0.002869898, 0.011852967, -0.011785081, 0.026014071, 0.02082755, 0.02382813, -0.009660236, 0.034649223, 0.009782432, 0.031010512, 0.030630348, 0.015097938, -0.016808676, 0.009857107, -2.9063868E-4, 0.008682672, 0.01763689, 0.04749333, 0.0064661806, -0.012070203, -0.0023166237, 0.021587878, -0.0012261983, 0.021506414, 9.2325517E-4, 0.0055972342, 0.011241989, -0.011981951, -0.0041274936, 0.010447718, 0.031526446, 0.017759085, 0.020922592, 0.024602035, -0.008479012, -0.02107194, -0.016672902, -0.018342908, -0.013502607, 0.01173756, -0.007467505, -0.012810165, -0.0072910003, 0.009375113, -0.008132792, 0.01193443, -0.005600629, 0.02412683, 0.035789713, 0.012518254, -0.024004634, 0.009218974, 0.032857023, -0.009232552, -0.0081056375, -0.0025728948, 0.013706266, 0.0104001975, 0.02891961, -0.0056108115, 0.021004055, 0.009449788, -0.0021893366, -0.02522659, -0.015790379, 0.02153357, -0.027195295, 0.009463365, -0.008512956, -0.016428512, -0.021180559, -0.0069923, -0.00516955, 0.031906612, -0.013692688, -0.009972514, -0.022253165, 0.020447386, 0.024086097, 0.010101497, -0.039645664, -0.019795677, 0.008417915, -0.008655517, 0.01383525, 0.0033756518, -0.023936749, 0.020189418, -0.0191847, -0.027806273, -0.010515605, -0.024900734, -0.008546899, 0.03082043, 0.042279657, -0.016319893, 0.0033417086, -0.018342908, 0.002891961, -0.007311366, -0.011832601, 0.0044940803, 0.020691777, -8.4688293E-4, 0.0049930452, -0.0020858098, -0.016252005, -7.7348074E-4, -0.017894857, 0.007162016, -0.026883017, 0.021289177, 0.0049930452, -0.007175593, -0.0129730925, -0.004012087, 0.036875896, 0.037636224, -0.0023064408, 0.01463631, 0.013692688, 0.023841707, -0.019306894, 9.843529E-4, 0.012267074, 0.027860582, 0.00124911, -0.021628609, 0.004884427, 0.015600297, -0.0103323115, 0.008906697, -0.0016114536, -0.018600876, 0.0016946145, 0.020841127, -0.0016352138, 0.028838146, 0.013271793, 0.0016089078, -0.010624223, 0.0056515434, -0.018818112, 0.026081959, 0.014391919, -0.0099521475, -0.0069142305, -0.006761486, 0.017148107, -3.0845887E-4, -0.030901894, -0.01762331, -0.0404603, 0.0027137592, -0.027806273, 0.03826078, 0.0048165405, -0.0030786486, 0.0018617847, -0.022035928, -0.003971355, -5.6982157E-4, -0.012898417, -0.028783837, -0.017596157, -0.023977479, 0.023692356, -0.002700182, 0.004524629, 0.01913039, -0.013475453, 0.0249822, 0.009857107, -0.030630348, 0.013753787, -0.002033198, 2.5902907E-4, -0.006802218, 0.0044940803, 0.03250401, 4.645976E-4, 0.007467505, -0.018953886, 0.019198276, -0.026041226, 0.0017311034, -0.016061924, -0.0028783837, 0.0010734538, 0.012097358, 0.014744928, 0.0042836326, -0.023963902, 5.146638E-4, -0.03695736, 0.0049658907, 0.013563705, 0.020325191, -5.3593136E-5, 0.010610646, -0.009646659, 0.0030854372, -0.034676377, -0.0029971849, -0.008879542, -0.023543006, -3.9607476E-4, -0.030005792, -0.012131302, 0.019863563, -0.0035945852, -0.0073249433, -0.0063677453, 0.007134862, -0.05178375, 0.03581687, 0.016021192, -0.018614452, 0.036387116, -0.003591191, -0.016374202, -0.005400364, 0.024018211, 0.038885336, 0.019211853, 0.008716615, 0.024086097, -0.031309213, -0.034649223, -0.017691199, -2.0461388E-4, 0.01873665, -0.01298667, -0.020202994, 0.015668184, 0.009076413, 0.026733669, -0.027032368, -0.02042023, -0.026883017, 0.0033077653, 0.0091443, 0.030901894, -0.022592597, 0.003380743, -0.017311035, -0.051756598, -0.00904247, -0.0068904706, -0.016740788, -0.023447966, 0.009510886, 0.023203574, 0.0047724145, -5.4818275E-4, 0.017338188, 0.023896016, 0.001657277, -0.0023963903, -0.013461875, -0.004534812, -0.04265982, 0.004565361, 0.014174682, 0.008607997, -0.014962165, -0.032395393, -0.01803063, 0.04059607, -0.023570161, 0.006951568, -0.0079494985, -0.06033744, -0.0059977644, -0.027602613, 0.004524629, -0.015315174, -0.042469736, -0.014106796, 0.035192315, -0.011710405, 0.018044207, 0.013000247, -0.01218561, -0.026502853, 0.04415332, 0.015668184, 0.024398375, 0.021139828, -0.031010512, -0.005230648, -0.028593754, 0.014500537, -0.025090817, 0.005553108, 0.006123354, -0.004891216, 0.0030752544, -0.0064220545, 0.002987002, -0.015125092, 0.013808096, -0.012701547, -0.020651046, -0.026095536, -0.012239919, -0.023434388, -0.011017964, -4.0774274E-4, -0.0115746325, 0.021452105, -0.019877141, -0.0053121117, 0.017025912, -0.0018091728, 0.035056543, 0.0075897006, 0.029435547, 0.036495734, -0.011900487, -0.0032042386, -0.016876562, 0.015301596, -0.0012168639, 0.029435547, 0.01937478, -0.007365675, -7.8196655E-4, 0.008254987, -9.258009E-4, 0.013455086, -0.012694758, 0.008818445, 0.0139574455, 0.020732509, -0.019646326, -0.010006457, -0.0137673635, 0.0036624717, 0.0020179234, 0.0036998093, 0.0015130184, -0.008221044, 0.009266495, 0.03160791, -0.012572563, -0.0019856775, 0.009375113, 0.0012440184, 0.016795097, -0.016849406, -0.030684657, -0.0071959593, -0.0065951645, 0.0708191, -0.010468084, 0.01877738, 0.030223029, -0.0020518666, -0.019822832, -0.011513535, 0.0067309374, 0.025308054, -0.037418988, 0.01388277, -0.0036149512, -0.011370974, -0.0025796834, -0.007033032, -0.010257636, -0.0067207543, 0.0013874285, -0.017419653, 0.0064661806, -0.0030022764, -0.025199436, -0.014622732, -0.019388359, -0.025796834, -0.014894278, -0.01782697, -1.9549164E-4, -0.05124066, 0.008404338, -0.01762331, 0.025701795, 0.020488119, 0.012552197, -0.01832933, -0.013943869, 0.04230681, -0.020352345, 0.0047520488, 0.02382813, 0.010291579, -0.022361783, 0.013156386, 0.02207666, -0.016998757, 0.01073963, -0.0029751218, -0.012430001, -0.019972181, 0.010759995, -0.002404876, 0.0034995445, -1.0957291E-4, 0.015858265, 0.008798079, 0.0071484386, -3.0506455E-4, -0.020922592, 0.010821094, 0.01023727, 0.009510886, -0.0091443, -0.02042023, 0.021180559, -0.002532163, -0.021506414, -0.009863895, -0.018410794, -0.011065485, 0.0073928297, 0.0061742687, -0.02107194, 0.021682918, -0.03796208, -0.002099387, -0.030005792, 0.020800395, -0.0294627, 0.010386621, 0.012497888, -0.006208212, -0.015803955, 0.018410794, -0.019537708, -0.028186437, 0.0030328254, -0.009646659, -0.005722824, -0.031553604, -9.3089236E-4, 0.038287934, 0.016890138, -0.025986917, 0.002839349, -0.008254987, -0.0532501, -0.018356485, -0.012878052, 0.023189997, 0.0125929285, 0.017976321, -0.018899577, 0.020773241, 0.0057873162, 0.04005298, -0.0034893614, 0.009028892, -0.005953638, 0.025796834, 0.0075353915, -2.1617579E-4, -0.042768437, -0.01927974, 0.03076612, 0.023054224, -0.0049692853, 0.020135108, 0.0017972926, -0.011106216, 0.006028313, -0.0066358964, 0.040541764, 0.0058042877, -0.002382813, -0.030440265, -0.0061912406, -0.0091918195, 0.02042023, 0.011554266, -0.0143376095, -0.023162842, -0.007372464, 0.0031091976, -0.01618412, 7.3062745E-4, -0.003401109, -0.0063745338, 0.024004634, -0.0051423954, -0.011113005, 0.025851144, 0.007969865, -0.03052173, 0.009252918, 0.025593176, -0.016211275, -0.0041648312, 0.0145276915, -0.046515767, -0.00858763, -0.0052408306, 0.01913039, 0.010420564, -0.007983441, -0.0076643755, -0.015858265, -0.02667936, 0.037663378, 0.007922344, -0.053141482, -0.03315572, 0.030603193, -0.012409636, 0.024683498, 0.0136112245, -0.012056626, -0.039374117, 0.026339926, -0.008465435, -0.025715372, -0.025756104, 0.023352925, 0.016360624, 0.002869898, -0.005040566, 0.19388358, 0.0071959593, 0.010135441, 0.037147444, 0.0021995197, -0.011527112, 0.013875982, 0.014038909, -0.003356983, -0.002055261, -0.0037676957, 0.030277338, -0.0047825975, 6.542553E-4, 0.027887737, 0.007216325, -0.055205226, -0.03432337, 7.666921E-4, -4.4550456E-4, 0.0012618386, 0.029489856, -0.031689376, -0.043365836, 0.008574054, -4.2853295E-4, -0.025308054, -0.022511134, 0.027629768, 0.005919695, -0.021465681, -0.004341336, 0.012205976, -0.0017412864, -0.018831689, 0.014853546, 0.0023912988, 0.0113845505, -0.0059943697, 0.03177084, 0.0040392415, 0.008248199, 0.008526533, -0.0011786778, 0.018098516, 0.0099860905, -0.013692688, 0.01683583, -0.01993145, -0.009558407, -0.031906612, -0.001958523, -0.0010726053, 0.034431987, -0.009931781, -0.0398629, 0.018587299, -0.0051423954, -6.5340666E-4, 0.0034656012, -0.019524131, 0.018546566, -0.0012592928, 0.034160443, -0.0010666652, 0.021954464, -0.033535887, -0.03524662, 0.013040979, 0.004853878, -0.022321051, -0.008071694, -0.0050269887, 0.005488616, -0.020759664, -0.022293897, 0.017311035, -0.012552197, 0.011961585, 0.021506414, 0.012769434, -0.026326349, 0.0061505088, 0.0077254735, -0.007637221, -0.03706598, 0.020868283, 0.004191986, 0.018017054, -0.015871841, 0.011819024, 0.011744348, 0.0068667103, 0.013862405, -0.004925159, 2.1225109E-4, -0.017243147, 0.016767943, -0.026407814, -0.0055327425, -0.026937326, 0.050833344, -0.009734911, -0.0050168056, -0.03511085, 0.0072434796, -0.0026000494, 0.009028892, 2.2254014E-4, -0.04825366, -0.002265709, -0.0404603, 0.0049930452, -0.008350029, 0.008112426, 0.0012329869, -0.006513701, 0.0050982693, -0.003676049, -3.2946124E-4, 0.027711231, -0.014161105, 0.021452105, -0.0021791537, 0.009605926, -0.019741368, -0.0279692, 0.016265584, -0.011024753, -0.04700455, 0.010719264, -4.743563E-4, 0.0099182045, -0.00392044, -0.004511052, 0.0030430083, -0.0012847503, -0.02002649, 0.02602765, 0.015301596, -0.0091443, 0.01728388, 0.001689523, -0.0038321877, 0.014486959, -0.046244223, 0.02431691, -0.022633329, -0.011167314, -0.02347512, -0.024751384, -0.0018906365, -0.00656801, -0.0026933933, 0.01193443, 0.0016021193, -0.014120373, -0.028430829, -0.009463365, 0.016401356, -0.0270731, -0.02017584, 0.006574799, 0.0066257133, -0.0081735235, -0.01927974, -0.17042205, 0.0020739299, 0.03057604, 0.0054920106, 0.007745839, -0.006187846, 0.026367081, -7.38689E-4, -0.019537708, -0.0063915052, 0.022809833, -0.003726964, -0.029571319, -0.04545674, 0.01657786, -0.006517095, -0.033454422, 0.017460383, 0.012423213, 0.01044093, 0.0023777215, -0.047873497, 0.020800395, -0.0021876395, -0.002679816, 0.011520323, 0.0070194546, 0.053793192, 0.0066257133, 0.009008527, -0.010698898, -0.037527606, 0.041166317, -0.013231061, 0.017854126, -0.006958357, -0.0074878708, 0.0054852217, -0.020746086, 0.03997152, 0.0066155307, -0.003463904, 0.009463365, -0.009958936, 2.4555788E-5, 0.022796256, 0.007162016, -0.013875982, 0.0065204897, -0.012104147, 0.03500223, -0.0077594165, 0.011554266, -0.013156386, 0.015790379, -0.010427352, -0.01823429, 0.01678152, 0.010053977, -0.0294627, -0.032069538, -0.0111265825, 0.013828461, -0.019225432, 0.0019008195, -0.027290337, -3.4282636E-4, 0.012647238, -0.032096695, 0.0020739299, -0.02472423, -0.007963075, 5.906118E-4, 0.009456577, 0.0061165653, 0.0035300932, -0.03212385, -0.016958024, 0.025470981, 0.0015435672, -0.009076413, 0.04035168, 0.0045076576, -0.011615365, -0.0031058032, -0.007311366, -0.015437369, 0.009096779, 0.008696249, -0.01868234, -0.019306894, -0.03630565, -0.006707177, -0.0063677453, 0.0038287935, 5.9570326E-4, 0.007732262, -0.0062150005, 0.008560476, 0.0014154316, -0.013903136, -0.012076993, -0.017148107, 0.018614452, 0.043908928, 0.017596157, -0.001238927, 0.02192731, 0.009667025, 0.029381238, -0.009266495, 0.020664623, 0.029164001, 0.033535887, 8.4688293E-4, 0.013081711, -0.035056543, -0.039482735, 0.024642766, 0.014079642, 0.030929048, -0.02002649, -0.016645748, 0.009463365, -0.010434141, -0.028892456, -0.0856455, -0.01957844, 0.02837652, 0.02282341, -0.010495239, -0.0028291661, -0.008309296, 0.011846178, 0.0066868113, 0.037283216, -0.028349364, -0.035192315, -0.005274774, 0.014554846, 0.028702373, 0.0050677205, 0.020148685, -0.0022708003, -0.016659325, 0.024344066, -0.02496862, -0.027045945, -0.020284459, 0.00913751, -0.033508733, -0.0058823572, -0.034404833, 0.020107955, 0.02317642, 0.0042836326, -0.005641361, -0.02132991, -0.007888401, 0.006724149, -0.0056617265, -0.004925159, -0.008424703, -0.0014663464, 0.005125424, -0.031390674, 0.00934117, -4.3829164E-4, 0.0045789382, -0.022511134, -0.029191155, -0.020352345, -0.002723942, 0.027561883, 0.0021961252, -0.014391919, -0.003917046, -0.011051907, -9.3937817E-4, -0.0119547965, 0.008682672, -0.012328172, 0.01713453, -0.013095289, -0.00784088, 0.016958024, 0.022117391, 0.0107464185, -0.029734246, 0.020325191, 0.019741368, -0.02107194, -0.0045483895, 0.013638379, 0.031282056, 0.003516516, -0.004914976, 0.003665866, -8.579145E-4, 0.012640449, -0.039591353, -0.0072842115, -0.0027816456, -0.036740124, 0.02302707, -0.0025695006, -0.024235448, -0.009266495, 0.017311035, -0.022741947, 0.023502275, 0.04371885, 0.008798079, -0.018573722, 0.028539447, -0.050833344, 0.02921831, 0.018003475, 0.05487937, 0.006062256, 2.6772704E-4, 0.0015545988, 0.009660236, 0.013760575, 0.010115075, 0.0029683332, -0.060065895, -0.022035928, -0.08776355, 0.042768437, 0.01523371, -0.016550707, -0.0055361367, 0.008187101, 0.017664043, -0.0136112245, 0.012708336, 0.034649223, 0.003950989, -0.005794105, -0.012545409, -0.0022504344, -0.016713634, -0.014269724, 0.023067802, -0.021710074, 0.020488119, 0.029842865, 0.012443579, 0.013624802, -0.014242569, 0.026706513, -0.01722957, 0.0131292315, 8.3033566E-4, 0.016292738, 0.008472224, -0.0017616523, 0.03945558, -0.013088499, -0.0125250425, 0.034947924, -0.0064559975, -0.011662885, -0.0016538827, 0.010658166, -0.016808676, -0.031227749, -0.017066643, -0.0064661806, -3.816489E-4, -0.0153559055, 0.012864474, 0.021710074, 0.022321051, 0.019076081, 0.013360045, 0.02642139, 0.012375692, 0.011961585, -0.0015350814, -0.033943206, -0.013142808, -0.013482241, -0.0033654687, -0.0073996186, 0.022674061, -0.0069108363, 0.05604702, -0.010705687, -0.010474873, -0.023298616, 0.010576703, -0.010182961, -0.014554846, 0.0024371222, 0.0071009183, -0.010644589, -0.02832221, -0.02496862, 0.018587299, 0.029788556, -0.0031278662, 5.536985E-4, 0.002944573, -0.007956287, -0.030223029, 0.018397218, 0.0091578765, -0.01713453, -0.0018770592, 0.0020179234, 0.011757926, -0.0061267484, -0.01868234, 0.010515605, -0.008010596, 0.017813394, -0.028838146, 0.02287772, -0.0010938197, -0.012090569, 0.016795097, 0.021818692, -0.0036421057, -0.0095040975, 0.030738967, 0.023149265, -0.014758505, 0.012504676, -0.0042429008, -0.024887158, 0.016428512, 0.014758505, -0.0034418409, -0.013746997, 0.007046609, -0.0017328006, -0.0038898913, -0.00963987, 0.024058944, 0.029435547, -0.02517228, 0.0015189584, -0.0070194546, -0.0077797826, -0.026611472, 0.028675219, 0.019958604, 0.009185031, 0.0036387115, 0.010128652, 0.04920407, 0.0027816456, 0.008675883, 0.013971023, -0.0014951981, -0.029734246, -1.3683354E-4, -0.0073249433, 0.0019262768, -0.014296877, -0.016374202, -0.025593176, 0.0043990393, 0.008017384, 0.024764962, 0.12045764, 0.02132991, -0.02112625, -0.0036183456, 5.8021666E-5, 0.016401356, 0.012932361, -0.026692936, -0.01913039, -0.029571319, 0.0063915052, 0.004704528, -0.02487358, 0.0027273365, -0.038831025, 0.011791869, 0.018994616, 0.004948919, -0.011065485, -0.011805447, 0.015831111, -0.020949746, 0.012728701, 7.1323157E-4, -0.009185031, 0.006832767, 0.03991721, 0.0203795, -0.0111265825, -0.023936749, 0.024058944, 0.019822832, -0.044886492, -0.024303334, -3.5958583E-4, -0.011723983, -0.02151999, 0.010284791, 0.033372957, -0.031662222, 0.010624223, 0.019741368, -0.0115067465, 0.0041240994, 0.0020298036, -0.021560723, -0.015247287, -0.033400115, -0.06098915 ], - "id" : "bb2d42e0-689a-4fce-becc-cf64efb02c0a", - "metadata" : { - "name" : "Hyperdrive Turbo X1" - }, - "text" : "Hyper alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length\nSize: M, L\nHyper alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 105mm length\nHeadset\tVP sealed cartridge, 1-1/8'', threaded\nBrake\tShimano MT200 hydraulic disc\n*Brake rotor\tSize: XS, S, M, L\nShimano RT26, 6-bolt,180mm\nSize: XS, S, M, L\nShimano RT26, 6-bolt,160mm\n\nAccessories\nBattery\tHyper PowerTube 500Wh\nCharger\tHyper compact 2A, 100-240V\nComputer\tHyper Control\nMotor\tHyperdrive Sport, 70Nm, 30mph\n*Light\tSize: XS, S, M, L\nSpanninga SOLO for e-bike, taillight\nSize: XS, S, M, L\nHerrmans MR8, 180 lumen, 60 lux, LED, headlight\nKickstand\tAdjustable length rear mount alloy kickstand\nCargo rack\tMIK-compatible alloy rear rack, maximum load 25 kg / 55 lbs\n*Fender\tSize: XS, S, M, L\nSKS wide\nSize: XS, S, M, L\nSKS plastic\n\nWeight\nWeight\tM - 22.30 kg / 49.17 lbs\nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| XS | 147 - 155 cm 4'10\" - 5'1\" | 69 - 73 cm 27\" - 29\" |\n| S | 155 - 165 cm 5'1\" - 5'5\" | 72 - 78 cm 28\" - 31\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\n\n| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm |\n|---------------------------|-------|-------|-------|-------|\n| Frame size letter | XS | S | M | L |\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 |\n| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° |\n| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 |\n| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° |\n| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 |\n| F — Bottom bracket height | 29.4 | 29.4 | 29." - }, - "c2be073b-707d-44d9-a9a9-1eaa73a1ec8d" : { - "embedding" : [ 0.0435845, 0.016794525, -0.040740266, -0.0028188392, -0.009115093, 0.007977399, -0.0014128055, -0.018473977, 0.012074451, -0.04835198, 0.009067689, 0.014383698, -0.019449143, -0.004391633, -0.010618473, 0.017715516, 0.012182803, -0.012893861, 0.020410765, -0.0048589, 0.03586444, 0.0055123963, -0.013002213, -0.007625256, -0.02922789, 0.0024751609, 0.048649948, -0.016875789, -0.005241517, -0.028361076, 0.020464942, 0.0049266196, -0.02595025, 0.0029491999, 0.0072324807, -0.015507848, 0.017024772, 0.002437915, 0.033236906, 0.0073476047, 0.036135316, 0.009169268, 0.0023312562, 0.0023261772, -0.010659106, 0.033263996, 0.023918655, 0.006690722, 0.0049096895, 0.014410786, -0.009162497, 0.032207564, 0.0059221014, 4.376396E-4, -0.012731333, -0.028523605, 0.011972871, 0.0015228504, 0.034943447, 1.7681232E-4, 0.0055191685, 0.013591375, -0.03134075, 0.0010394999, -0.022726785, -0.02963421, 0.0032827202, 0.005095919, -0.008634282, 0.02417599, 0.009738116, 0.013476252, 0.03675834, 0.009887099, 0.020343045, -0.019259527, 0.011343076, -1.9808058E-4, 0.009941275, 0.005187341, 0.024027007, -0.011004477, -0.004191859, 0.013293408, 0.024528133, 0.002442994, 0.0055564144, 0.011207636, -1.2475268E-4, 0.003362291, -0.012040591, 0.0044593527, 0.01367264, 0.01902928, 0.033941194, -0.02567937, -0.022564257, -0.0053092367, -0.006816004, -0.022415273, 0.011051881, 0.020329501, -0.0077336077, -0.014925457, -0.02734528, -0.029932177, -0.018013483, -0.007963856, 0.0047268462, -0.0015321618, -0.011451428, 0.012250522, -1.9543528E-4, 0.03296603, 0.0017404003, -0.0251647, 0.03358905, -0.005861154, 0.02107442, -0.036189493, 0.03778768, 0.022171482, -7.114818E-4, -0.025841897, 0.0019791129, 0.019110544, 0.0018199713, -0.011783255, -0.016306942, -0.002849313, 0.003876962, -0.0012951423, -0.009656852, 0.018799033, -0.017823867, 0.010713282, 0.0019791129, 0.0097178, -0.03716466, -0.023810303, 0.015562024, 0.009081233, -0.015399496, 0.023309175, -0.016293397, -6.920123E-4, -0.01988255, 0.006731354, 0.015399496, -0.033805754, 0.0373001, 0.0069006537, 0.027209839, 0.02356651, 0.016564278, 0.00392098, -0.004357773, 0.013977379, -0.022821592, -0.032613885, -0.010340823, 0.0050146556, 0.0020315957, -0.009331796, 0.022090217, 0.0270744, 0.025435578, -0.035918612, 0.012291154, -0.021020245, -4.1012838E-4, 0.02370195, -0.023336263, 0.024121813, -0.006816004, 0.021738075, 0.011817115, -0.024243709, -0.008979653, -0.0059695058, 0.013550743, -0.011004477, 0.014383698, 0.010286647, -0.0064875623, -0.019990902, -0.005613976, -0.030257232, 0.009006741, -0.010923213, 0.011905151, 0.0145868575, 0.0072324807, -0.019124089, -0.5950679, -0.012033819, -0.0014246565, -0.011478516, -0.007124129, 0.008051891, 0.0058374517, 0.012216662, 0.013936747, -0.0071038133, -0.018636504, 0.012155714, -0.01653719, -0.025002172, -0.050139785, -0.023620687, 0.0074695004, -0.009636536, -0.0010124119, -0.013726816, -0.020857716, -0.01214217, -0.016293397, 0.019720023, 0.008119611, -0.012148943, 0.011214409, -0.0145868575, 0.013611692, 0.019002192, -0.037625153, 0.055476107, 0.0096500795, -0.01936788, 0.03134075, -0.040523563, -0.009555272, 0.010686194, 0.03949422, 0.016577821, -0.011891607, 0.0060202954, -0.009128637, -0.012954809, -7.512672E-4, -0.0059559615, 0.039548397, -0.007279885, 0.003341975, -0.024297886, 0.01817601, 0.014735841, 0.0044322647, 0.0016989219, -0.004848742, -0.016780982, 0.046157856, 0.0060914014, 0.010882582, -0.01036791, 0.0027697422, 0.012358874, -0.018677138, -0.0070496374, -6.6323136E-4, 0.019002192, -0.042744774, -0.031178223, 0.03131366, -0.014790017, 0.022442361, 0.020397222, 0.018880296, 0.020410765, 0.015765183, 0.044153348, 0.031692892, -0.007185077, 0.003445248, 0.032072127, 0.011485288, 0.014153451, -0.015440128, -0.018433345, 0.014668121, 2.9918421E-5, 0.0114378845, -0.018690681, 0.005316009, 0.0122979265, 0.018230187, 0.0012934493, -0.004354387, -0.0035789944, -0.0055191685, 0.010273103, -0.0015837982, 0.010306963, 0.011701992, -0.022808049, -0.011011249, 0.010422086, 0.003778768, 0.0066399323, 0.037868947, 0.0024768538, -0.01644238, -0.003782154, 0.008600422, -0.031584542, 0.017850954, -0.009873555, -0.041796695, 0.002883173, -0.025801266, -0.02976965, 0.015426584, 0.010611702, 0.014153451, -0.034699656, 0.017512355, -0.0049266196, 0.02441978, -0.006206525, 0.006799074, 0.008553018, 0.009236989, 0.015900623, 0.0018538311, -0.018054115, 0.015196336, 0.00383633, 0.0543655, -0.014234714, 0.027399454, 0.023336263, 0.015426584, 0.0070022335, 0.011735852, -0.02213085, -0.05016687, -0.002878094, -0.008986426, -0.03781477, -0.017498812, -0.01599543, -0.01691642, 0.026275305, -0.0016303556, -7.618484E-4, -0.009047373, -0.042446807, -0.018799033, 0.007063181, -0.008891618, -0.025286594, -0.021534914, -0.014437874, -0.008410807, -0.028523605, -0.0014297356, 0.004648968, -0.036785427, 6.911658E-4, 0.018839665, 0.011647816, 0.028902836, 0.021115052, 0.0064503164, -0.028496517, -0.010198611, -0.00927762, -0.01568392, 0.009365656, -0.012487542, 0.0054379045, -0.016591365, -0.00296613, -0.007923223, -0.0050214273, 0.004764092, 0.026437832, -0.05823908, 0.026356569, 0.015711008, 0.0050417436, 0.023620687, 0.011749395, -0.022591345, 0.014410786, 3.4621777E-4, 0.0141940825, -0.02284868, -5.100152E-4, 0.009677168, -0.0041309115, 0.017485268, 0.0064130705, 0.010266331, -0.0022398343, 0.010144435, -0.017512355, 0.016157959, -8.6385146E-4, 0.00948078, -0.016699716, 0.024094725, -0.0041783154, 0.020708732, 0.023336263, 0.008708774, -0.032586794, -0.010692965, 0.013347584, -0.0069209696, -0.0016117326, 0.0010826712, 0.050627366, -0.01063879, -0.018853208, -0.019774199, 0.014600402, 0.03716466, -0.0078622755, 0.0072324807, 0.0071038133, -0.0016354346, 0.039087903, -0.0029187258, -0.015413039, -0.019042823, 0.026180496, 0.007923223, -0.013354356, 0.007801328, 0.021169228, 0.027115032, -0.02475838, 0.034320425, -0.004696372, 0.033643227, 0.031205311, 0.019205352, -0.017011229, 0.0089525655, -0.0069954614, 0.0022889313, 0.029038275, 0.036704164, 0.0050180415, 0.0092573045, 0.015778728, -0.0022110534, -0.01268393, 0.0036501004, 0.0055598, 0.022577802, 0.0017099264, -0.011925467, 5.6038186E-4, 0.001410266, 0.027236927, 0.02356651, 0.012169259, 0.0026546184, -0.0048351977, -0.017295651, -0.011268584, -0.016103782, -0.03250553, 0.0067855297, -0.003792312, 0.015494304, -0.0105981575, -0.0023126332, -0.010124119, 0.016686173, -0.003402923, 0.025245963, 0.02441978, -0.015467215, -0.035322677, 0.007205393, 0.024785468, -0.013455936, 0.0102053825, -0.011586868, 0.019042823, 0.009595904, 0.020112798, -4.3383034E-4, 0.016320486, -0.008397263, 3.9658442E-4, -0.0097042555, 0.005343097, 0.03516015, 0.0012401199, 0.008180559, -0.009799063, -0.004784408, -0.0030931046, -0.00978552, -0.03109696, 0.03897955, -0.027900582, -0.005329553, -0.0060439976, 0.033561964, 0.0074559567, 0.0046523544, -0.029038275, -0.033128556, -4.310792E-4, -0.0070564095, -0.0048250398, -0.0017116194, -0.013855483, 0.009419832, -0.012975125, -0.018731313, -0.009914188, -0.029390419, -0.015507848, 0.032857675, 0.026275305, -0.012880317, 0.012216662, -0.031394925, -0.006389369, -0.013753903, -9.844775E-4, 0.0020163588, 0.016889332, 0.010909669, 0.012054135, -0.01159364, -0.009365656, -0.014234714, -0.020464942, 0.012860001, -0.029742561, 0.011505604, -0.007713292, 0.002383739, -0.036270756, 0.008058663, 0.01862296, 0.016902877, -0.00893225, 0.015399496, 0.016713262, 0.012914177, -0.014153451, 0.010841949, -0.01837917, 0.032180477, 0.011078969, -0.020749364, 0.019990902, 0.004957094, -0.013740359, 0.015236968, 0.010435631, 0.006341965, 0.006843092, 0.014844193, 0.004659126, 0.022496536, 0.014681665, 0.0022804663, -0.0122979265, 0.0042697373, -0.033778664, 0.024013462, 0.0047166883, -0.017850954, 0.00896611, -0.0084514385, 0.013977379, -0.010279874, -0.022117306, -0.02410827, -0.02410827, 0.016835157, -0.033887018, 0.015914166, -0.0105981575, -0.009067689, 0.004229105, -0.022510082, 0.0065214224, -0.019394968, -0.03318273, -0.01889384, -0.02138593, -0.0072324807, 0.01698414, -0.0077877836, -0.010747141, 0.027575526, -0.032343004, 0.01776969, 0.011498832, -0.038031474, 0.022631977, -0.0083092265, -0.009108321, -0.009609448, 0.016645541, 0.05463638, -0.013679411, 0.01633403, -0.009758431, 0.010577842, -0.0028188392, 0.019083457, -0.02976965, -0.012643297, -0.016957052, 0.011288901, 0.033751577, 0.010550754, -0.023607142, 0.004682828, -0.009474008, 0.004208789, 0.01711958, 0.012954809, -0.013218916, 0.0341579, -0.004814882, -0.008519158, -0.023539422, -0.014045099, -0.020370133, -0.0069006537, 0.013882571, -0.03277641, 0.019178264, 0.030013442, 0.00998868, 0.001924937, -0.032207564, -0.009115093, -0.039819278, 0.029282067, -2.9796737E-4, -0.019828375, 0.027521351, 0.0040970515, -0.00862751, -0.015115072, 0.011261812, 0.035268504, 0.029038275, 0.004367931, 0.0015837982, -0.027453631, -0.01633403, -0.0021992023, 0.0021721146, 0.006792302, 0.0026529254, -0.017173756, 0.032424267, 0.0126907015, 0.006230227, -0.02390511, -0.021345299, -0.020654557, 0.0039142077, 0.004391633, 0.045020163, -0.005112849, 0.014045099, -0.01626631, -0.02952586, -0.011844203, -0.0062471568, -0.004665898, -0.018392714, -0.008058663, 0.021575548, 0.008641054, 0.019625215, 0.009040602, 2.2008954E-4, -0.0036026966, -3.377528E-4, -0.025435578, -0.014302434, -0.031719983, 0.009711028, 0.030988608, 0.021751618, -0.02608569, -0.03795021, -7.5296016E-4, 0.028496517, -0.022252746, -0.0141399065, -0.0066128443, -0.039440047, 0.0155891115, -0.022577802, -6.0609274E-4, -0.01548076, -0.039304607, -0.018866753, 0.027467174, -0.012054135, 0.019218896, 0.0060507692, -0.0030897185, -0.020925436, 0.044613842, 0.0049435496, 0.014668121, 0.02035659, -0.020112798, -0.020072166, -0.018568786, -0.0062844027, -0.012562034, 0.009670395, 0.0031066486, -0.017241476, 0.0041139815, -0.01241305, 0.010422086, -0.019828375, 0.007618484, -0.008830669, -3.405039E-4, -0.03529559, -0.017688427, -0.043394886, 0.0013950291, 0.0044864407, -0.031232398, 0.013896115, -0.019462688, -0.018338537, 0.012453682, -0.0067211958, 0.02779223, 0.004709916, 0.009345341, 0.0145868575, -2.2284067E-4, -0.0073746927, -0.02154846, 0.0022872381, 0.009182813, 0.035078887, 0.0064977203, -0.012785509, 0.0133679, 0.0035654507, -0.012975125, -0.0050620595, -0.036947954, 3.8621482E-4, 0.020519117, 0.018365625, -0.020329501, -5.798513E-4, -0.012338558, -0.009115093, -0.00579682, 6.1159495E-5, 0.009440148, -0.0107945455, 0.0018352082, 0.021223404, -0.02318728, -0.0145868575, 0.004313755, -0.006677178, 0.0012181109, -0.027264016, -0.015101529, -0.0110992845, 8.4395875E-4, 0.06349414, 0.007659116, 0.009507868, 0.041688345, 0.0049740234, -0.020884804, -0.01889384, -0.0057731178, 0.023282086, -0.02779223, 0.018406257, -0.013489796, -0.0030829466, -0.01244691, -0.0022212113, -0.001671834, -0.013306952, -4.77425E-4, -0.0038938918, 6.255622E-4, -0.022185026, -0.019706478, -0.0023177122, -0.021047331, -0.03451004, -0.035729, -0.015264056, 0.008864529, -0.046347473, 0.0030490865, -0.023173736, 0.024582308, 0.03226174, -0.0025327227, -0.007266341, 0.008735862, 0.030040529, -0.01619859, 0.010923213, 0.016279854, 0.010923213, -0.016212134, 0.04068609, 0.002871322, -0.0103475945, 0.009297936, 0.0030219988, -0.012325014, -0.024622941, -0.011471744, -0.008268595, 0.001911393, -4.8123425E-4, 0.016659085, -0.005221201, 0.01705186, -0.0022736941, -0.012941265, 0.0060169096, -0.010279874, 0.008471754, 0.009047373, -0.0041072094, 0.027534895, -0.013794535, -0.019828375, 0.0065688263, -7.8724336E-4, -0.015968343, 0.0092031285, 0.012568805, -0.012331787, 0.0109909335, -0.040361036, -0.0069954614, -0.02536786, 0.020166975, -0.02343107, 0.0060947873, 0.030338496, -0.008925477, 0.0065755984, 0.036893778, -0.031801246, -0.027101487, 0.012839685, 0.007137673, -0.021020245, -0.023363352, 0.0046184943, 0.044695105, 0.013279865, -0.018690681, -0.017485268, -6.8989606E-4, -0.038194, -0.023390438, -0.0078080995, 0.035729, 0.0013332347, 0.011701992, -0.005224587, 0.013909659, 0.028469428, 0.03873576, -0.0146410335, 0.0116275, -0.0037652242, 0.018907385, 0.0074220966, -0.014315978, -0.038031474, -0.01837917, 0.026708713, 0.020925436, 0.010950301, 0.014166994, -0.0114378845, -0.0044762827, 0.017268565, -0.024555221, 0.027900582, 0.012169259, -0.008959337, -0.036162406, -0.011993187, 0.0032251582, -7.042865E-4, 0.019178264, 0.004395019, -0.035105973, 0.008234735, 0.01053721, 0.0024548448, 0.005349869, -0.003910822, -0.022550713, 0.018988648, -0.022875769, -0.019476231, 0.044315875, 0.0036263985, -0.03320982, 0.002849313, 0.025286594, -0.015629744, -0.02343107, 0.0031218855, -0.025259508, -0.0097178, -0.0059187156, 0.008647826, -3.4706428E-4, -0.005356641, -0.00866137, -0.0054920805, -0.01862296, 0.037625153, 0.014627489, -0.028659044, -0.043394886, 0.02185997, 0.002947507, 0.024473958, -0.0015643288, -0.0026969435, -0.026004426, 0.01142434, -0.006243771, -0.036785427, -0.022008954, 0.031449102, 0.0064537027, 0.0122437505, 0.0028408482, 0.20456815, 0.009731344, 0.00249717, 0.052225556, -0.0015033808, 0.017918674, 0.02554393, 0.011925467, 0.0133679, -0.0044627385, 0.004713302, 0.031855423, -0.0093995165, 0.0037076622, 0.032207564, -6.0312997E-4, -0.041823786, -0.012419822, 0.002380353, 0.003981928, 0.0012367339, 0.014315978, -0.033155642, -0.044965986, 0.008905161, 0.02567937, -0.018270819, -0.030175969, 0.002405748, 0.017268565, -0.012866773, -0.01858233, 0.007117357, 0.03161163, -0.027900582, 0.0027477334, -0.0041241394, -0.0040699635, -0.006297947, 0.03464548, 0.011688448, -0.018744856, 0.010733598, -0.008444666, -0.009758431, -0.0025513456, -0.009379201, 0.0075304485, -0.024487501, 2.9288838E-4, -0.013090248, -0.006687336, -0.007239253, 0.043557413, 2.5373785E-4, -0.018419802, 0.022808049, -0.0021348686, 0.010713282, -0.0070157773, -0.01442433, 0.0270744, 0.0059965933, 0.017823867, -0.006294561, 0.0038532598, -0.031692892, -0.028550692, 0.019774199, -0.003308115, -0.024054093, -0.008194103, -0.0020654558, 0.016496558, -0.014004467, -0.024812557, -0.0068701794, -0.0073069725, 0.011505604, 0.029552946, -0.0018301292, -0.016103782, 0.016171502, 0.0056072045, -0.0042426493, -0.028496517, 0.015385952, -0.009345341, 0.011674903, -0.028225638, -0.007225709, 0.004256193, -0.011607184, 0.0075778523, -0.0075507644, -0.01030019, -0.035268504, 0.02536786, -0.0178645, -0.019015737, -0.03540394, 0.03188251, -0.003992086, -0.004676056, -0.029065363, 0.0011089126, -0.0010056399, 0.028361076, 0.005776504, -0.059376772, 0.0043340707, -0.029959265, 0.01626631, -0.006291175, 0.025489755, -0.009230217, -0.0011800185, 0.0030287707, -0.009081233, -0.016076695, 0.024189534, -0.01507444, 0.008173787, -0.019178264, 0.015047353, -0.025706459, -0.025503298, -0.007781012, -0.006352123, -0.022347553, -0.0013129187, -2.4336824E-4, 0.017431092, 0.012880317, -0.02083063, -0.004777636, -0.0041342974, -0.0035078886, 0.007835188, -0.002434529, 0.012264066, 0.0041173673, 0.0108487215, -0.0010860573, 0.024799012, -0.043124005, -0.0031117275, -5.349869E-4, -0.028361076, -0.004919848, -0.022835135, -0.015385952, -5.6334457E-4, 0.00283069, 0.015507848, 0.008397263, -0.0026935574, -0.032857675, 0.0031523595, -0.00951464, -0.018284362, -0.03096152, -0.004913076, -0.0013205373, -0.024392692, -0.010259558, -0.17087075, 0.008715546, 0.035485204, 0.0011055267, 0.008871301, -0.0013408532, 0.021805795, 0.008905161, -0.020844173, -0.0065383525, 0.035187237, -0.013124108, -0.023539422, -0.03199086, 0.006606072, -0.002375274, -0.025435578, -0.0012104925, 0.010699738, 0.018934473, -0.0015804122, -0.033534873, 0.0061489632, -0.012325014, -0.0064875623, 0.010279874, 0.006826162, 0.04030686, 0.0020773066, -0.016008975, -0.02083063, -0.04147164, 0.046916317, -0.015101529, 0.0061218753, -0.010198611, -0.009067689, 0.007625256, -0.037381362, 0.033236906, 0.0046286522, 0.01449205, 0.008485299, 0.006799074, 0.012941265, 0.015358864, -0.003321659, 0.0021568774, -7.686204E-4, -0.019245984, 0.041065324, -0.026004426, 0.011688448, -0.017959306, 0.019408511, -0.0010174909, 0.008735862, -0.004110595, 0.013862255, -0.017038316, -0.020004446, 0.0056207483, 0.00872909, -0.015467215, -8.1306155E-4, -0.03451004, -0.0010809782, 0.017647795, -0.030013442, 0.0020722277, -0.025394946, 0.012920949, 0.005177183, 0.014911913, 0.032045037, 0.011343076, -0.029823827, -0.008850985, 0.028171461, 0.006325035, -0.009534956, 0.052956928, 0.013374672, -0.0026563115, -0.016970597, 0.01155978, -0.0092031285, 8.659677E-4, 0.0171873, -0.0150879845, 0.006060927, -0.018568786, -0.009474008, -0.01565683, -0.01159364, 0.003948068, -0.0021687285, -0.011891607, 0.012663614, -0.016496558, 0.0055936603, -0.0077336077, -0.011952555, 0.0045880205, 0.047051758, 0.012860001, 0.017485268, 0.013909659, 0.008153471, 0.020112798, -0.00296613, 0.0044322647, 0.004913076, 0.029309155, -0.0059661195, -0.004306983, -0.031909596, -0.036947954, 0.016618453, 0.010002223, 0.03421207, -0.013076705, -0.0073069725, 0.01739046, -0.008268595, -0.0031726754, -0.06701557, -0.01183066, 0.025245963, 0.02161618, -0.01831145, -0.002432836, -0.0012604359, 0.028659044, 6.607977E-5, 0.028361076, 0.0065688263, -0.021169228, 0.0013112258, 0.031286575, 0.02199541, 5.730793E-4, 0.03125949, -0.015643287, -0.016631998, 0.016835157, -0.003873576, -0.034130808, -0.015724551, 0.005867926, -0.030419761, -0.005895014, -0.030284321, 0.01449205, 0.02397283, 0.0027071014, 0.009575588, -0.023512335, -0.012115083, 0.0047437763, -0.010110575, -0.011756168, -0.017742602, -0.002398976, 0.013855483, -0.026830608, 0.008715546, 0.012656841, -0.011850975, -0.010618473, -0.023444615, -0.01776969, 0.0011233032, 0.043638676, 3.394458E-4, -0.017715516, 0.012365646, -0.029065363, -0.015101529, -0.0019706478, 0.02502926, -0.017106036, 0.0028594711, -5.7604205E-4, -0.019909639, 0.008979653, -0.0015194643, 0.009562044, -0.009027057, 0.016374663, -0.0037449081, 0.0030778677, 0.0016946895, 0.010279874, 0.027629701, 8.778187E-4, -0.021358844, 0.0069751455, -0.011194092, 0.03014888, -0.027697422, 0.013747131, -0.0064232284, -0.007205393, 0.03488927, -0.0070428653, -0.029092452, -0.016550733, 0.011925467, -0.024230165, 0.010036083, 0.04637456, 0.014437874, -0.006981917, 0.023417527, -0.043963734, 0.013923203, 0.009385972, 0.059214246, -0.0048995316, -0.008850985, 0.01244691, 0.004659126, 0.013225689, -0.0059965933, 0.008864529, -0.040415213, -7.643879E-4, -0.096974835, 0.02718275, 0.02437915, -0.024812557, -0.0063453508, 0.012866773, 0.032993115, -0.01644238, -5.270774E-6, 0.028821573, 0.0042054034, 9.057531E-4, -0.0018741471, -0.0040157875, -0.02819855, 0.0041004373, 0.012704246, -8.147546E-4, 0.007157989, 0.046672527, 0.018988648, -0.002839155, -0.0017192379, 0.028171461, -0.006267473, 0.023945741, 1.4443375E-4, 0.01442433, 0.009331796, 0.0026478465, 0.03586444, -0.028686132, -0.009887099, 0.035756085, 0.0031100344, -0.00862751, -5.2668063E-5, 2.5479597E-4, -0.023065384, -0.03318273, -0.01936788, -0.012602665, -0.0022008955, -0.018148921, -0.019760655, -0.0046896003, 0.005204271, -0.009595904, 0.012060907, 0.040794443, 0.0014864509, 0.0052178153, -0.011004477, -0.028523605, 0.0034977307, -0.007191849, 0.0055293264, -0.0151421605, 0.01824373, -0.0035891526, 0.049733464, -0.009995451, -0.0055631865, -0.015629744, 0.00479118, -0.024148902, -0.025963794, 0.017607164, 0.009954819, -0.008945793, -0.038139824, -0.0055699586, 0.017661339, 0.023106016, -0.011302444, 0.0060676993, 0.022455905, -0.016117327, -0.020979613, 0.0112956725, 0.01770197, -0.00855979, -0.0023177122, -0.0011326147, -4.8123425E-4, -8.9982763E-4, -0.028631955, 0.012230206, -0.0055293264, 0.022889312, -0.030175969, 0.016577821, 0.0034638708, -0.006890496, 0.017878043, 0.011688448, -0.014437874, 0.009805836, 0.038789935, 0.021602634, 0.002354958, -0.014437874, -0.021047331, -2.0506419E-4, -1.2401199E-4, 0.014911913, 0.009162497, -0.0045135287, 0.0023346422, 0.013340812, 0.001921551, -0.02653264, -1.5109993E-4, 0.02138593, -0.02148074, 0.003860032, 0.0037855401, -0.024094725, -0.022157937, 0.026315937, 0.001180865, -3.3711793E-4, -0.022361098, 0.0030355426, 0.03014888, 0.014166994, 0.0107945455, -0.00790968, 0.013137653, -0.0123859625, -0.009365656, 0.007246025, 0.0065959143, -0.011979643, -0.026058601, -0.0061929813, 0.0010056399, 0.00583068, 0.008688458, 0.114419475, 0.02083063, -0.015399496, -0.0054920805, -0.0014297356, 0.017756147, 0.0073882365, -0.027629701, -0.024907364, -0.029200803, 0.006240385, -0.0032183863, -0.036649987, 0.01063879, -0.041715432, 0.027304647, 0.014871281, 0.026261762, -0.014343066, -0.029390419, 0.022929944, -0.020072166, 0.011512376, -0.016808068, -0.0012773658, 0.010902897, 0.036812514, 0.011309217, -0.009758431, -0.030203057, 0.013936747, 0.021440107, -0.025096979, -0.010659106, -5.0620595E-4, -0.008993197, -0.014925457, -1.6009397E-4, 0.033426523, -0.035105973, 0.010692965, 0.006325035, -0.020722277, -0.0034977307, 0.0067956876, -0.0027037153, -0.0120473625, -0.02444687, -0.0671781 ], - "id" : "c2be073b-707d-44d9-a9a9-1eaa73a1ec8d", - "metadata" : { - "name" : "FastRider X1" - }, - "text" : "- Chain: Size: M, L, XL - KMC E10 / Size: M, L, XL - KMC X10e\n- Pedal: Size: M, L, XL - FastRider City pedals / Size: M, L, XL - Wellgo C157, boron axle, plastic body / Size: M, L, XL - slip-proof aluminum pedals with reflectors\n- Max chainring size: 1x: 48T\n\nComponents\n- Saddle: FastRider Commuter Comp\n- Seatpost: FastRider Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length\n- Handlebar: Size: M - FastRider alloy, 31.8mm, 15mm rise, 600mm width / Size: L, XL - FastRider alloy, 31.8mm, 15mm rise, 660mm width\n- Grips: FastRider Satellite Elite, alloy lock-on\n- Stem: Size: M - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length / Size: L - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length / Size: XL - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length\n- Headset: Size: M, L, XL - FSA IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom / Size: M, L, XL - FSA Integrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom\n- Brake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor\n- Brake rotor: Shimano RT56, 6-bolt, 180mm\n- Rotor size: Max brake rotor sizes: 180mm front & rear\n\nAccessories\n- Battery: FastRider PowerTube 625Wh\n- Charger: FastRider standard 4A, 100-240V\n- Motor: FastRider Performance Speed, 85 Nm, 28 mph / 45 kph\n- Light: Size: M, L, XL - FastRider taillight, 50 lumens / Size: M, L, XL - FastRider headlight, 500 lumens\n- Kickstand: Size: M, L, XL - Rear mount, alloy / Size: M, L, XL - Adjustable length alloy kickstand\n- Cargo rack: FastRider integrated rear rack, aluminum\n- Fender: FastRider custom aluminum\n\nWeight\n- Weight: M - 25.54 kg / 56.3 lbs\n\nWeight limit\n- This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:------------------------:|:--------------------:|\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n| XL | 186 - 197 cm 6'1\" - 6'6\" | 87 - 93 cm 34\" - 37\" |\n\n## Geometry\n| Frame size letter | M | L | XL |\n|---------------------------|-------|-------|-------|" - }, - "fe079d5b-7ab5-4ac8-8312-c4d482d12fd9" : { - "embedding" : [ 0.020733552, 0.010115583, -0.035927292, -0.005441369, 0.007664761, 0.01733906, -0.002814033, -0.011683838, -0.0070333853, -0.03815408, 0.0122744795, -0.004063206, -0.018045114, 0.0047081592, -0.01093705, 0.013231726, -5.4142135E-4, -0.016442915, 0.014569156, -0.014161817, 0.0045723794, -0.017447684, -0.012899066, -0.0068059545, -0.023096118, -0.009626777, 0.040652424, 0.0015708008, 0.017827867, -0.019837406, 0.018099427, 0.012199801, -0.027576845, -0.0037780686, -8.3249895E-4, -0.004809994, 0.013611909, -0.01900915, 0.02835079, 0.0065751295, 0.02180621, 0.008112834, -0.009192282, 0.009816868, -0.008282558, 0.042200312, 0.02422309, 0.022552999, 0.008798521, 0.0027631158, -0.0014265348, 0.04581205, -0.007963476, 0.0032773812, 4.0245935E-4, -0.033809133, 0.021073, 0.018900527, 0.04089683, 0.024114465, 0.013055213, 0.025594464, -0.034705278, -0.0015198834, -0.023992263, -0.021290248, 0.0139717255, 0.009715034, -0.011853563, 0.021969147, 0.015465301, 0.013055213, 0.028432257, 0.01313668, 0.022267861, -0.015125852, -0.0069994405, -0.016592272, 0.0027206845, 0.025825288, 0.030360328, -0.005275039, -1.925313E-4, -0.0061372397, 0.031446565, 0.006184763, 0.0013289433, 0.0098032905, -0.02894822, 0.007861641, -0.011317234, -0.0010158014, 0.0024627033, 0.0058011855, 0.0046199025, -0.018859793, -0.03209831, 0.0010378656, -0.02161612, -0.01928071, 0.018208051, 0.010746959, -0.0057536624, -0.016646584, -0.0020960981, -0.020271901, -0.03348326, -0.0014350212, -0.0031704546, -0.008812099, -0.016510805, 0.014664202, -0.012233746, 0.00927375, 0.0061134784, -0.026124004, 0.05110746, 0.009097236, 0.03041464, -0.025784554, 0.018235207, 0.025893178, 0.011853563, -0.028405102, 0.015139431, 0.03177244, -0.014379065, -0.005743479, 0.008330082, -0.0036762338, 0.012457782, 0.016388603, 0.008241825, 0.0028496752, -0.019185664, 0.0024728868, -0.00278518, 0.015057962, -0.024005841, -0.0129941115, 0.013116314, 0.0149493385, -0.014284018, 0.0044196276, -0.008445494, 0.0034555919, -0.0071284315, 0.0074746693, -0.0036762338, -0.013150259, 0.021222359, -0.0026918314, 0.014134661, 0.019199241, 0.0241552, 0.0051121037, 0.016198512, 0.01967447, -0.027250975, -0.007868431, -0.014053193, 0.004355132, 0.008085677, -0.017189702, 0.024684738, 0.021073, -0.0128651215, -0.024657583, -0.004331371, -0.01648365, 0.0035642157, 0.0074203573, -0.023489878, 0.020842176, -0.00720311, 0.013781634, 0.016986033, 0.0043992605, -0.011955397, 0.0035438486, 0.009545309, 0.0052309106, 0.013435395, 0.013577964, -0.015438146, -0.012084388, 0.007834486, -0.019253554, 0.0071623763, -0.018968416, 0.027237397, 0.008418338, -0.0075493483, -0.002467795, -0.58830607, -0.037692428, 6.835656E-4, -0.016823098, -0.00947063, 0.033863444, 0.012946589, -0.0019925663, -0.0015224293, -0.0044535724, -0.014053193, 0.04114123, 2.4822218E-4, 0.006517423, -0.037257936, -0.022593733, 0.018873371, -0.005129076, -0.0065513677, -0.021358138, -0.031663813, -0.020964377, -0.019172085, 0.018058693, 0.022552999, 4.2940312E-4, -0.0021385294, -0.026585653, -0.0024796757, 0.0025255014, -0.021100156, 0.055370938, -9.054805E-4, -0.0070673306, 0.033781976, -0.040299397, -0.004714948, 0.020760708, 0.026056115, 0.022430798, -0.021330982, -0.008201091, 9.1142085E-4, -0.02935556, -0.012308424, 0.0074407244, 0.039511878, -0.013530442, 0.0044298107, -0.034841057, 0.013564386, -0.0025136208, 0.018017959, -0.0010353198, -0.010746959, -0.019199241, 0.038452797, 0.0066464134, 0.024901986, -0.0050306357, -0.013883469, 0.02306896, -0.019416489, -0.022037037, 0.0016997914, 0.005441369, -0.045404714, -0.028540881, 0.011622737, 0.0036049495, 0.019837406, 0.002411786, -0.0044603613, 0.018289518, 0.03590014, 0.02241722, 0.027658314, 0.008214668, -0.0022081165, 0.019959608, -4.6504528E-4, 0.00533614, 0.0023354099, -0.022390064, 0.041711506, -0.003815408, 0.0064393496, -0.010129161, 0.004582563, 0.0041921963, 0.03554711, 0.013917414, -0.0056382497, -0.018303096, -0.00907008, 0.03174528, 1.5858638E-4, 0.012566406, 0.010000171, -0.030441796, -0.0074950363, 0.009117603, 0.007780174, 0.014514844, 0.030659044, -0.0071080644, 0.0034742616, -0.0300073, 0.022240706, -0.02695226, 0.01527521, -0.0077733845, -0.044182695, -0.0047658654, -0.0081807235, -0.025798133, 0.019701626, 0.009165126, 0.032831516, -0.03902307, 0.022865292, 5.4608873E-4, 0.03728509, -0.010020537, -0.027210241, 0.003754307, 0.016266402, -0.011154298, 0.008167146, -0.021303827, 0.02148034, 0.015736861, 0.039864905, -0.01687741, 0.018628968, 0.0070809084, 0.0059946715, 0.013686588, 0.008173934, -0.0146913575, -0.047984526, -0.009328062, -0.011290077, -0.029708587, -0.01594053, -0.006296781, -0.013129892, 0.018914104, 2.4079671E-4, -0.0058351303, -0.0010242877, -0.022906026, -0.012233746, -0.0026239415, -0.0021996303, -0.019511536, -0.03361904, -0.035791513, -0.026001802, -0.029464183, 0.0068195327, 0.02108658, -0.0074746693, -0.0064325607, 0.0111678755, 0.0028513726, 0.030468952, 0.015166586, -0.010000171, -0.041602883, -0.014026037, -2.8046983E-4, -0.006374854, 2.4185749E-4, -0.014759247, 0.011785673, -0.018995572, 0.008119623, 0.0038323805, -0.012240535, -0.0022861897, 0.032505646, -0.047604345, 0.02441318, 0.004609719, 0.0018550893, 0.0020299058, 0.011704206, -0.026069691, 0.013876679, -0.0029209596, 0.0013781633, -0.029437026, 0.009966226, -0.010685858, 0.00261885, 0.025458684, 0.0026935288, 0.0094163185, 0.016103465, 0.026327673, -0.002632428, 0.032043997, -0.0061066896, 0.014541999, -0.02894822, 0.021493917, -0.0020655477, 0.0274818, 0.0054277913, 0.0013798607, -0.02627336, -6.029465E-4, 0.012790442, 0.0019246765, -0.012573195, 0.0018398141, 0.04255334, -0.0019942636, -0.013605121, -0.006951918, 0.01714897, 0.045296088, -0.0074882475, -0.025458684, 0.025526574, 0.013930991, 0.042661965, -0.0019789883, -0.010855583, -0.020448415, 0.02247153, 0.0137680555, -0.01740695, -0.0017371308, 0.006649808, 0.025757398, -0.025662353, 0.03448803, -0.0033198122, 0.018968416, 0.037312247, 0.02035337, -0.020380525, 0.020815019, 0.022770246, 0.003835775, 0.021100156, 0.030876292, 0.012681819, 0.011846774, 0.013177414, -0.0033232067, -0.002467795, 0.014962917, 0.004568985, 0.0066735693, 0.02180621, -0.021656854, -1.05123145E-4, 0.014148239, 0.03655188, 0.012546039, 0.015831906, 0.023286209, -0.030523265, -0.025064923, -0.016565116, -0.015587503, -0.02802492, 0.002107979, -0.013028057, 3.7381833E-4, -0.004989902, 0.011894297, -0.002371052, 0.011568425, -6.3476985E-4, 0.021928413, 0.027060883, -0.012152278, -0.0435038, 0.009144759, 0.017692087, -0.013286038, -0.02207777, -0.0033690324, 0.018289518, 0.005763846, 0.032478493, -0.0053972406, 0.020557038, 0.0026375195, 0.015967686, -0.013930991, 0.011188243, 0.022919605, -0.024698317, -0.01000696, -0.004222747, -0.0094909975, -0.018289518, -1.4193216E-4, -0.02088291, 0.043721046, -0.015098697, 0.0026544922, -0.007175954, 0.023313364, 0.0025153179, 0.0071148532, -0.03690491, -0.0156146595, -0.013883469, 0.01680952, 0.005597516, 0.0022352724, -0.022091348, 0.010957417, -0.031175006, -0.02354419, -0.019511536, -0.04249903, -0.009721822, 0.031853903, 0.035275552, -0.01021063, 0.010529712, -0.006483478, -0.0081060445, -0.022023458, -0.020244746, -0.005770635, 0.0029769687, 0.0041786185, 0.0071012755, -0.019158509, 0.0052614613, -0.0022777035, -0.024521803, 0.0046504526, -0.026178315, 0.028730974, 0.0048439386, -0.003158574, -0.010685858, 0.0020553644, 0.021100156, 0.016375026, 0.003621922, 0.0062662307, 0.0029192623, 0.028459413, -0.010733381, -0.004086967, 0.0015249752, 0.014270441, 2.7898475E-4, -0.024168776, 0.016728053, 4.620751E-4, -0.015587503, 0.017501997, 0.016279979, 0.0037407293, 0.007888798, 0.007875219, 0.0054549472, 0.007725862, -0.008343659, 0.011283289, 0.0013484616, -0.0060523776, -0.023123274, 0.042797744, -0.0027953633, -0.016320713, -0.0063544875, 0.016429337, 0.007841274, -0.010896317, -0.02567593, 9.1820984E-4, -0.024386024, -0.0032722894, -0.020516304, 0.010197051, -0.0062492583, 0.0040462334, -0.0077054948, -0.0048167827, 0.0060252217, -0.011228977, -0.024508227, -0.029111156, -0.025119234, -0.013116314, 0.027861983, 0.0014248376, -0.01027173, 0.026042536, -0.038126923, 0.025268592, 0.009423107, -0.028568037, 0.014188973, -0.02120878, -0.02253942, -0.0035506377, 0.012722553, 0.033130232, -0.016239246, 0.009321272, 0.014446954, 0.004331371, -0.021792633, 0.021385293, -0.014270441, 0.019253554, 0.0066090743, 0.017719243, 0.03315739, 0.023571346, -0.026599232, 2.5034373E-4, -0.015954109, 0.006917973, 0.025105657, 0.006751643, -7.361803E-4, 0.01747484, 0.00463348, 0.011561637, -0.026572077, -0.011385123, -0.024766207, -0.008133201, 0.003917243, -0.0266807, 0.012600351, 6.483478E-4, 0.026531342, -0.014745669, -0.01187393, 0.027943451, -0.04008215, 0.04334086, 0.019104196, -0.014243284, 0.035519954, -0.0051799933, -0.0037509126, -0.0021521074, 0.018330252, 0.037257936, 0.032614272, 0.012281269, -0.0020587589, -0.027128773, -0.027604003, -0.028513726, -0.0015181862, 0.018045114, -0.008798521, -0.01287191, 0.018805481, 0.015913375, 0.045105997, -0.016415758, -0.019660892, -0.024779785, -0.0017159153, 0.0107062245, 0.02354419, -0.010842005, -0.012681819, -0.01647007, -0.03288583, -0.013998881, 0.0057808184, -0.009586043, -0.022186393, 0.0060082492, 0.016958877, 0.0074271467, -8.6050347E-4, 0.008153568, 0.007624027, -3.985875E-5, 0.0017116722, -0.021969147, 0.0034538948, -0.04331371, 0.00557036, 0.03310308, 0.022457954, -0.0017685299, -0.02101869, -0.021493917, 0.019457223, -0.035329863, -0.014093927, -0.013530442, -0.050727274, 0.0048473333, -0.028785285, -0.009742189, -0.024508227, -0.04084252, -0.0023388043, 0.047957372, -0.014297596, 0.028405102, 0.017366216, 0.00993907, -0.028432257, 0.03535702, -0.006622652, 0.021358138, 0.02480694, -0.026436297, -0.018452454, -0.019335022, 0.016958877, -0.024005841, 0.006510634, 0.0013959844, -0.043639578, -0.006649808, 0.0027138956, 0.0050340304, 0.0033877022, 0.022566577, -1.1774641E-4, -0.022552999, -0.019755939, 0.006096506, -0.026599232, -0.013693377, 0.012912644, -0.02681648, 0.031066382, -0.022023458, -0.008160356, 0.018330252, 0.008798521, 0.023530612, 0.009131181, 0.007814119, 0.019158509, -0.013591542, -0.015913375, -7.395747E-4, 0.013523652, 0.0066532027, 0.020991532, 0.03326601, -0.02127667, -0.0069722845, 0.008846044, -0.0078073298, 0.0055669653, -0.0153431, -0.005081553, 0.02761758, 0.016510805, -0.019036306, -0.0042600865, -0.014786404, 0.007895586, -0.0066260467, 0.003309629, 0.01087595, -0.020366946, 0.0059199925, 0.015261632, -0.018113004, 0.00880531, 0.018995572, -0.013028057, 0.016958877, -0.0137137445, -0.017501997, -0.0027936662, 0.013292827, 0.07256064, -0.019973185, 0.0050679753, 0.029627118, 0.0099322805, -0.010224207, -0.01914493, 3.6405917E-4, 0.02802492, -0.02548584, 0.016429337, -0.020692818, 0.002080823, -8.486228E-5, 0.004409444, -0.00953852, -0.009307695, 0.015519613, -0.024453914, -0.012783653, -0.022267861, -0.02727813, -0.013611909, -0.021656854, -0.029165467, -0.022430798, -0.01367301, 0.0015122457, -0.044372786, 3.12081E-4, -0.023164008, 0.023340521, 0.03668766, 3.8357748E-4, -0.02968143, -0.0015147916, 0.016320713, -0.023924373, -0.0060388, 0.01781429, 0.002260731, -9.725217E-4, 0.00311784, 0.0068466887, -0.005122287, 0.014188973, -6.670175E-4, -0.018588234, -0.026979415, 0.013917414, -4.3571476E-5, 0.017664932, -0.008472649, -2.6180013E-4, 0.01687741, 0.015478879, -0.009036135, -0.022851715, 1.0862372E-4, -0.006184763, 0.0019110985, -0.0027071068, -0.036198854, 0.031337943, 0.0014545395, -0.015668971, 0.001340824, -0.0036898118, -0.021358138, 0.0090293465, -0.0060829283, -0.010258152, -1.12760754E-4, -0.0329673, 0.0042261416, -0.011643104, 0.016103465, -0.022485109, 0.010665491, 0.021426028, -0.015696127, -0.016714474, 0.037801053, -0.004796416, -0.04768581, 0.0038731142, -0.024318134, -0.008486228, -0.034243625, 0.012518883, 0.044101227, 0.016958877, -0.010930262, 0.0013976817, -0.016388603, -0.018751169, -0.010699436, 0.0041854074, 0.02028548, 0.0054210024, 0.021846944, 0.0037373346, 0.0131977815, 0.021819789, 0.03302161, -0.007556137, 6.148272E-4, 0.00953852, 0.028486568, 0.02148034, 0.007868431, -0.04755003, -0.033048764, 0.015044385, 0.026992993, 0.0037712797, 0.0048167827, -0.014582734, -0.004908434, 0.017352639, -0.018194472, 0.036497567, 0.013564386, -0.0010090125, -0.049858287, -0.0037305458, 0.0041005453, 0.007664761, -0.004168435, -0.01527521, -0.014867871, -0.0063680653, 0.008635585, -0.008560906, 0.0026527948, -0.021846944, -0.014161817, 0.0185475, 0.005176599, -0.019348599, 0.065228544, 0.008167146, -0.036226008, 0.005882653, 0.019647315, -0.018289518, -0.014935761, 0.002557749, -0.040733892, -0.0025339876, -0.0039104535, 0.015492457, -0.013387873, -0.0057604513, -0.01467778, -0.009165126, -0.031446565, 0.045676272, 0.0306862, -0.025051344, -0.02688437, 0.0128651215, -0.012383103, 0.015601081, 0.013150259, 0.00463348, -0.053279933, 0.019375755, -0.00557036, -0.037719585, -0.029138312, 0.025893178, 0.005163021, 0.011480169, -0.0056925616, 0.21040414, 0.017176125, -0.014854293, 0.039376095, 0.017488418, -0.016117044, 0.017569887, 0.0039851326, -0.0011176362, 0.0010938748, -0.01000696, 0.020516304, -0.018167317, 0.0043788934, 0.024236666, 4.1624947E-4, -0.03459665, -0.022186393, -0.006232286, -0.017379794, -0.0025068317, 0.013503286, -0.01928071, -0.030333173, 0.010692647, 0.0017184612, -0.009979804, -0.031175006, 0.0044841226, 0.020041075, -0.015723282, -0.005108709, 0.013028057, 0.018194472, -0.017515574, 3.9163942E-4, 0.007366046, 0.008499806, 0.0044298107, 0.014786404, -0.0105976015, -0.0078480635, 0.0011940122, -0.01153448, 0.0050645806, 2.3443204E-4, -0.023313364, 0.0026460057, -0.015682548, -0.012824387, -0.017841445, 0.0037610962, 0.0142297065, 0.037529495, -0.009830446, -0.02482052, 0.03177244, -0.012267691, 3.3053858E-4, -0.011507325, -0.02228144, 0.027739782, -0.0034725645, 0.041304167, 0.004473939, 0.006096506, -0.021168046, -0.028486568, 0.027807672, -0.0011965581, -0.029844366, -0.006945129, 0.0041039395, 0.011113564, -0.029002532, -0.02287887, -0.0015427961, -0.007882008, 0.0075697154, 0.017488418, 0.0023591714, 0.006215313, 0.0129398005, 0.006697331, -0.002764813, -0.037828207, 0.015546769, -0.019701626, 0.018859793, -0.013958148, 0.005315773, 0.004993296, -6.6786614E-4, 0.0060999007, 3.14786E-5, -0.011609159, -0.03576436, 0.034841057, -0.00637146, 0.010631546, -0.025730243, 0.0510803, -0.013774845, -0.010957417, -0.037040688, -0.004718343, -0.01795007, 0.014813559, 0.020910066, -0.0508359, -0.013170625, -0.04716985, 0.0021877496, -0.018791903, 0.01021063, -0.0090293465, 0.0022284833, -0.0047658654, 0.014541999, -0.038724355, 0.030468952, -0.012987323, 0.011066041, -0.0023744465, 0.004942379, -0.027332442, -0.0125528285, 0.012926222, -0.01795007, -0.039837748, 0.007719073, 0.0026001802, 0.013279249, 0.011636316, -0.003475959, 0.0032604088, -0.009056502, -0.009857602, 0.01107283, -0.011262922, 9.979804E-4, 0.012423838, 0.012668241, -0.0041005453, 0.024603272, -0.02862235, 0.004110729, -0.032587115, -0.016171355, -0.008642375, -0.016089888, 0.001154127, -0.0048710946, -0.01281081, 0.008771365, 0.0038595365, -0.008316503, -0.041792974, -0.0074610915, -0.0024440335, -0.02995299, 0.002605272, 0.02028548, 0.0026527948, -0.024956299, -0.022227127, -0.17140822, 0.019755939, 0.04236325, 0.011602371, 0.0022895841, -0.0074950363, 0.018357407, 0.012186223, -0.011860352, 0.005723112, 0.02995299, -0.009905125, -0.022050614, -0.027305286, 0.003380913, -0.0015292183, -0.029844366, 0.0063612764, 0.030224549, 0.0044535724, 0.004137885, -0.03220693, 0.015465301, -0.0074950363, -0.0073253117, 0.014732092, 0.004942379, 0.032179777, 0.027020149, -0.008031366, -0.023313364, -0.046599574, 0.022892447, -0.019620158, 0.010047694, -0.019294288, -0.006656597, -0.011697416, -0.022634467, 0.05216654, 0.0062865973, -0.010882738, -0.012362736, -0.013503286, 0.0035065094, 0.03114785, -6.996895E-4, 0.0055669653, 0.0066396245, 0.0039511877, 0.031908218, -0.027142351, 0.02693868, -0.011256132, 0.010828427, -0.008655952, -0.0055194427, 0.029572807, 0.009850813, -0.013299616, -0.039729122, -0.008235035, 0.00913797, -0.0014401128, -0.01020384, -0.017501997, 0.005241094, 0.020041075, -0.02420951, -0.0019857774, -0.0034165552, -0.0036592614, 0.0067686155, 0.0074543026, 0.014718513, 0.021724744, -0.03454234, 0.0032739867, 0.019389333, 0.0031059594, -0.0011108472, 0.04964104, 0.0025628407, -0.0028632532, -0.009239805, -0.011962187, 0.01834383, -0.010488978, 0.0031568767, -0.022756668, -0.018846214, -0.02821501, -0.020258322, -0.0068331105, -0.013679799, 0.008622007, 4.776155E-5, -0.014093927, 0.0250785, -0.018058693, 0.0028632532, -0.007990632, -0.019891718, 0.026979415, 0.060774967, 0.0024525197, 0.008370815, 0.00933485, 6.657446E-4, 0.026042536, -0.021833368, 0.024114465, 0.041385636, 0.030930603, -0.0070741195, 0.023693549, -0.03348326, -0.03587298, 0.017827867, -0.007590082, 0.011921452, -0.011833196, -0.0075765043, -5.732447E-4, -0.022865292, -0.024861252, -0.05751626, -0.008479439, 0.03462381, 0.015329522, -0.025024189, 0.005241094, 0.0034165552, 0.0357372, -0.013727322, 0.033673353, -0.018696858, -0.014990073, -0.009789713, 0.019565847, 0.018737592, 0.011195032, 0.010563657, -0.017162547, -0.0138427345, 0.009857602, -0.02214566, -0.027631158, -0.011744939, -0.0067448537, -0.009348429, -0.011439435, -0.012165857, 0.0052920114, 0.021249514, 0.0066328356, 0.0032502252, -0.022023458, -8.083132E-4, 0.0037101787, -0.004341554, -0.023123274, -0.023924373, 6.306328E-5, 0.015329522, -0.029627118, -0.004636875, 0.0029905466, -5.893685E-4, -0.02354419, -0.019973185, -0.012708975, -0.008879988, 0.018981995, -0.007834486, -0.024901986, 0.01594053, -0.020434836, 0.005356507, -0.009083658, 0.02494272, 0.0027393543, 0.0059471484, -0.0128651215, -0.016755208, 0.0015130944, 0.002330318, 0.007196321, -0.009898336, 0.018221628, 0.008255403, -0.0079227425, -0.0106519135, 0.014392642, 0.022865292, 0.002184355, -0.01033962, 0.03294014, -0.0081807235, 0.02894822, -0.026639966, -0.0013000901, -0.023340521, -0.026735011, 0.0050679753, -0.0074814586, -0.024182355, -0.0070265965, 0.014256863, -0.03435225, 0.014976495, 0.038588576, 0.006592102, -0.007820907, 0.03177244, -0.056864515, 0.025200702, 0.01086916, 0.054719195, 2.0992805E-4, -0.008649163, -0.00700623, 0.009715034, 0.0012364434, -0.015764017, -0.0055839377, -0.037040688, -0.0038595365, -0.08776796, 0.053334244, 0.015641814, -0.031663813, 0.005818158, -0.0018550893, 0.019090617, -0.011568425, -0.0038052246, 0.009395951, -0.019335022, 0.011751728, -0.021602541, 0.005987882, -0.012702186, 0.013157047, 0.015234476, -0.016021999, 0.012681819, 0.017732821, -5.8385247E-4, 0.009952648, -0.022132082, 0.011303656, -0.014175395, 0.019837406, -0.017787134, 0.023530612, 0.0084930165, 0.008533751, 0.04062527, -0.016782364, 0.0037746741, 0.04331371, -0.005302195, -0.015546769, 0.0043381597, -3.3159935E-4, -0.01447411, -0.024250245, -0.009036135, -0.007977054, -0.0033181151, -0.0058656805, -0.001455388, -0.002993941, 0.004541829, 0.010169895, 0.012546039, 0.035329863, 0.0048201773, 0.018438876, 0.0044841226, -0.022104926, 6.385886E-4, -0.009083658, -0.015234476, -0.010903105, 0.006785588, -0.01460989, 0.06848725, -0.0065615512, -0.012559617, -0.022308595, -8.7917317E-4, -0.005129076, -0.014827137, 0.015125852, 0.011962187, -0.014555578, -0.043123614, -0.017352639, 0.021901257, 0.017393373, 0.0034114635, 0.010685858, 0.004327976, 4.7438013E-4, -0.019864561, 0.009776134, 0.022593733, 1.8987934E-5, -0.0058588916, -0.0059471484, 0.014121083, -0.004137885, -0.018724013, 0.009810079, -0.013428607, 0.0048473333, -0.022037037, 0.013958148, 0.0036728394, 0.005702745, 0.024834096, 0.02228144, -0.017053923, -0.016646584, 0.028540881, 0.034460872, -0.007148798, 0.008194301, -0.007929531, -0.010821638, -0.0013255487, 0.013903836, -0.015478879, -0.022186393, 0.0038289858, 0.006588707, 0.0044807284, -0.0055024703, 0.008255403, 0.02040768, -0.022512265, -0.009891547, -0.0064325607, -0.007814119, -0.01607631, 0.02494272, 0.011765306, 0.0073796236, -6.1694876E-4, 0.0013034845, 0.03055042, 0.0011821315, 0.0055194427, -0.0014978192, 0.018194472, -0.01793649, 0.024318134, -0.010115583, 0.0019552268, -0.009484208, -0.028975377, -0.019633736, 0.016510805, 0.017135391, 0.024739051, 0.10916683, 0.005129076, -0.011568425, -0.0073253117, -0.0013238515, 0.021602541, 0.016429337, -0.015465301, -8.3589344E-4, -0.040408023, -0.0032383446, -0.0049389848, -0.023326943, 0.0038663254, -0.019416489, 0.016429337, 0.014053193, 0.01814016, -0.007698706, -0.019783095, 0.024861252, -0.014935761, 0.0033418764, -0.0026307306, -0.018683279, 0.014664202, 0.018316673, 0.0019755939, -0.016565116, -0.035248395, 0.026395563, -0.0042600865, -0.017067501, -0.022580154, 0.012980534, -0.005964121, -0.0151530085, 0.03353757, 0.023978686, -0.019986764, 0.0011099986, 0.006347698, -0.041467104, -0.0053666905, 0.0075697154, -0.016035575, -0.016768785, -0.038317017, -0.058602493 ], - "id" : "fe079d5b-7ab5-4ac8-8312-c4d482d12fd9", - "metadata" : { - "name" : "Blaze X1" - }, - "text" : "Cassette\tShimano Ultegra R8000, 11-30, 12 speed\nChain\tShimano Ultegra HG701, 12 speed\n\nComponents\nSaddle\tBontrager Montrose Elite, titanium rails, 138mm width\nSeatpost\tBontrager carbon seatmast cap, 20mm offset\nHandlebar\tBontrager Elite Aero VR-CF, alloy, 31.8mm, internal cable routing, 40cm width\nGrips\tBontrager Supertack Perf tape\nStem\tBontrager Elite, 31.8mm, Blendr-compatible, 7 degree, 80mm length\nBrake Shimano Ultegra hydraulic disc brake\n\nWeight\nWeight\t56 - 8.91 kg / 19.63 lbs (with tubes)\nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg).\n\n## Sizing\n| Size | Rider height |\n|------|-------------|\n| 50 | 162-166cm |\n| 52 | 165-170cm |\n| 54 | 168-174cm |\n| 56 | 174-180cm |\n| 58 | 179-184cm |\n| 60 | 184-189cm |\n| 62 | 189-196cm |\n\n## Geometry\n| Frame size | 50cm | 52cm | 54cm | 56cm | 58cm | 60cm | 62cm |\n|------------|-------|-------|-------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | 700c |\n| A - Seat tube | 443mm | 460mm | 478mm | 500mm | 520mm | 540mm | 560mm |\n| B - Seat tube angle | 74.1° | 73.9° | 73.7° | 73.4° | 73.2° | 73.0° | 72.8° |\n| C - Head tube length | 100mm | 110mm | 130mm | 150mm | 170mm | 190mm | 210mm |\n| D - Head angle | 71.4° | 72.0° | 72.5° | 73.0° | 73.3° | 73.6° | 73.8° |\n| E - Effective top tube | 522mm | 535mm | 547mm | 562mm | 577mm | 593mm | 610mm |\n| F - Bottom bracket height | 268mm | 268mm | 268mm | 268mm | 268mm | 268mm | 268mm |\n| G - Bottom bracket drop | 69mm | 69mm | 69mm | 69mm | 69mm | 69mm | 69mm |\n| H - Chainstay length | 410mm | 410mm | 410mm | 410mm | 410mm | 410mm | 410mm |\n| I - Offset | 50mm | 50mm | 50mm | 50mm | 50mm | 50mm | 50mm |\n| J - Trail | 65mm | 62mm | 59mm | 56mm | 55mm | 53mm | 52mm |" - }, - "4b318558-3f55-44f2-acbd-103f934f6f0d" : { - "embedding" : [ 0.025218656, -0.008465004, -0.019846635, -0.005639944, -0.021691572, 0.012405843, 0.0033642964, -0.02344155, 0.0014176168, -0.019765241, -3.4931707E-4, 0.01641451, -0.019222613, -0.017988132, -0.0072440896, 0.012772117, 0.01102214, -0.0029132364, -0.008010552, -0.020172212, -8.749884E-4, 0.012460106, -0.008953369, -0.010716911, -0.012392277, 0.0029912393, 0.02954612, -0.0074000955, 0.0051685357, -0.0071491296, 0.013457186, 0.01612963, -0.027239949, 0.005433067, -0.022478383, 0.0043105045, 0.02631748, 0.00961809, 0.04026303, -6.096091E-4, 0.040751398, -0.0023383894, -0.011408763, -0.008254735, -0.014596705, 0.016930008, -0.0022959965, -0.0027724921, 0.018191619, 0.02204428, -0.022573343, 0.025639193, -0.009333209, 0.016143195, -0.0043545933, -0.02163731, 0.012751768, 0.010018278, 0.030848427, 0.024933778, 0.009652004, 0.011503723, -0.043030437, -0.0013591147, -0.022641173, -0.015180031, -0.0018008482, 0.0014116818, 0.0042223274, 0.011897129, 0.015369951, 0.023075275, 0.030794164, 0.0072033927, -0.0073390496, -0.021040417, -6.914273E-4, -0.0013353747, 0.012772117, 0.013545362, 0.021026852, -0.027077159, -0.014366088, 0.018869905, 0.016495904, 0.014366088, 0.0013396139, 0.0032862935, -0.011320586, 0.005762036, 0.0068540755, 0.012962037, 0.012989168, 0.02441828, 0.0025893552, -0.0034100807, -0.019697413, -0.0034304291, -0.00955026, -0.0058705616, 0.01612963, 0.019249745, -0.01783891, -0.021216772, -0.036518894, -0.017608292, -0.018191619, -0.004351202, 0.020660577, 0.014447482, -0.0050464445, 0.020850498, 0.01292134, -0.017567595, 0.015139334, -0.017404808, 0.02612756, -0.0065284986, 0.03589487, -0.02099972, 0.018571459, 0.037332837, -0.0030811122, -0.023929914, -0.010004712, 0.02517796, -0.004931136, -0.01527499, 0.023699297, -0.024770988, -0.0058061243, -0.0026453137, 0.025693458, 0.027321342, -0.032449182, -0.0073661814, -0.02422836, 0.017377676, -0.022736132, -0.020986155, 0.0120667005, 0.010153934, -0.009604524, -0.0029030622, -0.0049684416, 0.0014277911, -1.5907917E-4, 0.020511355, 0.02938333, 0.014162603, 0.013769196, 0.0023604338, 0.01745907, 0.030197272, -0.004826002, -0.011822517, -0.009726615, 0.0032574665, -0.032476313, -0.0067489413, -0.0028793223, -0.0010377769, -0.0050294874, 0.0050634015, 0.014718796, 0.017323414, 0.0052058417, -0.011347718, -2.8191242E-4, -0.018354407, -0.029301936, 0.018435802, -0.019209048, 0.032720495, -0.00524993, 0.007759587, 0.022356292, -7.096563E-4, -0.02061988, -0.010662649, 0.039340563, 0.007278004, 0.024119833, 0.01698427, -0.004764956, 5.379652E-4, -0.0036491763, -0.023115972, 0.017404808, 0.0022807352, 0.003893359, -0.0049006133, -0.0117275575, 0.0046021673, -0.60383695, -0.018164488, -0.0076714098, -0.010323506, -0.012426191, 0.022342727, 9.724919E-4, 0.01812379, -0.0077121067, -4.1650972E-4, -0.034022804, 0.01679435, -0.014556008, -0.014243997, -0.04004598, -0.020280737, 0.018652853, -0.028840702, 0.018069528, -0.011931043, -0.02422836, -0.010784741, -0.03318173, 0.0016516254, -0.0063351872, -0.007325484, 0.010662649, -0.0020229868, -0.0050939247, 0.03722431, -0.03896072, 0.048321065, 0.013436837, -0.004408856, 0.043925773, -0.040398687, 0.0055687246, 0.023414418, 0.009021197, 0.025327183, -0.0040629306, -0.016902875, -0.023197366, -0.013857374, -0.018544327, 0.0059180413, 0.04639473, -0.010588038, -0.004937919, -0.034836747, 0.003520302, 9.691005E-4, 0.014827322, -0.0036356107, -2.3125298E-4, -0.012358363, 0.017377676, 0.006772681, -0.005755253, 0.022966748, 0.020850498, 0.010703346, -0.019127652, -0.013640323, -0.012127746, 0.023590771, -0.029410461, -0.037685547, 0.036953, -0.020660577, 0.013280831, 0.019724544, -0.01641451, 0.022383424, 0.020769104, 0.016658694, 0.049704764, -0.010058975, -0.010364204, 0.021678006, 0.019683847, 0.0012353276, 0.0032642493, -0.035542164, 0.03814678, 0.0049582673, 0.0052838447, -0.017906738, 0.02786397, 0.0041138018, 0.025679892, 0.002797928, -0.0074340096, -0.0345383, 0.004826002, 0.014786625, -0.009204335, 0.023048144, 0.017988132, -0.045689315, -0.012867077, 0.012270186, 0.023916349, 0.013972683, 0.016930008, 0.017703254, -0.0011106926, -0.009943666, 0.028325206, -0.009299295, 0.013531797, -0.01574979, -0.017404808, 0.013504665, -0.013145174, -0.033995673, -0.0011208669, 0.02536788, 0.020131515, -0.036111925, -0.0010114934, -0.016007539, 0.019670282, -0.023536509, -0.027117856, 0.011273106, 0.011747906, 0.00942817, -0.021365995, 0.009027981, 0.029817432, 0.007413661, 0.02432332, -0.0124804545, 0.042216495, 0.03871654, 0.011795386, 4.8200667E-4, 0.010771175, -0.016916443, -0.025761286, 0.022912486, -0.0030438064, -0.036763076, -0.008851627, -0.023604337, -0.019968728, -7.321245E-4, -0.017472636, -0.016116064, -0.021176076, 0.0051854933, -0.012677157, 0.008851627, -0.010289592, -0.024174098, -0.015587002, -0.01650947, -0.013172305, -0.035732083, 0.0049040047, 0.0098080095, -0.023997743, 1.8695246E-4, -3.584315E-4, 0.0094688665, 0.004568253, 0.022749698, -0.0148544535, -0.036735944, -0.020009425, -0.00904833, -0.020714842, 0.019521058, -0.002109468, 0.013463968, -0.018625721, -0.013640323, 0.022057846, -0.020565618, 0.015356385, 0.026561663, -0.031770896, 0.013525014, 0.023455115, 0.0034931707, 0.02251908, 0.015220728, -0.0034100807, 0.011049272, -0.024350451, 0.012751768, -0.007230524, -0.0069863414, -0.017567595, -0.008654924, 0.01923618, 0.012073483, 0.007318701, 0.017906738, 0.014990111, -0.0025317008, 0.010581255, 0.015302123, 0.01211418, -0.024526807, 0.013402923, 0.0032591622, 0.02451324, 0.021420257, 0.013050214, -0.03432125, -0.010235329, 0.0015168161, -0.01477306, -0.0037509191, -7.579841E-4, 0.05833256, -0.013260483, -0.006046916, -0.002413001, 0.019398967, 0.032177866, -0.008471787, 0.0027250121, 0.024472542, 0.007969855, 0.048212536, -0.0075832326, -0.029329067, 0.008207255, 0.037902597, 0.0034965621, -0.004819219, 0.021772966, 0.022098543, 0.01496298, -0.0076510613, 0.03944909, -0.012358363, 0.030956952, 0.050817154, 0.0265074, -0.018639287, 0.01812379, 0.0114291115, 0.011517289, 0.023115972, 0.011083186, 0.032177866, -0.026331045, 0.0069659925, -0.008030901, -0.0037441363, -0.004781913, -0.0053957617, 0.0033812535, 0.013145174, -0.0016016017, 0.011035706, 0.0111645805, 0.016523035, 0.0013557232, 0.01850363, -0.0038119648, -0.021420257, 0.002192558, -0.015885448, 0.009041547, -0.031255398, -0.0014388133, -0.012846729, 0.0034406034, -0.0042358935, 0.022098543, 6.553934E-4, 0.0057111643, -0.01869355, 0.024811685, 0.038662277, -0.027891101, -0.023346588, 0.006789638, 0.013959116, -0.0013879418, 0.009753746, -8.1351877E-4, 0.005565333, -0.0016499296, 0.05225512, 0.014691665, 0.020918326, -0.0129349055, 0.004503816, -0.031391054, 0.0032879892, 0.041483946, 0.0047005187, 0.010004712, -0.0049514845, 0.004232502, -0.008363261, -0.018259447, -0.015546305, 0.009997929, -0.019561755, 3.5631188E-4, -0.028352337, 0.03160811, -0.014935848, -0.016862178, -0.049921818, -0.016753653, -0.014528876, -0.0026487052, 0.011334152, -4.1396616E-4, -0.01083222, 0.018327275, -0.022614041, -0.003598305, -0.021867927, -0.015858317, -0.020267172, 0.06392163, 0.015573436, 0.0023434765, 0.005812907, -0.020443527, -0.0023282152, -0.012880643, -0.00589091, 0.014840888, 0.031960815, -0.0057281214, 0.01068978, 2.7210908E-5, -0.028487993, -0.025137262, -0.010045409, 0.014691665, -0.0127449855, 0.0060163927, -0.007284787, 0.004517382, -0.020918326, -0.0066471985, 0.011157798, 0.038390964, -0.004029016, 0.03624758, 0.014664534, 0.007698541, -0.0088651925, 0.009401037, -0.013728499, 0.031987946, -0.023387287, -0.023902783, 0.017486202, 0.019493926, -0.012317666, 0.005636553, -0.0010004712, 0.009156855, 0.02805389, -0.006358927, 0.0030081964, 0.020009425, -0.009624872, -0.005351673, 0.008498918, 0.008166558, -0.024052005, 0.039639007, -0.006633633, -0.014379654, 0.014556008, 0.018964864, 0.025001606, -0.010859352, -0.025042303, -0.017581161, -0.034755353, 1.4294338E-5, -0.01802883, 0.02574772, -0.0071762614, -0.01736411, -0.0058162985, 0.0022739524, 0.016441641, -0.0032727278, -0.007949507, -0.03510806, -0.021623744, -0.032991808, 0.0067964215, -0.004022233, 0.007135564, -1.8520375E-5, -0.028189547, 0.018462934, 0.019181915, -0.014162603, 0.019588888, -3.73481E-4, -0.007827415, 0.0045716446, -0.012222705, 0.038825065, 7.094178E-6, 0.035786346, -8.868584E-4, 0.029329067, -0.01859859, 0.022939617, -8.067888E-6, -0.016061801, -0.0028420165, 0.010303157, 0.020253606, 0.0045546875, 0.005690816, 0.009590957, -0.03071277, -0.004853133, -0.0025266137, 0.01641451, 0.0010259069, 0.017811779, 0.0075357524, 0.007861329, -0.015261425, -0.02470316, -0.008736318, -0.0145153105, 0.009746963, -0.033642963, 0.020253606, 0.019710978, -0.0028182764, -0.0148544535, 0.007637495, -0.0059655216, -0.03947622, 0.029898828, 0.0028131893, -0.019792372, 0.030685639, -0.0033676878, 0.015220728, -0.0061791814, 0.03513519, 0.05741009, 0.038038254, -0.01144946, 0.006620067, -0.013226569, -0.028677912, -0.024499673, 0.017092796, 0.02346868, -0.008756666, -2.5732457E-4, 0.018381538, 0.001961941, 0.02432332, -0.0081122955, -0.022722567, -0.019656716, 0.008722752, -0.012914557, 0.034239855, -0.015559871, -0.014501745, -0.010289592, -0.029057752, -0.03054998, -0.01688931, 0.004005276, -0.031391054, 0.022464817, 0.036030527, 0.018625721, 0.0059282156, 0.008973718, 0.007888461, 0.0023027794, -0.007915593, -0.018652853, -0.0038187476, -0.015030808, 0.021813663, 0.03071277, 0.0104862945, -0.014081208, -0.031770896, -0.00936034, 0.02116251, 0.0026809236, -0.03681734, -0.020172212, -0.04506529, -0.009068678, -0.007935941, -0.010065758, -0.016807916, -0.037875466, -0.0034863877, 0.034049936, 0.01878851, 0.023726428, 0.0074407924, 0.010031844, -0.016631562, 0.045635052, 0.02078267, 0.022220634, 0.01382346, -0.012982385, -0.03586774, -0.02565276, 0.025395012, -0.009679135, 0.016726522, 0.009631655, -0.031391054, 0.004130759, 0.0047853044, -0.010153934, -0.020389264, 5.138013E-4, -0.0067591155, 0.0011564769, -0.023970611, -0.028162416, -0.03565069, -0.014271128, 0.009482432, 0.0037034391, 0.023509378, -0.028596519, 0.0011742818, 0.035162322, 0.019005561, 0.020796236, -0.010438815, 0.009760529, 0.013572494, -0.005884127, -0.0077799354, -0.027511261, -0.0070270384, -0.009401037, 0.01888347, 0.0109746605, -0.013518231, -0.0145153105, 0.004771739, -0.005138013, -0.012283752, -0.009068678, 0.02024004, 0.018286578, 0.03944909, -0.01049986, -0.0130095165, -0.008593878, 0.010350637, 0.0057281214, 0.016468773, 0.010852569, -0.0031574192, 0.0021518609, 0.026955068, -0.013647106, 0.017377676, 0.011144232, -0.020443527, 0.002133208, -0.011252757, -0.017974567, 0.004887047, -0.007189827, 0.051386915, -0.0072101755, 0.02021291, 0.027443433, -0.014488179, -0.009536695, -0.026615925, 0.020389264, 0.026086863, -0.017594727, -0.008492135, 0.001120019, -0.014081208, -0.019548189, -0.0056195958, -0.019765241, -0.006277533, -0.012772117, -0.011863214, -0.008770232, -0.0073119183, -0.014081208, -0.030604245, -0.012690723, -0.028189547, -0.019507492, -0.0231838, 0.011415546, -0.01603467, -0.00710165, -0.020579183, 0.02049779, 0.023414418, 0.009936883, -0.009373906, -0.005361847, 0.011822517, -0.023400852, 0.003964579, 0.031770896, 0.0060910042, 0.0073526152, 0.016211025, -0.002387565, -0.010764392, -0.0042867647, -0.008424306, -0.014650968, -0.03570495, -0.00572473, -0.009387472, -0.001120019, -0.012473672, 0.0039442307, -7.372116E-4, 0.009835141, -0.007372964, -0.0397204, 0.00672181, -0.008777015, 0.009916535, 0.018951299, -0.019304007, 0.006230053, -1.0794279E-4, -0.008207255, -0.002460481, 2.1408388E-4, -0.018544327, -0.0020314653, 0.005239756, -0.0035745648, -0.014650968, -0.021718703, -0.028867833, -0.028135285, 0.0051787104, -0.0044936417, 0.01695714, 0.0032506834, -0.031418186, -0.009299295, 0.036383238, -0.021949321, -0.012012437, -0.0034270377, 0.002453698, -0.03508093, -0.018137356, 0.00688799, 0.025896942, 0.012514369, -0.020701274, -0.0053686304, -0.012609328, -0.05572794, -0.015505608, -0.004378333, 0.017689688, 0.014908716, 0.0052533215, -8.766841E-4, 0.020741973, 0.039069247, 0.027294211, -0.01679435, -0.0077663697, -0.014325391, 0.013484317, -0.0029844565, -0.004636082, -0.05073576, -0.013341877, 0.026548097, 0.018042395, 0.01401338, -0.017974567, -0.018490065, -0.009414604, 0.024458976, -0.020796236, 0.01363354, 0.021691572, 0.015166465, -0.028379468, -0.009570609, -0.018951299, 0.0027640136, -0.005002356, -0.011062837, -0.015166465, -0.023645034, 0.014447482, -0.0134978825, -0.013362225, -0.031689502, -0.013918419, 0.017988132, 0.009624872, -0.015424213, 0.025340749, 0.002092511, -0.021447388, -0.0037678762, 0.02154235, -0.0130163, -0.0058434303, 0.004351202, -0.039991718, 0.0064810184, -0.01733698, 0.00650815, 0.013769196, -0.018259447, 0.015166465, -0.0033066422, -0.038553752, 0.007562884, 0.010615169, -0.025055869, -0.040588606, 0.011985306, -0.004212153, 0.022614041, 0.003394819, 0.018286578, -0.027728314, 0.021935755, -0.0134232715, -0.014759494, -0.025489971, 0.023224497, 0.020348568, 0.0029030622, -0.0076849754, 0.20609029, 0.005931607, -0.0034016022, 0.028542256, 0.019290442, 0.0073458324, 0.015763355, -0.0043986817, 0.008756666, -0.0061961384, 0.011279888, 0.024106268, -0.010771175, -0.006779464, 0.018910602, -0.015315688, -0.05456129, 0.0070202556, 0.0014379654, -0.0020433352, -0.0017431938, 0.0056535103, -0.014298259, -0.018897036, 0.015302123, 0.007372964, -0.025191525, -0.009767312, 0.006609893, -0.0014489875, -0.0063453615, -0.0065284986, 0.0067082443, 0.017282715, -0.026208954, 0.0047039106, 0.025693458, 0.005399153, -0.016143195, 0.036139056, -0.0017669338, -0.012527934, 0.0065420642, -0.01546491, 1.4032032E-4, 0.0023926522, -0.023875652, -1.8409094E-4, -0.022315595, -0.014406785, -0.030441456, 7.3636376E-4, -0.0022858223, 0.03896072, -4.078192E-4, -0.023536509, 0.007454358, -0.0020229868, 0.01809666, -0.0069931243, -0.03836383, 0.029437592, -0.0042358935, 0.025910508, -0.014976545, 0.025734155, -0.007332267, -0.014745928, 0.032774758, 0.012093832, -0.020362133, -0.015329254, -0.006572587, -0.0023773909, -0.019290442, -0.034402642, 0.029491857, 0.010628735, 0.017323414, 0.015139334, 0.008553181, -0.006945644, 0.0028911922, 0.0017398024, 0.008390392, -0.03700726, 0.016970705, -0.012690723, -0.0029183235, -0.0070609525, -0.01292134, 0.001250589, -0.0029268023, -0.010900049, -0.008051249, 0.003995102, -0.011496941, 0.011802169, -0.01527499, 0.0076171467, -0.02116251, 0.043898642, -0.004558079, -0.017201321, -0.03912351, -0.007996987, -0.020348568, 0.02593764, 0.015451345, -0.030577112, 0.0023010836, -0.031960815, -0.018395104, -0.016088933, 0.026493834, -0.007379747, 0.0031099392, -0.019548189, 0.02049779, -0.02660236, 0.007610364, -0.03339878, -5.998588E-4, -0.01726915, 0.022315595, -0.014311825, -0.017377676, 0.0017821953, -0.020253606, -0.029112017, 0.005032879, 0.011442677, 0.013755631, -0.0062673585, -0.004802262, 0.0069592097, -0.017893173, -0.016495904, -7.414509E-4, 0.0018703724, -2.3845976E-4, 0.0148544535, 0.021298166, 0.0020552052, 0.026453137, -0.015519174, 0.03356157, 0.0056195958, -0.017730385, -0.001671126, -0.01771682, 0.0071219984, -6.248706E-4, -0.012188791, 0.019724544, 0.017771082, -0.025096565, -0.0127449855, -0.011775037, -0.0043410277, -0.033832885, -0.026019033, 0.0068981643, 0.026873674, -0.03014301, 0.018164488, -0.17168763, 6.943948E-4, 0.02574772, -0.0110899685, 0.020457093, 0.0019042867, 0.026968634, -0.007467924, -0.020850498, -0.0048056534, 0.017662555, -0.02192219, -0.054479897, 3.005653E-4, 0.016387379, 0.0125415, -0.018937733, 0.020389264, 0.0060910042, 0.012317666, -0.014257562, -0.021420257, 0.009489215, -0.020959023, 0.0077799354, 0.0050566187, -0.008356478, 0.020552052, -0.009224684, -0.003420255, 0.0050464445, -0.044468403, 0.039232038, -0.004005276, 0.004232502, -0.012405843, -0.019168349, 0.014800191, -0.0024994824, 0.043925773, 0.009977581, 0.012738203, 0.019805938, 0.0153428195, 0.019995859, 0.014474614, -0.016061801, 0.0014048989, -0.009902969, -0.017825345, 0.03847236, -0.014745928, 0.018747812, -0.022532646, 0.025055869, 0.020131515, 0.0060435245, 0.01401338, 0.02957325, -0.022057846, -0.030251537, -0.013538579, -0.0060672644, -0.010757609, 0.005524636, -0.0284066, -0.01831371, 0.045933496, -0.026493834, 0.0022807352, 0.0042833732, -0.002992935, 0.014474614, 0.013850591, 0.031770896, -2.4609047E-4, -0.027579091, -0.0040561478, 0.037061524, -0.016251722, -0.0016880832, 0.039069247, -0.018652853, 0.0058162985, -0.015831186, -0.007508621, 0.0046666046, 0.0106423, -0.0020518138, 0.008573529, -0.01154442, -0.026168257, -0.009109375, -0.008722752, -0.015641265, 0.008037684, -7.9232233E-4, -0.009719832, 0.008403958, -0.010540557, 0.005578899, -0.008193689, -0.020145081, -6.6132843E-4, 0.03185229, -0.023455115, 0.034809615, 0.011598683, 0.017445505, 0.00638945, -0.028487993, 0.018842774, 0.011686861, 0.046666045, -0.0063860584, 0.013436837, -0.0303058, -0.01707923, 0.0073526152, 0.016102498, 0.030767033, -0.013999814, -0.0013565711, 0.0064030155, -0.014827322, -0.03130966, -0.0657123, -7.639191E-4, 0.03337165, 0.0104862945, -0.017255584, -0.0057281214, -0.0075967982, 0.04159247, -0.017214887, 0.0198602, -0.007128781, -0.024933778, 0.0034304291, 0.010967878, 0.024282623, 0.0024333494, 0.008342912, -0.014759494, -0.022030715, 0.020375699, -0.023889218, -0.032883283, 0.002914932, 0.0044054645, -0.01581762, 1.5844326E-4, -0.029491857, 0.030387193, 0.02954612, 0.004714085, 0.015885448, -0.036953, 0.024106268, 0.011381632, -0.00522619, -0.026426006, -0.007929158, -0.0034032979, 0.020660577, -0.036681682, -0.006494584, -0.0066166758, 0.009455301, -0.020850498, -0.01239906, -0.016183894, 0.005565333, 0.024621766, 0.008939804, -0.014623837, -0.006596327, -0.02087763, 0.009421387, -0.01296882, 0.022668304, -0.01593971, -0.0015515782, -0.016102498, -0.011001792, 0.009590957, -0.0054873303, -0.0045105987, -0.00581969, -0.010547341, 0.014976545, -0.018462934, -0.0020569009, 0.008946586, 0.019778807, -0.0141761685, -0.0033795577, 0.015871882, -0.014121905, 0.008519267, -0.03570495, 0.010900049, -0.0037000477, -0.01910052, 0.026466703, 0.0124804545, -0.041266892, -0.024838816, 0.013742065, -0.032747626, 0.014379654, 0.022274898, 0.019317573, -0.014610271, -0.0011284976, -0.04769704, 0.017106362, 0.018557893, 0.040371556, 0.01603467, -0.024960909, -0.015926145, -0.01012002, 0.016617997, -0.0050464445, 0.007800284, -0.035026666, -0.016387379, -0.084758565, 0.027945366, 0.012677157, -0.018761378, 0.0019212438, 0.0093196435, 0.01771682, -0.024648897, 0.008634575, 0.0050396617, 0.016102498, -0.011625814, -0.015383516, -0.007820632, -0.0051515787, 0.008939804, 0.017445505, -0.028759308, 0.026263217, 0.018015264, 0.0184765, 0.00719661, -0.016902875, 0.013918419, -0.04275912, 0.020362133, -0.014284694, 0.007949507, 0.012012437, -0.0049040047, 0.028705046, -0.0284066, 0.014121905, 0.045635052, -0.014935848, -0.006443713, 0.0025537452, -0.0029318894, -0.0059044757, -0.021732269, -0.023767127, -0.01593971, -0.008397175, -0.02040283, -0.013484317, -0.0016838439, 0.014094774, -0.0046089506, 0.003028545, 0.021813663, 0.0017118232, 0.0031930292, -0.009394255, -0.034429774, 0.005884127, -0.038390964, 0.01983307, 0.0032388135, 0.0066743298, 0.018815642, 0.044522665, -0.0028640607, 0.0037543105, -0.011171363, 0.002914932, -0.008702404, -0.028298073, 0.004123976, 1.1933586E-4, -0.0066743298, -0.0076307124, -0.012853512, 0.0079630725, 0.02163731, -0.0065420642, 0.009936883, 0.021827228, -0.007332267, -0.038879327, 0.013626757, 0.019616019, 0.002897975, 0.001641451, -0.001878851, -4.9260486E-4, 0.0055992473, -0.021420257, 0.005500896, -0.015220728, 0.01306378, -0.03912351, 0.02843373, -0.01387094, -0.0011768255, 0.0134911, 0.0038899677, -0.013280831, -0.001843241, 0.023889218, 0.02878644, 0.008695621, 0.0015965146, -0.001369289, -0.0066471985, 0.0093196435, 0.005310976, -0.018652853, -0.022695435, -6.087613E-4, 0.01249402, -0.006548847, 0.009482432, -0.0022654738, 0.010004712, -0.02786397, 0.011985306, 0.0017482811, -0.025069434, -0.04785983, 0.03662742, 0.022057846, 0.012738203, -0.010364204, -0.022912486, 0.042704858, -0.008763449, -0.003639002, -0.008756666, 0.0061893556, -0.00955026, 0.005009139, 0.0020365524, 0.011754689, -0.014338956, -0.0145153105, -0.018652853, -0.008200472, 0.012053134, -0.0023214323, 0.096316546, 0.033453044, -0.016048236, 0.0033812535, -0.013409706, 0.017676122, 0.007189827, 4.2626009E-4, -0.020145081, -0.022057846, 0.008607443, -0.021867927, -0.027416302, 0.0025181351, -0.023007447, 0.025408577, 0.037251443, 0.023780692, -0.016930008, -0.02420123, 0.019195482, 0.0012946776, -0.0027284035, -0.010900049, -0.009326426, 0.013477534, 0.036708813, 0.023645034, 0.008546398, -0.047615647, 0.0127449855, 0.0063216216, -0.020253606, -0.008397175, 0.0066404156, 0.002175601, -0.008919455, -0.0075357524, 0.012487237, 6.464909E-4, -0.0066065015, 0.02061988, -0.0129349055, -0.006443713, 0.01935827, 0.007467924, -0.019493926, -0.02024004, -0.057898454 ], - "id" : "4b318558-3f55-44f2-acbd-103f934f6f0d", - "metadata" : { - "name" : "AgileEon 9X" - }, - "text" : "price: 3499.99\nname: AgileEon 9X\nshortDescription: AgileEon 9X is a high-performance e-bike designed for riders seeking speed and endurance. Equipped with a robust motor and an extended battery life, this bike is perfect for long-distance commuters and avid e-bike enthusiasts. It boasts innovative features tailored for individuals who prioritize cycling over driving. Additionally, the bike integrates seamlessly with your smartphone, allowing you to access navigation, music, and more.\ndescription: ## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. The AgileEon 9X features a sleek hydroformed aluminum frame that houses a powerful motor, along with a large-capacity battery for extended rides. It comes equipped with a 10-speed drivetrain, front and rear lighting, fenders, and a rear rack.\n\nThe tech you get\nDesigned for those constantly on the move, this bike includes a state-of-the-art motor and a high-capacity battery, making it an excellent choice for lengthy commutes.\n\nThe final word\nWith the AgileEon 9X, you can push your boundaries and explore new horizons thanks to its powerful motor and long-lasting battery.\n\n## Features\n\nConnect Your Ride with RideMate App\nMake use of the RideMate app to transform your smartphone into an onboard computer. Simply attach it to the RideMate controller to dock and charge, then utilize the thumb pad on your handlebar to make calls, listen to music, receive turn-by-turn directions, and more. The bike also supports Bluetooth® wireless technology, enabling seamless connectivity with fitness and health apps for route syncing and ride data.\n\nGoodbye, car. Hello, Extended Range!\nEnhance your riding experience with the Extended Range option, which allows for the attachment of an additional high-capacity 500Wh battery to your bike's downtube. This doubles the distance and time between charges, enabling longer rides, extended commutes, and more significant adventures. The Extended Range feature is compatible with select AgileEon electric bike models.\n\nWhat is the range?\nTo determine how far you can ride on a single charge, you can utilize the range calculator provided by AgileEon. We have pre-filled the variables for this specific model and an average rider, but adjustments can be made for a more accurate estimation.\n\n## Specifications\nFrameset\nFrame: High-performance hydroformed alloy, Removable Integrated Battery, Extended Range-compatible, internal cable routing, Motor Armor, post-mount disc, 135x5 mm QR\nFork: AgileEon rigid alloy fork, 1-1/8'' steel steerer, 100x15mm thru-axle, post-mount disc brake\nMax compatible fork travel: 63mm\n\nWheels\nFront Hub: AgileEon sealed bearing, 32-hole 15mm alloy thru-axle\nFront Skewer: AgileEon Switch thru-axle, removable lever\nRear Hub: AgileEon alloy, sealed bearing, 6-bolt, 135x5mm QR\nRear Skewer: 148x5mm bolt-on\nRim: AgileEon MD35, tubeless compatible, 32-hole, 35mm width, Presta valve\nSpokes:\n- Size: M, L, XL: 14g stainless steel, black\nTire: AgileEon E6 Hard-Case Lite, reflective strip, 27.5x2.40''\nMax tire size: 27.5x2.40\"\n\nDrivetrain\nShifter: Shimano Deore M4100, 10-speed\nRear derailleur:\n- Size: M, L, XL: Shimano Deore M5120, long cage\nCrank:\n- Size: M: AgileEon alloy, 170mm length" - }, - "3573572b-278b-422f-979e-206282059909" : { - "embedding" : [ 0.006171624, 6.7070045E-4, -0.01813041, -0.027762191, 0.013800156, -0.004478643, -0.00729803, -0.005433053, 0.0071091717, -0.02061255, 0.011027984, 0.02185362, -0.01958732, -0.0035748207, 7.8325666E-4, -0.007824136, 0.008410946, 0.014123914, 0.021421945, -0.0074733985, 2.6545045E-5, 0.03987611, 0.010630033, 0.008950542, -0.012329759, -0.022460666, 0.02058557, -0.009166379, 0.032456674, -0.017928062, 0.03407546, 0.0011803653, -0.040901344, -0.009537351, -0.022716973, -0.03671948, 0.009692485, -0.020760939, 0.0052947816, -0.018413698, 0.014312772, 0.008593059, 0.013881096, 0.025873607, -0.007446419, 0.024295291, -0.0032476909, 0.0150412265, 0.019911077, 0.0047012265, -0.002834563, 0.012869354, -0.006141272, 0.02197503, 0.014272302, -0.024443679, 0.0034871364, 0.018831884, 0.01585062, -0.012012746, -7.0105266E-4, 0.016120417, -0.022514625, 0.013091938, -0.017590815, -0.020895839, -0.031377483, -0.0035444684, -0.01275469, 0.005085688, 0.005247567, 0.039498396, 0.024578579, -0.004084064, 0.010906575, -0.015068206, -0.02305422, 0.012383718, 0.009065205, 0.009557586, 0.042115435, -0.020882348, -0.012120665, 0.027074207, 0.015432433, 0.041117184, 0.0023185746, 0.010474899, -0.024659518, -0.014528611, 0.0043504895, 0.006127782, 0.0074531636, 0.021529863, -0.0048597325, 0.020221343, 0.0031600066, 0.023391468, -0.009591311, 0.0017174315, -0.006805649, -0.007034977, -0.011311272, -0.01703773, -0.060272824, 0.011135903, 0.013557338, -0.0070079975, 0.0014560649, -0.0156212915, -0.025927566, 0.024821395, 0.017509876, -0.009625036, -0.026939308, -0.0016390216, 0.021462414, -0.027870111, 0.0025664514, -0.022663014, -0.0069877626, 0.04961581, 0.0058242595, 0.002220773, -0.012430932, -0.0068225116, -0.02911118, -0.008316517, 0.029461918, 0.022366237, 0.031053726, 0.0097397, 0.006741572, -0.009719465, -0.024794417, 0.03029829, -0.02800501, -0.005750065, -0.0010724462, 0.0023033987, 0.012390464, 0.024065962, -0.028463665, 0.008444671, -0.01719961, -0.0061817416, -0.009530607, 0.024295291, -0.0011946983, -0.0037232095, -0.018643027, -0.039579336, 0.01148664, 0.045568846, 0.0024602185, 0.004525858, -0.011068454, -1.3099947E-4, -0.007203601, 0.0023253197, -0.010535603, -0.009975773, 0.008282792, -0.015877599, -0.012066706, 0.013274051, 0.007824136, -0.013449419, 0.022177378, 0.030001514, -0.008127659, 0.029866615, -0.027897092, 0.013651768, 0.004401076, 0.044651534, 0.0029863243, 0.0032729844, 9.864481E-4, -0.024038982, -0.007635277, 0.0016904518, 0.0033235715, 0.035802167, -0.02322959, -0.024484148, 0.009854364, -0.012255564, 0.021408454, -0.018062962, 0.0022426941, 0.02300026, -0.012269055, 0.03987611, -0.6047787, -0.011776674, -0.0086739985, -0.024942804, 0.003814266, 0.02680441, -0.009092186, 0.011891337, -0.0025360992, 0.019776177, -0.016686993, 0.0075948075, -0.03286137, -0.014730959, -0.02549589, -0.019951547, 0.016214848, -0.003154948, 0.023971533, -0.020248324, -0.037016254, 0.009719465, -0.0092877885, 0.009159635, 0.009928558, -0.008464905, 0.01029953, -0.018521618, -0.017739205, 0.014811899, -0.032294795, 0.019155642, 0.010306275, 0.02327006, 0.04848266, -0.025860118, 0.030082453, 0.021597313, 0.018980274, 0.017577326, -0.028598566, -0.02554985, 2.2830056E-5, -0.014676999, 8.9792075E-4, 0.0077364515, 0.02420086, 0.00781739, -0.02186711, -0.001964465, 0.0077566863, -0.014474651, 0.019749198, -0.008215343, -0.0030335388, -0.014811899, 0.03515465, -4.734108E-4, 0.01590458, -0.007399204, 0.002178617, 0.023256568, -0.016295787, -0.0316203, -0.020922817, 0.021044226, -0.055794183, -0.03917464, 0.04014591, 0.009294533, 0.012930059, -0.00915289, -0.009665506, 0.016268807, -0.015203105, 0.016619543, 0.032591574, -0.0031144782, 0.025118174, 0.020207854, 0.03520861, 0.0147444485, 0.0054094456, -0.020720469, 0.029785676, -0.0077297064, 0.018508127, -0.026629042, -0.00272833, -0.007021487, -0.0038581083, 0.011817143, -0.013388715, -8.12555E-5, -0.013894586, 0.009321514, -0.024443679, 0.006852864, 0.012370229, -0.012046471, -0.015526863, -0.01463653, -0.005375721, 0.006505499, 0.016727462, 0.009071951, -0.017401958, -0.009840874, 0.05118064, -0.004239198, 0.01096728, 0.018737456, -0.020113425, -0.014245323, -0.0013118917, -0.021408454, 0.009429432, 0.018076451, 0.026021997, -0.013314521, 0.0024382975, -0.0072440705, 0.018373229, 0.009800404, -0.014191363, -0.0032831018, 0.004191983, 0.0020976777, -0.03871598, -0.038338266, 0.032483652, 0.032051977, 0.025482401, -0.00727105, 0.023971533, 0.03396754, -0.004262805, 0.002827818, 0.025846628, -0.039498396, -0.024403209, 0.0095508415, -0.03056809, -0.03048715, -0.02422784, 0.0026608806, -0.037151154, 0.008687489, -0.0028261319, 0.0011272489, 0.0032409457, -0.004755186, -0.018750945, 0.019371482, -0.0067651793, -0.017186118, 0.010609798, -0.0047450685, -0.0064414223, -0.02426831, 0.017725714, 0.011223588, -0.014879348, -0.016660012, -0.022568585, -0.008282792, 0.018993763, -0.0060873125, -0.015648272, -0.04354536, -0.0027957796, -0.017523365, -0.02669649, 0.013692237, -0.0050755707, 0.023998512, -0.02430878, 0.019749198, 0.024133412, -0.005534227, 0.0016095124, 0.007291285, -0.022986772, 0.020477653, 0.06113618, 0.009260809, 0.0033825897, 0.025927566, -0.030109432, 0.017496387, -0.0032240835, 0.018440679, 0.010818891, 0.013004253, -0.0150412265, -0.031080704, -0.0049069473, 0.0019020743, 0.0157427, 0.007561083, 0.032213856, -0.009537351, 0.0071226615, -0.037528872, 0.013806902, -0.01583713, 0.023985023, -0.0113045275, 0.0182788, 0.0101309065, 0.013233582, -0.027708232, -0.016349746, -0.022433685, -0.0044449186, 0.003713092, -0.0019273679, 0.03785263, -0.006154762, -0.012309524, -0.0011525424, 0.009544097, 0.04130604, -0.016889341, -0.014204853, 0.008208597, 0.012356739, 0.02070698, 0.021273555, -0.0057736724, 5.438112E-4, 0.018683497, 0.005395956, -0.0021954793, 0.031917077, 0.0074868887, 0.017226588, -0.026966289, 0.028787423, -0.013881096, 0.0208149, 0.027424945, 0.056117937, -0.029650776, 0.0013869292, -0.03143144, 0.013044722, 0.0014771429, 0.002735075, 0.03404848, -0.009436177, 0.006900078, -0.0036557599, -0.0072170906, 0.023728715, -7.453164E-4, 0.006340248, -0.0058748466, -0.013645023, 0.012977273, -0.0022241455, 0.02556334, 0.012633281, -0.0015454354, 0.024686497, -0.007399204, -0.0044111935, -0.015014247, -0.010380469, -0.0039221854, -0.004670874, -0.013456165, -0.0070079975, 0.021651272, 0.008923561, 0.0048394976, 0.019277051, 0.02811293, 0.0050587086, 0.016444175, -0.02443019, -0.017698735, -0.013611298, 0.021367984, 0.004407821, -1.657781E-4, -0.007561083, 0.026237834, -0.012842375, 0.020491142, 0.0046304045, 1.9212553E-4, -0.02190758, 0.0052880365, -0.02059906, -0.0045022503, 0.03893182, -0.031917077, -0.02416039, 0.018332759, -0.024983274, 0.0042459425, -0.029731715, 0.010009497, 0.017739205, 0.013017743, 0.008289536, 0.007938799, 0.004262805, 0.0051733726, 0.006475147, -0.011958786, -0.029434938, -0.011911572, 0.022919321, -0.017145649, 0.0022123419, -0.01719961, 0.014798408, -0.0036456424, -0.024699988, 0.0066370256, -0.038392223, -0.00609743, 0.048158903, 0.018912824, 0.0145421, 0.04119812, 0.019857116, 1.1677185E-4, -3.7898158E-4, -0.01148664, 0.0016761187, 0.0038614809, -0.0110954335, 0.0033522374, -0.021597313, 0.005291409, -0.010157887, -0.00667075, 0.0030554598, -0.04357234, -0.012296034, -0.028868362, -0.0052812914, -0.01821135, -0.018683497, 0.029434938, 0.022609055, 0.0026575082, 0.015553842, 0.048428703, -0.0014510062, -0.007905075, 8.0433465E-4, -0.0019627789, -0.0010952103, -0.023566836, -0.037124176, 0.009058461, 0.0028042106, -0.023742205, 0.044138916, 0.024254821, 0.020437183, 0.018804906, -0.011547345, 0.0010319765, -0.0022393216, -0.001520985, -0.0053015263, 0.012882845, 0.013213347, -0.024969785, 0.04400402, 0.01224882, -0.022190867, 0.011324762, 0.01342244, 0.02313516, -0.030055473, -0.018629536, -0.0109403, -0.033616804, 0.0025681376, -0.018009001, 0.039714232, -0.0035377233, -3.4441374E-4, 7.402577E-4, 9.021363E-4, -5.1388046E-4, -0.01830578, -0.0072575603, -0.019762687, 0.010650268, -0.019641278, 0.0036557599, -0.0045562102, 0.010576073, -0.01211392, -0.022609055, 0.016511625, 0.005726458, 0.033427946, -0.011210098, -0.0063874624, -0.042223353, -0.0023826517, 0.0015580822, 0.04354536, 0.02546891, -0.010043222, -0.005763555, 0.012667006, -6.4182364E-5, 0.027762191, -0.01834625, -8.241479E-4, -8.389025E-4, 0.016660012, -0.010137652, 0.0058310046, 0.007136151, 0.026440183, -0.005200352, -0.009469902, -0.022824893, 0.010225336, 0.00334212, -0.015081696, -0.012957038, -0.017685244, 0.022919321, 0.019411951, -0.013017743, -0.0036220353, -0.0023084574, -0.026709981, 0.011850867, -0.017590815, -0.011318017, 0.01939846, -0.022528116, -0.004546093, -0.035964046, 0.040712487, -0.007992759, 3.1216445E-4, -0.0045528375, 0.0047214613, -0.015445923, -0.01686236, -0.005719713, 0.012552341, 0.018009001, -0.02687186, 0.015648272, -0.019277051, -0.030864866, -0.016579073, 0.021044226, -0.011736204, -0.016147397, -0.020841878, -0.008707724, 0.0050823158, 0.013732707, -0.008822387, -0.018764436, 0.007959034, -0.018953294, -0.0045292303, 0.01951987, -0.0029357371, 0.002156696, -0.027708232, -8.8369314E-5, -0.0041177887, -0.01831927, -0.011722714, -0.021314025, 3.9500082E-4, 0.01835974, 0.014366732, 6.112606E-5, -0.023566836, 0.029731715, -0.00518349, 0.0022477529, -0.02550938, -0.0068225116, -0.029057221, 0.01567525, 0.03531653, 0.0026473908, 0.0073384997, -0.018184371, -0.0061446447, 0.014299283, 0.016754443, -0.022730462, -0.013314521, -0.018184371, 0.0034534116, 0.0017924691, -0.0013295972, -0.0061446447, -0.023944553, -0.012707476, 0.0340215, 0.008444671, 0.020302283, -0.008687489, -0.0046067974, -0.029812654, 0.024983274, -0.009510372, 0.012012746, 0.015027736, -0.0015058089, -0.023755694, -0.024807906, 0.024929315, -0.0021246576, 0.0026440183, 0.007790411, -0.011749693, -0.011344997, -0.012478148, -0.0077297064, -0.011135903, 0.031215603, -0.029434938, -0.008215343, -0.004637149, -0.014407202, -0.040793426, -0.009496882, -0.0014830447, -0.0023168884, 0.011675499, -0.026210854, 0.0053318786, 0.0017536855, -0.007938799, 0.040982284, 0.016066458, 0.0292191, 0.021597313, 0.004593307, -0.015149145, -0.021084696, 0.0011820515, 0.0067011025, 0.0040739467, 0.02913816, 0.0032662393, -0.013442675, -0.01831927, -0.012093686, 0.0037839138, -0.027627293, 0.013058213, 0.030783927, 0.024632538, -0.025806159, -0.0039896346, 0.0027182125, 0.0050789434, -0.018454168, -0.0021381474, 0.0091124205, -0.029623797, -0.015432433, 0.055362504, -0.008984266, 0.006003001, 0.024956295, 0.004492133, 0.021948049, -9.2152803E-4, 0.010441174, -0.023364488, -0.0053318786, 0.031026745, -0.0052644294, -0.0052576843, 0.027573334, 0.011203353, -0.023391468, -0.013638278, 0.022838382, 0.025320522, -0.007979269, -0.008505375, -0.008815642, -0.013678747, -0.02309469, -0.041521877, -0.016430685, 0.006141272, -0.0022730464, -0.008640274, 0.02687186, -0.016390216, -0.033670764, -0.021502884, -0.006927058, -0.0013987329, -0.026251324, -0.0048024007, 0.001964465, -0.010731207, 0.0011887965, -0.013908076, 0.008734703, -0.0071698762, 0.008330006, -0.031917077, 0.011014494, 0.02200201, -0.036368743, 0.0039390475, 0.0017005692, -0.007055212, -0.038122427, 1.4965346E-5, 0.023796163, -0.020504631, 0.007648767, 0.012390464, -0.024295291, 0.0042223353, -0.010623287, 0.0064447946, 0.021219596, -0.020207854, 0.017482895, 0.01711867, 0.012882845, -0.02546891, -0.0036557599, 0.023404958, -0.0118845925, 7.870507E-4, 0.046998773, -0.028166888, 0.0026878605, -0.013537103, 0.014069954, 0.0016693738, 5.269488E-5, -0.00319879, 0.0018464286, -0.001399576, -0.008107424, -0.0077566863, 0.0044111935, -0.016538603, -0.008910072, -0.00551062, -0.009881344, 4.5001427E-5, 0.023324018, 0.011844123, 0.009388963, -0.004805773, -0.022892341, -0.021421945, -0.00791182, 0.016066458, -0.024996765, -0.0074936333, 0.02420086, 0.03170124, -0.0025293543, -0.0065021263, -0.015364984, 0.0104276845, -0.018912824, 0.0012393836, 6.85455E-4, 0.01459606, 0.0024585323, 0.03380566, -0.017172629, 0.02792407, 0.016336257, 0.03779867, -0.0045089955, 0.011129159, 0.004013242, 0.0057365755, 0.020207854, -0.012538852, -0.036746457, -0.037906587, 0.029812654, 0.026939308, 0.0016154143, 0.0124106975, 0.0032156524, 6.3528947E-4, 0.007014742, -0.020801408, -8.793721E-4, 0.011149393, 0.030702988, -0.025522871, -0.02200201, -0.0028817775, 0.027681252, 0.005979393, -0.010103927, -0.010616543, -0.00486985, 0.008991011, -0.03029829, -0.029974533, -0.007999504, 0.010198357, 0.012997508, 0.003154948, -0.007864606, 0.017860614, 0.004525858, -0.026102936, 0.009591311, 0.022824893, -0.043356504, -0.010286041, -0.004805773, -0.008478396, -0.022460666, -0.010265806, 0.044246837, 0.01338197, -0.005375721, 7.9000165E-4, 0.0061783693, -0.03043319, 0.03523559, 0.014326262, -0.024605557, -0.024484148, 0.0078848405, 0.014015995, -0.013604553, 0.017604304, -0.019843627, -0.043599322, -5.986138E-4, -0.015284045, -0.019681748, -0.029488897, -7.314049E-4, 0.0052307043, 0.026264815, 0.028787423, 0.19468608, -7.225522E-4, -0.010704227, 0.058815915, 0.003662505, 0.017968532, -0.0035377233, -0.004893457, 0.009523862, 0.022541605, 0.005746693, 0.022433685, -0.026102936, -0.0050654532, 0.018481148, -0.006013118, -0.04505623, -0.033158146, -0.004286412, -0.007682492, -0.030163392, -0.011945297, 0.009631781, -0.014272302, 0.0021364612, -0.019965036, -0.010603053, -0.0013194798, 0.018643027, 0.023445427, 0.0022308903, -0.016511625, 0.0092877885, 0.011783418, -0.03029829, -0.012255564, 0.013489889, -0.014042974, 0.00919336, 0.014326262, -0.008532355, 0.007426184, 4.4305855E-4, 0.0056151664, 0.0084986305, 0.022636034, -0.036962297, -0.009308023, 0.0107446965, 0.015216595, -0.018548597, -0.007048467, -9.586252E-4, 0.04384214, 0.014461162, -0.015257064, -2.573618E-4, -0.032159895, -0.020072956, -0.0143397525, -0.011479896, 0.039633293, -0.007021487, 0.016039478, -0.0024012004, 4.137602E-4, -0.024888845, -0.0012326386, -0.019101683, 0.0062087215, -0.019708728, -0.024686497, -0.030783927, 0.006198604, -0.0098138945, -0.014137404, -0.0038581083, 0.038203366, 0.021260066, 0.042978786, -0.0041110436, 0.005277919, 0.020356243, -0.016120417, -0.011648519, -0.037447933, 0.0069135684, -0.0018464286, 0.016430685, 0.008093934, 0.013017743, -0.03272647, 0.0089033265, 0.01931752, 0.012990763, 0.0029694617, -0.014757939, 0.0076420223, -0.016255317, 0.0014552218, -0.034291297, 0.05735901, 0.008222087, 0.0084986305, -0.04270899, -0.01590458, 0.00791182, 0.05471499, 0.014771429, -0.038257327, -0.012532107, -0.026170384, 0.009530607, -0.012086941, 0.008970777, 0.008559335, -0.01096728, -0.01216788, -0.0017992139, -0.008019739, 8.039131E-4, -0.021624293, 0.02549589, -0.026237834, -5.4760516E-4, -0.009625036, -0.027290046, 0.030810907, 6.2348583E-4, -0.039633293, -0.009530607, -0.0011331507, 0.024915826, -0.02797803, -0.0030318527, 0.011230333, -1.306833E-5, -0.012700731, -0.0061783693, -0.039552353, -0.01332801, 7.120132E-4, 0.004741696, 0.0050991783, 0.037447933, -0.044678513, -0.0033589825, -0.010596308, -6.6395546E-4, -0.018764436, -0.0242818, 0.0129368035, -0.0046978537, -4.5696998E-4, 0.009213595, 0.012356739, -0.03777169, -0.041899595, 0.0067247096, 0.017833633, -0.029380979, 0.011648519, 0.012302779, 0.002677743, -0.022258317, 0.015108676, -0.17029636, 0.012700731, 0.008289536, -0.02316214, 0.013786667, -0.018049471, 0.009544097, -0.002756996, 0.007176621, 0.017334508, 0.018116921, 0.0040402217, -0.010771677, -3.437814E-4, -0.0062087215, 0.0019678376, -0.002320261, 0.005490385, 0.035802167, -0.0034669016, 0.03156634, -0.012390464, 0.015189615, 0.02293281, -0.0104816435, 0.019776177, -0.015257064, 0.014717469, 0.012559087, -0.016646523, -0.014933308, -0.02420086, 0.0026018624, -0.011938551, 0.028760444, -0.005561207, -0.0056084213, 0.009206849, -0.004691109, 0.037259072, 0.0014214971, 0.030649029, 0.004421311, 0.009422688, -0.0038918331, -0.006613418, -0.0021111676, -0.023688246, 0.010724462, -0.007628532, 0.045353007, -0.03631478, -0.016956791, -0.0019273679, 0.015445923, 0.003790659, -0.0052239597, 0.01096728, 0.014933308, -0.0036658773, -0.021435434, -0.005777045, 0.0050958055, -0.024443679, -0.013921565, -0.014204853, -0.014110424, 0.02679092, 0.0042459425, 0.009942048, 0.0057601826, 0.009786914, -0.0073452448, 0.03310419, 0.017833633, 0.003077381, -0.017509876, -0.012882845, 0.028301787, -0.004397704, -0.015176125, 0.03995705, -0.029839635, 0.0026086073, -0.0059524137, -0.01210043, -0.026399713, 0.0019442303, 0.002042032, 0.010110672, 0.008775173, -0.014501631, -5.7121248E-5, 0.009220339, -0.0076420223, 0.011688989, 0.0066100457, -0.011898082, 0.0038682257, -0.016956791, 0.0061378996, 8.53657E-4, -0.038446184, 0.0150951855, 0.008910072, 0.011459661, 0.02197503, 0.024646027, -0.0042493152, -0.030541109, 0.021651272, 0.01724008, 0.029785676, 0.016498134, -0.0011989139, 0.015338004, 0.01276818, -0.029947555, 0.009840874, -0.021138657, 0.023324018, -0.018602557, -0.022366237, 0.014461162, -0.020909328, -0.02556334, -0.06750341, -0.0101309065, 0.02560381, 0.029353999, -0.022986772, 0.0015462786, -0.006195232, 0.052664526, -0.0077229617, 0.023472408, 0.007702727, -0.011311272, -0.0016322766, 0.016511625, 0.03564029, 0.0022528116, 0.01826531, -0.03658458, -0.009840874, 0.022150397, -1.13293994E-4, -0.024888845, -0.034938812, 0.0028160145, -0.029003263, -0.022082949, -0.03547841, 0.015999008, 0.011722714, 0.0042999024, 0.009921813, -0.0052307043, 0.0012663633, -0.0013692237, -0.025522871, -0.001071603, -0.017928062, -0.007959034, 0.025833137, -0.045811664, 0.0011441113, 0.010447919, 0.026345754, -0.020113425, -0.018400209, -0.02297328, 8.615613E-5, 0.0049743964, -0.0035242336, -0.023310529, -0.0073857144, 0.00426955, -0.0016255316, 0.0024180626, 0.030999765, -0.0039053229, 0.004326882, -0.015688742, -0.020990267, 0.0053116437, 0.016039478, 0.013651768, -0.023742205, 0.019627789, -9.813894E-4, -0.00847165, -0.008410946, 0.014299283, -5.197823E-4, -0.009577821, 0.011574325, 0.013543849, -4.6076401E-4, 0.026278304, -0.02073396, 0.0056590084, 0.00728454, -0.008822387, 0.0118845925, -0.0060400977, -0.015958538, -0.0340215, -0.0075003784, -0.023512878, 0.029731715, 0.0104276845, 0.019924566, 0.00486985, 0.025172133, -0.05822236, 0.0012655202, 0.023931064, 0.01939846, -0.0075003784, -0.02803199, 0.008761683, 0.0011339939, 0.0027974658, 0.006549341, -0.0012435991, -0.03547841, -0.026494142, -0.08369127, 0.033913583, 0.03771773, -0.020491142, -0.01593156, 0.017874103, 0.008181618, 0.012174625, -0.0041886107, -0.00574332, -0.0121409, -0.013948546, -0.02797803, -0.02916514, -0.0023101436, -0.033589825, 0.0015192988, 0.0019846999, 0.00789833, 0.020315774, -0.017955042, 0.025118174, -0.0065324786, 0.012734455, 0.008593059, 0.0086739985, 2.3164669E-4, 0.015999008, 0.008228832, -7.1369944E-4, 0.009638526, -0.02305422, -0.0044685258, 0.026021997, -0.004613542, -0.01280865, 2.1257115E-4, 0.009618291, -0.014312772, -0.04980467, -0.009935304, 0.0025141782, 0.004148141, -0.032078955, -0.012107176, -0.0072373254, 0.003227456, 0.0029627169, 0.009119165, 0.015189615, 0.008336752, 0.01597203, 0.0013253816, -0.056495655, 0.004940672, 0.013685493, 0.005325134, -0.0018767809, 0.002999814, 0.016120417, 0.038581084, 0.028355747, 0.02449764, -0.04373422, 0.025806159, 0.024511129, -0.019209603, -0.0020875602, 0.017388467, -0.0127614355, -0.0052644294, -0.010623287, 0.034992773, 0.015648272, 0.023863614, -0.02426831, -0.008377221, 0.016498134, -0.018764436, 0.034372237, 0.014973777, -0.0045393477, -0.031377483, 0.002743506, 8.0602086E-4, -0.012660261, -0.03048715, 0.013604553, -0.022109928, 0.008377221, -0.049588833, 0.007749941, -0.03685438, -0.013537103, 0.03887786, 0.022878852, -0.022892341, -0.018481148, 0.0047383234, 0.0013818705, -0.004748441, 0.010879596, 0.0060670776, 0.008862857, -0.008039974, 0.01211392, -0.002185362, -0.026683, -0.0021735583, 0.031053726, 0.019331012, -0.015526863, -0.0056724986, 0.025900587, -0.03510069, 0.017631285, 3.4125205E-4, -0.020936308, -0.01570223, 0.015122166, -0.0022663013, 0.022757443, -0.013186366, -3.7919235E-4, 0.016120417, 0.01597203, -0.009011246, -0.017833633, 0.016187867, 0.01155409, 0.0014383594, 0.018602557, -0.012161135, -0.018022493, 0.0061615068, -0.013348245, 0.0013616356, -0.007034977, 0.01340895, 0.08660509, 0.0076217875, -0.009604801, -0.0027974658, -0.010576073, 0.017806653, 0.012606301, 0.007210346, -0.023512878, -0.03793357, 0.004100926, 0.00908544, 0.004286412, 0.006003001, -0.047592327, -0.0013523614, 0.017725714, -0.01709169, -0.008734703, -0.0068225116, 0.01838672, -0.0016609426, -0.003713092, 0.007669002, 0.006306523, 0.012903079, 0.038689002, -0.017253568, -0.003662505, -0.01825182, 0.018845376, 0.016282296, -0.023593817, -0.022824893, 0.019911077, -0.0035579582, -0.035073712, 0.0013734393, -0.0026878605, -8.7852904E-4, 0.0038547358, 0.01703773, -0.013854116, -0.01091332, 0.022770932, 0.013125662, -0.021799661, -0.034722976, -0.022285298 ], - "id" : "3573572b-278b-422f-979e-206282059909", - "metadata" : { - "name" : "Frozgo ChillMax 32oz Insulated Water Bottle" - }, - "text" : "price: 27.99\nname: Frozgo ChillMax 32oz Insulated Water Bottle\nshortDescription: \ndescription: ## Overview\nThe Frozgo ChillMax is a high-performance insulated water bottle designed to keep your water refreshingly cold for extended periods of time. With its generous 32-ounce capacity, you can carry more chilled water to stay hydrated during long rides. The innovative design features a durable screw cap and a no-drop grip ring for enhanced convenience and ease of use.\n\n## Product Details\n- Premium insulated water bottle that ensures long-lasting coldness and leak-free closure\n- Superior insulation technology keeps your water cold twice as long as traditional bottles\n- Screw cap design for secure closure and easy access to hydration\n- No-drop grip ring provides a firm and confident grip, even when wet\n- Designed to fit most standard bottle cages with secure retention\n- Optimized for use with side-load cages for effortless bottle entry and removal\n- Made from high-quality materials that are BPA-free and phthalate-free for your peace of mind\n\n## Features\n1. Enhanced Cooling Performance: The ChillMax is designed to provide superior insulation, keeping your water colder for longer on those scorching hot rides.\n2. Durable Graphics: The bottle graphics are scratch-resistant and fade-resistant, ensuring they look vibrant and fresh mile after mile.\n3. Leak-Proof Design: The screw cap with a secure thread-on closure and easy-open mechanism prevents leaks, so you can focus on your ride without worrying about spills.\n4. Dishwasher Safe: The bottle and cap are dishwasher safe, making cleaning a breeze.\n5. Easy to Hold: The no-drop grip ring offers a textured surface that provides a firm and confident hold, even when your hands are sweaty.\n6. Convenient Size: With its generous 32-ounce capacity, the ChillMax allows you to carry more cold water, reducing the need for frequent refills.\n7. Versatile Compatibility: The bottle is designed to fit most standard bottle cages, ensuring a secure fit during your rides.\n\n## Specifications\n- Size: 32oz (946ml)\n- Insulated: Yes\n- Type: Screw Cap\n- Tethered cap: No\n- Bottle height: 9.5\" (24cm)\n- Weight: 165g\ntags: [bottle]" - }, - "c44b963c-81da-435c-a76e-3ffa40870175" : { - "embedding" : [ 0.026423296, -0.006056187, -0.028553989, -0.016366974, -0.009330261, 2.3431676E-4, 7.570234E-4, -0.021279778, 0.013327004, -0.043780975, -0.0047669145, 0.0022511373, -0.022053342, -0.012852009, -0.008393841, 0.006554932, 0.019474797, -0.01666554, 0.010836673, -0.010219179, 0.0033453223, -0.0038542456, -0.01443985, -0.015606981, -0.018687664, -0.009411688, 0.03512249, -0.009242047, 0.003406393, -0.013557716, 0.008773837, 0.011935947, -0.025459735, 9.038689E-5, -0.0038712097, 0.0016370366, 0.020424787, 0.005754226, 0.043808118, 1.4061657E-5, 0.024211178, 0.015294841, -0.0039492445, 0.010320964, -0.008251343, 0.021890488, 0.012505941, 0.008142772, 0.021741202, 0.012295586, -0.012295586, 0.04250527, -0.015416983, 0.009099549, -0.017547674, -0.022541909, -0.0026480975, 0.009954539, 0.025025453, 0.013035222, 0.019040516, 0.009574544, -0.037348185, -0.007145283, -0.03645248, -0.005028162, -0.013279505, -0.013822356, 0.008461698, 0.02415689, 0.007674563, 0.028553989, 0.036533907, 0.0037796036, 0.007579564, -0.026762579, -0.006989213, -0.012207373, 0.021781916, 0.022569051, 0.03276109, -0.0033588936, -4.4318737E-4, -1.8140332E-6, 0.028798273, 0.015647694, -0.014304137, -1.44513E-4, -0.023098331, 0.0060392227, 0.002010247, 0.010945244, 0.003211306, 0.026274012, 0.02213477, 0.00859741, -0.029965403, 0.008529554, -0.002802471, -0.020696213, 0.02635544, 0.0030535397, -0.023804039, -0.020071935, -0.04185385, -0.0072131394, -0.00859741, -0.0039967443, 0.00990704, 0.003905138, -0.016190546, 0.02719686, -0.007063855, -0.0019423906, 0.017031966, -0.010578819, 0.029503979, 0.00848884, 0.02772614, -0.023125473, 0.02362761, 0.020628357, 6.7305105E-4, -0.017968385, -0.017235534, 0.006995999, -0.011827377, -0.012458442, 0.023546183, -0.018429808, -0.017167678, 0.0017201607, 0.011067385, -5.810207E-4, -0.028309707, 0.0034267502, -0.01280451, 0.0060697584, -0.026477583, -0.034688212, 0.015362698, 0.011053814, 0.0019135516, -0.0016327956, -0.013788428, -0.0016828397, -0.011060599, 0.024699744, 0.026939007, 0.0068840357, 0.030535396, -0.0044479896, 0.010029182, 0.027983995, 0.01803624, 0.005693155, -0.012139517, 0.014846989, -0.017886957, -0.0073827803, 0.0096424, -0.003136664, -0.003504785, -0.015213413, 0.022202626, 0.026762579, 0.0028516669, -0.009588115, -4.1710504E-4, -0.03381965, -0.0029653264, 0.026925435, -0.03615391, 0.014874131, -0.0067110015, 0.0065481463, 0.022161912, -0.0020373894, -0.015362698, -0.0046651303, 0.04079529, -0.0070570693, 0.009418474, 0.016000548, -0.010110609, 0.003562463, 0.0053640516, -0.030535396, 0.02328833, -0.0029330945, 0.005635477, 0.008210629, 0.0034318394, -0.0029415765, -0.5893196, -0.020017648, -0.020329788, -0.012872366, -0.014222709, 0.02602973, 0.008916336, 0.016909825, 7.0867565E-4, 0.005618513, -0.027319001, 0.022474052, 8.7195524E-4, -0.009370974, -0.032001097, -0.037158184, 0.025500448, -0.006782251, 0.010042753, -0.009126691, -0.0063649337, 0.0026514903, -0.04090386, -0.004169778, 0.0041595995, -0.0107213175, 0.0031468424, 0.007993489, -0.004173171, 0.025134025, -0.0110131, 0.047770932, 0.030481111, -0.017330535, 0.036018196, -0.04752665, 0.011135241, 0.025989015, 0.01306915, 0.039601017, -0.007314924, 9.338742E-4, -0.0072606388, -0.0070570693, 0.003732104, 0.0149962725, 0.03205538, -0.021456206, -0.008251343, -0.027902568, 0.007660992, 0.014181996, 0.016149832, -0.0017693567, -0.0033877327, -0.0066974303, 0.034416784, -0.005296195, -0.0020085506, 0.008495626, 0.022596193, 0.016841969, -0.01655697, -0.013788428, -0.023885466, 0.031702526, -0.035149634, -0.03607248, 0.01386307, -0.008943479, 0.009052048, 0.008929907, 0.0025683662, 0.036371052, 0.021144066, 0.035773914, 0.027644712, -0.006833143, -9.1945473E-4, 0.029992545, 0.01959694, 0.009330261, -0.012736653, -0.038949594, 0.03607248, -0.004838164, -0.0014309227, 0.0040442436, 0.0028635417, 0.006731359, 0.029775405, 0.005143518, 0.0045362026, -0.004858521, -3.4034243E-4, 0.016570542, 0.0050247693, 0.023464756, -5.462443E-4, -0.01982765, -0.022066914, -0.003194342, 0.015878407, 0.0318111, 0.019732652, -0.013232006, -0.0059577953, -0.027115433, 0.013781643, -0.011325239, -0.009459187, -0.0068060006, -0.02898827, 0.004057815, -0.013645929, -0.01981408, 0.007660992, 0.009357403, 0.01792767, -0.032706805, 0.015349126, -0.01814481, 0.022039771, -0.021429064, -0.0093845455, 0.0077220625, 0.021049067, -0.0074981363, -0.017981956, -0.016611256, 0.023220472, 0.015159128, 0.040931, -0.006989213, 0.004444597, 0.009398117, 0.004359776, 0.011365953, -0.001465699, -0.01581055, -0.044540964, 0.0018745341, -0.0013410129, -0.04152814, -0.013211648, -0.018076954, -0.0086109815, 3.706658E-4, -0.01708625, -0.017004823, -0.025704019, -0.020696213, -0.019990506, -4.062904E-4, -0.018117668, -0.030969677, -0.010361678, -0.0076542064, -0.017764816, -0.0023970287, 0.026518296, 0.011644165, -0.011745949, 0.010673817, -0.0041629924, 0.011447381, 0.009866326, 0.038216747, -0.02560902, -0.03371108, -0.008237772, 0.001209541, -0.0086449105, 0.031105392, -0.0146434195, 0.0057576187, -0.016407687, -0.017886957, 0.010504177, -0.011345596, -8.391933E-5, 0.0232069, -0.051842317, 0.017737674, 0.025161168, -8.074916E-4, 0.0130080795, 0.0075524217, -0.0140462825, 0.0033758578, -0.0102123935, 0.011969876, -0.01803624, 0.013849499, -0.029992545, -0.0107213175, 0.02160549, 0.0055710133, 0.014304137, 0.0060120802, 0.022908334, -0.013218434, 0.006989213, -0.0055913706, 0.022813335, -0.021741202, 0.0069213565, -0.011935947, 0.014399136, -0.008739909, 0.0116713075, -0.019624082, -0.003942459, 0.0051129824, -0.0058220825, 0.00400353, -0.018579092, 0.04120243, -0.025649734, -0.016421258, 0.0097373985, 0.022569051, 0.025351165, -0.004685487, 0.015769836, 0.023030475, 0.016380545, 0.03501392, -0.0031570208, -0.015769836, 0.0039322805, 0.026274012, 0.021157637, -0.020628357, 0.02266405, 0.01264844, 0.0154712675, -0.012058089, 0.03772818, 0.006860286, 0.031838242, 0.023776896, 0.01317772, -0.027631141, 0.006748323, 0.007945989, 0.0028431846, 0.014059854, 0.036371052, 0.019719081, -0.0343625, 0.0022273876, 0.018104097, -0.005126554, 0.014575562, -0.0024106, -0.0011823984, 0.010022396, -0.0081699155, -0.012254872, 5.886546E-4, 0.020044792, 0.047146652, 0.014819846, 0.005045126, -0.017018395, -0.011175956, -0.0127095105, 0.0017277945, -0.029422551, 0.0054522646, -0.009886683, 0.011264169, -0.011264169, 0.020709785, 3.777165E-5, 0.008733124, -0.006157972, 0.013822356, 0.03067111, 0.0042172777, -0.03512249, 0.00928276, 0.022609765, -0.006388684, -0.01486056, -0.00769492, -0.006046009, 4.3337997E-5, 0.046739515, -0.006015473, 0.029178267, 0.016041262, 0.0012307462, -0.030508254, -0.019216944, 0.042749554, -0.0061444, 0.0070027844, -0.021537634, 0.0068704644, -0.012472013, -0.008102058, -0.012472013, 0.016285544, -0.007884918, -0.0034844282, -0.00996811, 0.028689701, 0.006453147, 0.0032062167, -0.040659577, -0.017642673, -0.0108977435, -0.016299115, 0.013883427, 0.005947617, -0.013578073, 0.0096424, 0.0023020296, -0.016624827, -0.01143381, -0.010395606, -0.0031417531, 0.052792307, 0.025134025, -0.00838027, 0.01676054, -0.018280525, -0.005387801, -0.015213413, -0.006632967, 0.008061345, 0.026952578, 0.01264844, 0.011311668, -0.011997018, -0.014901274, -0.017791959, -0.027115433, 0.0129741505, -0.012723082, 0.022786193, -0.014032711, -0.0022172092, -0.0037015686, -0.013340576, 0.015064129, 0.027074719, -0.012505941, 0.030128257, 0.020750498, 0.021537634, -0.022989761, -0.004624416, -6.9637666E-4, 0.03341251, -0.011318454, -0.03669676, 0.009832398, 0.014534849, 8.8043726E-4, 0.006761894, 0.011684879, -0.016176974, 0.011508452, 0.021741202, -0.0036099625, 0.013408432, -0.010103824, -0.0010212394, -0.0010466855, 0.009540615, -0.020994782, 0.023030475, 0.014575562, -0.017778387, -0.0023003332, -0.020329788, 0.0018711413, -0.007620278, -0.040958144, -0.025663305, -0.030942535, 0.010341321, -0.022066914, 0.015240556, 0.005313159, -8.912784E-6, -3.4378827E-5, -0.0010746763, -0.008359913, 2.1109714E-4, -0.010795959, -0.027576856, 9.898557E-4, -0.023044046, 0.024374032, -0.006700823, 0.0066974303, 0.011644165, -0.021320492, 0.012947008, 0.027454715, -0.020601215, -0.0017608745, 0.010178465, -0.0086109815, 9.70135E-5, -0.011834162, 0.01707268, -4.8771815E-4, 0.020302646, -0.0046040593, 0.016882682, -0.024116177, 0.014317708, -0.0025768483, -0.019909078, -0.0054183365, 0.02403475, 0.008719552, 0.00743028, -0.0059917234, 2.4407113E-4, -0.028119707, 0.0034844282, 0.0134491455, 0.03023683, -0.0054013724, 0.00590351, -0.0077220625, 0.019257657, -0.025799017, -0.0030077365, 0.012628083, -0.028581131, 0.0056863693, -0.028472561, 0.013340576, 0.007789919, 0.0027990781, -0.021483349, 0.002827917, 7.0316234E-4, -0.051950887, 0.02415689, 0.0018626592, -0.004875485, 0.028309707, -0.0054013724, -0.013062364, 7.4005924E-4, 0.022650478, 0.041148145, 0.019569797, 0.002303726, 0.008821337, -0.018280525, -0.023641182, -0.007063855, -0.0020967638, 0.0192848, -0.02666758, -0.019678367, 0.012241301, 3.6557656E-4, 0.020302646, -0.0062801135, -0.014561991, -0.02898827, 0.001647215, 0.014399136, 0.03998101, -0.010015611, -0.008583839, -0.02456403, -0.04068672, -0.0020441753, -0.017303392, -0.0070367125, -0.009669542, 0.018307667, 0.046250947, 0.012838438, -0.0072470675, 0.01275701, 0.020926924, 0.010985957, -0.0058390466, -0.022419767, -0.010823102, -0.026599724, 5.725387E-5, 0.035176776, 0.001543734, 0.0021391741, -0.03077968, -0.028933985, 0.031349674, -0.004671916, -0.010287036, -0.010612747, -0.038108174, 0.010938458, -0.027332572, 0.0031858596, 0.002597205, -0.05754226, -0.018891232, 0.038433887, 5.555746E-4, 0.033765364, 0.029775405, -0.0077220625, -0.015579838, 0.03805389, 0.020614786, 0.018782662, 0.023003332, -0.025120454, -0.013408432, -0.03764675, 0.022161912, -0.015837692, 0.014141281, -1.7123148E-4, -0.004607452, 0.0075931353, 0.009940968, 0.0066804662, -0.025025453, 0.004889056, 0.0047635217, -0.01780553, -0.026681151, -0.016380545, -0.04060529, -0.018850518, 4.0342773E-5, -0.028092565, 0.010633104, -0.025568306, 0.0024784564, 0.017534103, -0.011108099, 0.012363443, 0.005394587, 0.038651027, 0.035366774, -0.0041087074, 0.006476897, -0.039438162, -0.002960237, -0.006731359, 0.032218236, 0.018945517, -0.0116713075, -0.013618787, 0.0077424194, -0.012872366, 0.007681349, -0.006208864, 0.0013902087, 0.012485584, 0.02171406, -0.0046651303, -0.014426279, 0.0016836879, 0.003314787, -0.011189527, 0.010144537, 0.014399136, -2.1321765E-4, 0.009988467, 0.03224538, -0.025351165, 0.013910569, -0.006670288, -0.023994036, 0.0038271032, -0.01981408, -0.021632632, -0.0070842123, -9.711953E-4, 0.055913705, 0.0031824668, 0.015919121, 0.036941044, -0.018361952, -0.02096764, -0.01180702, 0.016271973, 0.023804039, -0.02035693, 1.7441226E-4, 0.0034521963, -0.010253108, -0.014100567, -0.030915393, -0.017751245, -0.009730613, -0.0052690525, -0.014629848, -0.004902628, 0.0035658558, -0.013001293, -0.0042579914, -0.011101313, -0.01803624, -0.016475543, -0.010850244, 0.0048788777, -0.042668127, -0.01412771, -0.02182263, 0.022419767, -0.003331751, 0.010673817, -1.205512E-4, -0.011080956, 0.045138102, -0.03118682, -0.0016489114, 0.019067658, 0.018185526, -4.5506223E-4, 0.020261932, 0.012112374, -0.0099477535, 0.019366227, -0.0014377083, -0.022365483, -0.027156146, -0.009608472, -0.020859068, 0.0056626196, -0.01160345, 0.007104569, -9.0588344E-4, 0.0060494016, -0.014901274, -0.029639691, 0.012404157, 0.010985957, 0.0054319077, 0.006646538, -0.024360461, 0.0190948, -0.02087264, -0.0011153902, -0.014141281, -0.01623126, -0.0021544418, -0.0061545786, 0.015484839, -0.022080485, 0.021809058, -0.03846103, 0.0033639828, -0.03900388, 0.015511981, -0.0019542654, 0.017208392, 0.01750696, 0.0019661402, -0.010768817, 0.019841222, -0.019854793, -0.017778387, 0.0107213175, -0.002810953, -0.0054794075, -0.022189055, 0.006439576, 0.031105392, 0.011318454, -0.03618105, 0.005577799, 0.0020085506, -0.07154783, -0.013951284, -0.010714532, 0.02666758, 0.025310451, -4.3300889E-4, -0.0013410129, -0.0026277406, 0.021008354, 0.045708098, -0.010273465, 0.005832261, -0.010097038, 0.02708829, 0.007219925, 0.003732104, -0.059116527, -0.024509745, 0.02244691, 0.022216197, 0.012906294, 0.008638125, -0.0073420666, 0.010117395, 0.006653324, -0.023301901, 0.023016904, 0.015837692, 0.0024665815, -0.036533907, -0.011596665, -0.011528809, 0.003521749, 0.003599784, -0.019135516, 0.0028838986, 0.0013477985, 5.5260584E-4, -0.013503431, 0.011026671, -0.011481309, -0.003314787, 0.018117668, -0.008794194, -0.011053814, 0.029992545, 0.013876641, -0.04060529, -0.0015089575, 0.023220472, -0.02267762, -0.004183349, 0.0011781574, -0.04891092, -0.02096764, -0.00979847, 0.025446163, 0.0037558537, -0.006361541, -0.0018592664, 0.008264914, -0.032706805, 0.030399684, 0.017696958, -0.0440524, -0.050458048, 0.02350547, 4.2283043E-4, 0.025486877, 0.00970347, 0.0066261813, -0.033575363, 0.029693978, -0.014765561, -0.014480564, -0.036968186, 0.03077968, 0.025147596, 4.851735E-4, -0.0021527454, 0.19303799, 0.014195567, 0.010002038, 0.037538182, 0.019624082, 0.01169845, 0.0010729799, 0.020804783, -0.0042715627, -0.017140536, 0.006975642, 0.020044792, -0.013530574, -0.005984938, 0.025052596, -0.0031281817, -0.049589485, -0.026925435, 0.016204117, -0.0044242395, 0.006171543, 0.005184232, -0.025364736, -0.044839535, -0.0076677776, 0.0015199842, -0.027020434, -0.02328833, 0.019719081, 0.0086449105, -0.025201881, -0.011929162, 0.01718125, 0.0069383206, -0.023776896, 0.00806813, 0.0046787015, 0.020831926, -0.00996811, 0.032191094, 0.002134085, 0.009031692, -0.014819846, 0.0028822022, -0.0019389977, 0.0026107763, -0.035638202, 0.010097038, -0.0108977435, -0.017656244, -0.03998101, -0.022039771, 0.0056829765, 0.025174739, -0.01727625, -0.025269737, 0.008074916, 2.699414E-4, 0.011779877, -0.004383526, -0.022270482, 0.03761961, -0.009974896, 0.034742497, -0.012675582, 0.015335555, -0.020926924, -0.013964855, 0.02171406, 0.022161912, -0.030698253, -0.009669542, 0.0034046967, -0.007830633, -0.0067686797, -0.023003332, 0.027142575, -0.013394861, 0.008251343, 0.031159677, 0.026993291, -0.015661266, 0.00769492, -6.727329E-5, 0.005068876, -0.03311394, 0.01275701, 0.0018796233, 0.009445616, -0.009031692, 0.0028092565, 0.0023715824, -0.002992469, -0.018511236, -0.008868837, -0.003908531, -0.006860286, 0.014249852, -0.024292605, -0.007945989, -0.023071188, 0.06785644, -0.0055676205, -0.014100567, -0.03702247, -0.005964581, -0.0019593546, 0.027169717, 0.0057474403, -0.039709587, 0.011718807, -0.05048519, -0.0014835114, -0.009031692, 0.01043632, 1.13553506E-4, 0.0011442292, -0.00875348, 6.539664E-4, 3.0111294E-4, 0.024469031, -0.022039771, -0.0053199446, -0.011515237, 0.0069552846, -0.0127095105, -0.027536143, 0.01875552, -0.012173445, -0.021266207, 0.019624082, 0.028635416, 0.009133477, -0.015457696, -0.0025106883, -0.010755246, 0.012831653, -0.02993826, 0.013761286, 0.013673072, -0.0038746025, 0.014249852, -0.0010840066, 0.013103078, 0.0044344184, -0.051923744, 0.014399136, -0.004610845, -0.01582412, -0.021347634, -0.02308476, -0.0018456951, -4.2134608E-4, -0.023736183, 0.018321238, 0.0031960383, -0.0190948, -0.008183487, -3.649404E-4, -0.0014512795, -0.036398195, -0.024740458, -0.012553441, 0.011827377, -0.028309707, -0.006402255, -0.1706725, -6.4293976E-4, 0.034091074, 5.98409E-4, 0.015403411, 0.009506687, 0.01549841, -0.005540478, -5.1157393E-5, -0.0017405177, 0.0073420666, 1.14401715E-4, -0.053199448, -0.044133827, 0.023166187, 0.007145283, -0.028282562, 0.010531319, 0.0121463025, -0.0040815645, -0.012309157, -0.04036101, 0.019447654, -0.020818355, 0.0069620707, 0.015444125, -0.007776348, 0.044188112, 0.013014865, -0.0028007745, 0.0018524807, -0.032951087, 0.043998115, -0.01719482, 0.021483349, -0.008475269, -2.4661573E-4, 0.005947617, -0.004363169, 0.038488172, -0.006894214, -0.0093845455, 0.025880445, -0.016109118, 0.013462718, 0.0015717248, -0.010056324, -0.0037253185, -0.010578819, -0.00996811, 0.04975234, -0.011365953, 0.010137752, -0.015362698, 0.04321098, -0.011257383, 0.0033334475, 0.019216944, 0.016041262, -0.014928416, -0.028825415, -0.02297619, -0.0020747106, -0.014114139, 0.005486193, -0.042532414, -0.0058254753, 0.015267698, -0.03846103, 0.0054828003, -0.018701235, 0.0012655226, 0.021062639, 0.014602705, 0.004098529, -0.0032214844, -0.02266405, -0.008244557, 0.024672601, -0.0010992743, -0.010938458, 0.031838242, -0.016176974, 0.0057033338, -0.006470111, -0.010429534, 0.006130829, 0.008970621, 0.00437674, -0.013170934, -0.009140262, -0.028635416, -0.016611256, 0.008651696, -0.016312687, 0.006616003, -1.6190122E-4, -0.007633849, 0.0078034904, -0.008149558, -0.01043632, -0.004383526, -0.013109864, -2.7715115E-4, 0.060039375, 0.025975443, 0.015864834, 0.03023683, 0.020099077, 0.017452676, -0.019556224, 0.025364736, 0.03371108, 0.0398453, 0.0075592073, 0.0070842123, -0.031593956, -0.023885466, 0.030345399, 0.01655697, 0.029422551, -0.029449694, -0.02877113, 5.424274E-4, -0.020261932, -0.033358224, -0.0647079, -0.02350547, 0.03542106, -0.0049263774, -0.017900528, -0.0012358354, -0.0015530642, 0.016529828, -0.008712767, 0.028201135, -0.010558462, -0.01665197, -0.0017176161, 0.005214767, 0.045083817, -0.0064633256, 0.02076407, 0.015281269, -0.016095547, 0.025161168, -0.022501195, -0.03238109, -0.013564502, -0.0018456951, -0.023274759, -0.013259148, -0.024536887, 0.022596193, 0.03490535, -0.0014181995, -0.0071181403, -0.023464756, 0.0074234945, 8.2700036E-4, -0.0018745341, 0.0045633456, -0.01571555, -0.015484839, -0.0010161501, -0.0343625, -0.004444597, -0.015919121, 0.016163403, -0.0059883306, -0.020031221, -0.021999057, 0.011752735, 0.02297619, 0.009079191, -0.020533359, -0.008346342, -0.0017218571, 0.0041562067, -0.017154107, 0.01718125, -0.014249852, 0.020180505, -0.007979917, -0.0052860165, 0.019990506, 0.011983447, 0.010795959, -0.020438358, 0.01898623, 0.0027804174, -0.016597684, 0.011555951, 0.013198077, 0.021279778, -0.006975642, -0.0206555, 0.014480564, -0.0027074718, 0.012689154, -0.029883975, 0.0064667184, -0.0016998037, -0.025161168, 0.028065423, 0.00901812, -0.033141084, -0.0055676205, 0.0050078053, -0.025242595, 0.002125603, 0.025961872, 0.018796233, -0.018769091, 0.028716844, -0.055072285, 0.030101115, 0.032109667, 0.036099624, 0.009757755, -0.0075252787, -0.012302372, -0.009024906, 0.032706805, 0.010110609, 0.0011790056, -0.03805389, -0.033168226, -0.090384774, 0.029449694, 0.0072267107, -0.02023479, 0.0085227685, 0.029666834, 0.01643483, -0.015064129, 0.016109118, 0.020438358, 0.009187762, -0.016896253, -0.0018677484, 0.0070027844, -0.013496646, -0.009133477, 0.017357677, -0.019189801, 0.022826906, 0.016475543, 0.013679857, 0.0028126494, -0.005082447, 0.023668325, -0.030833965, 0.0032621983, -0.012607726, 0.017588388, 0.008604196, -0.006195293, 0.041799564, -0.024319747, -0.019800508, 0.047065224, -0.012139517, -4.4504282E-5, -8.7110704E-4, 0.0031061284, -0.016041262, -0.012682368, -0.018212669, -0.015579838, -0.014290566, -0.0118477335, -0.003603177, 0.011929162, 0.018009098, 0.015416983, -0.0011264168, 0.019420512, -0.0034114823, 0.014141281, -0.0027159539, -0.038515314, -0.0023427436, -0.020139791, 0.005184232, -0.011610236, 0.013517003, 0.01038882, 0.04345526, 0.012458442, 0.002934791, -0.006863679, 0.00880098, -0.009988467, -0.016529828, -0.006113865, 0.0028041673, -0.016054833, -0.01249237, -0.030616825, 0.018904803, 0.017819101, -0.0059238668, 0.0047363793, 0.002324083, -0.012587369, -0.038949594, 0.013476289, 0.008739909, -0.024509745, -0.030942535, 0.0052045886, 0.014412708, 0.0018202489, -0.016719826, 0.010042753, -0.010863815, 0.008936693, -0.030263972, 0.01665197, -0.012838438, -0.00632422, 0.0108977435, 0.0040883506, -0.01443985, -0.02456403, 0.017357677, 0.03191967, 0.027780425, 0.013198077, 0.012750224, -0.014249852, 0.009744184, 0.0036710333, -0.020261932, -0.017832672, -0.004302098, -0.010158109, -0.0086109815, -0.0043122764, 0.0051740534, 0.021876916, -0.02244691, 0.02602973, -0.010578819, -0.01581055, -0.029856833, 0.032001097, 0.021266207, 0.011101313, 0.0016641791, -0.0105991755, 0.04467668, 0.004743165, 0.009757755, -0.0030077365, 0.0025191703, -0.013781643, -0.007355638, 0.006761894, 0.0011111492, -0.01727625, -0.011888448, -0.02909684, -0.0092624035, 0.00806813, 0.013042008, 0.097876124, 0.043970972, -0.010049539, -0.0037185329, 0.00917419, 0.007240282, 0.022121198, -0.023844752, -0.028689701, -0.0075252787, 0.026409725, 0.0017506961, -0.007219925, -0.00227828, -0.046142377, 0.032706805, 0.016679112, 0.011786663, -0.011779877, -0.01750696, 0.032299664, -0.0108977435, 0.006995999, -0.010728103, -0.01739839, 0.016801255, 0.029693978, 0.011874877, -0.009269189, -0.04046958, 0.016258402, 0.01264844, -0.03976387, -0.033276796, 0.0018049813, 0.0018694449, -0.027848283, 0.023994036, 0.03962816, -0.019949792, 0.013896998, 0.037999604, -0.0072334963, 0.0013825749, 9.0164243E-4, -0.00227828, -0.024849027, -0.019800508, -0.044432394 ], - "id" : "c44b963c-81da-435c-a76e-3ffa40870175", - "metadata" : { - "name" : "Hyperdrive Turbo X1" - }, - "text" : "price: 1999.99\nname: Hyperdrive Turbo X1\nshortDescription: Hyperdrive Turbo X1 is a high-performance electric bike designed for riders seeking an exhilarating experience on their daily rides. It features a powerful and efficient Hyperdrive Sport drive unit and a sleek, integrated 500Wh battery for extended range. This e-bike is equipped with top-of-the-line components prioritizing comfort and safety, including a suspension seatpost, wide and stable tires, and integrated lights.\ndescription: ## Overview\n\nIt's right for you if...\nYou crave the thrill of an e-bike that can accelerate rapidly, reaching high speeds effortlessly. You value durability and are looking for a bike that is equipped with one of the fastest motors available.\n\nThe tech you get\nA lightweight Hyper Alloy frame with a lowstep geometry, a Hyperdrive Sport (300W, 70Nm) drive unit capable of maintaining speeds up to 30 mph, a long-range 500Wh battery seamlessly integrated into the frame, and an intuitive Hyper Control controller. Additionally, it features a 10-speed Shimano drivetrain, hydraulic disc brakes for reliable stopping power in all weather conditions, a suspension seatpost, wide puncture-resistant tires for enhanced stability, ergonomic grips, a kickstand, lights, and a rack and fenders.\n\nThe final word\nThis bike is designed for riders seeking enjoyment and convenience on longer commutes, recreational rides, and thrilling adventures. With its long-range battery, high-speed motor, user-friendly controller, and smooth-riding suspension seatpost, the Hyperdrive Turbo X1 guarantees an exceptional e-biking experience.\n\n## Features\n\nHyperboost Acceleration\nExperience adrenaline-inducing rides with the powerful Hyperdrive Sport drive unit that enables quick acceleration and effortless cruising through errands, commutes, and joyrides.\n\n## Specs\n\nFrameset\nFrame\tHyper Alloy, Removable Integrated Battery (RIB), seamless welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR\nFork\tHyper Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR\nMax compatible fork travel\t50mm\n\nWheels\nHub front\tFormula DC-20, alloy, 6-bolt, 5x100mm QR\nSkewer front\t132x5mm QR, ThruSkew\nHub rear\tFormula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR\nSkewer rear\t153x5mm bolt-on\nRim\tHyper Connection, double-wall, 32-hole, 20 mm width, Schrader valve\nTire\tHyper E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c\nMax tire size\t700x50mm with or without fenders\n\nDrivetrain\nShifter\tShimano Deore M4100, 10 speed\nRear derailleur\tShimano Deore M5120, long cage\nCrank\tProWheel alloy, 170mm length\nChainring\tFSA, 42T, steel w/guard\nCassette\tShimano Deore M4100, 11-42, 10 speed\nChain\tKMC E10\nPedal\tHyper City pedals\n\nComponents\nSaddle\tHyper Boulevard\nSeatpost\tAlloy, suspension, 31.6mm, 300mm length\n*Handlebar\tSize: XS, S, M\nHyper alloy, 31.8mm, comfort sweep, 620mm width\nSize: L\nHyper alloy, 31.8mm, comfort sweep, 660mm width\nGrips\tHyper Satellite Elite, alloy lock-on\n*Stem\tSize: XS, S" - }, - "d87e0618-bb79-42f0-bd7c-d95a75d83a32" : { - "embedding" : [ 0.027470456, 0.003234673, -0.037805345, -0.013467485, 0.0014391199, 0.001505219, -0.0070081796, -0.029264336, -0.0017093733, -0.028273687, 0.009786015, -0.013594664, -0.004655386, -0.024016568, 0.0025937627, 0.020910747, 0.0096052885, -7.488444E-4, 0.03349468, -0.0023527937, 0.008273266, -0.003547598, -0.011673605, -0.0037417118, -0.017697828, -0.015194429, 0.044900544, 0.010328196, -0.0077243927, -0.016185079, 0.01641266, 0.008407138, -0.03515469, -0.019638967, 0.008079153, -0.0017671054, 0.01721589, -0.011499573, 0.013085951, 0.016586695, -3.162717E-4, 0.007075115, -0.0066065644, 0.0017871861, -2.8008453E-4, 0.033334035, 0.023226727, 0.015033783, -0.0019829734, 0.0026857995, 0.0035409045, 0.034083717, -0.0056326487, -0.008045685, -0.009806097, -0.023066081, -0.012249254, 0.015729915, 0.04222311, -0.0054251477, -0.001701843, 0.009926581, -0.0347263, 0.01476604, -0.01603782, -0.00934424, 0.0028079574, 0.010100614, -0.001773799, 0.05354865, 0.026225451, 0.04607861, 0.005016839, 0.0074097943, 0.0033267098, -0.027764974, -0.004377602, -0.016693791, 0.013454098, -7.2499854E-4, 0.02108478, -0.017001696, 0.0071353577, 0.011526347, 0.012650868, 0.012035059, -0.004123246, 0.03145983, 0.00962537, 0.0042370367, 0.0024280965, 0.0075704404, -0.012704417, 0.013735228, -0.0014198759, -0.017871862, -0.0044177636, 0.002772816, 6.384003E-4, -0.015020396, -0.0012240886, 0.006342168, -0.010703037, -0.013306839, -0.019853162, -0.0063053533, -0.022008495, 4.267158E-4, -0.0013939383, -0.023989795, -0.0059807147, 0.021687202, -0.004109859, 0.010067146, 0.024190603, -0.019987034, 0.05103186, 0.01650637, 0.022195915, -0.026493194, 0.021352524, -0.0020900706, 0.026078193, -0.038367607, -2.305102E-4, 0.018045895, -0.011466105, -0.019130254, 0.017229278, -0.011466105, 0.011124732, -0.014297489, 8.5636E-4, 0.034030166, 0.0032112456, 0.020402035, 0.0014734245, 0.012376431, -0.015529108, -0.026238838, 0.0048930077, 0.0138691, 0.0063187405, 0.0017938798, -0.017671054, -0.014832975, -4.9992686E-4, 0.002916728, -0.023708664, -0.023802375, 0.024016568, -0.011914575, 0.032798547, 0.017550569, 0.015529108, 0.0030740271, -0.02297237, 0.033334035, -0.015435399, 0.0032965888, -0.0011906207, 0.01830025, 0.008239798, 0.0083602825, 0.034458555, 0.00936432, 0.004016149, -0.012530384, -0.023039306, 0.0022122285, -0.010462067, 0.015381849, -0.029906921, 0.008554397, 5.7104614E-4, 0.023427535, 0.0014525071, 8.241472E-4, -0.0108837625, 0.0021703937, -0.0032832015, 0.010013597, 0.012456754, 0.0055791, -0.0049130884, -0.001297718, 0.025917547, -5.656076E-4, 0.006074425, -0.0108837625, 0.04736378, 0.014632168, -0.014498297, -0.0024180561, -0.59203386, -0.039626, -0.0155826565, -0.015127493, -0.0030121114, 0.04037568, 0.0036513484, 0.016707178, -0.022704627, 0.004457925, -0.006583137, 0.024926895, 0.012945386, -0.0217943, -0.033334035, -0.03052273, 0.014980234, -0.006074425, -0.004842806, -0.013788777, -0.028113041, -0.0075637465, -0.015917337, 0.030174663, 0.0022406762, 0.012563852, -0.00666346, -0.011533041, -0.012570545, 0.010629407, -0.036065016, 0.044927318, -0.009471417, 0.0117807025, 0.034324683, -0.061580945, 0.0024515241, 0.034271136, 0.021647042, 0.021098169, -0.013353694, 3.997323E-4, 0.011753929, -0.012068527, -9.998537E-4, 0.0075369724, 0.036198888, -0.011680299, 0.02646642, -0.0367076, 0.0031008015, -0.007369633, 0.028702077, -0.009819483, 0.015395236, -0.038233735, 0.031674027, 1.2644593E-4, 0.027524006, -0.009973436, 5.1038555E-4, 0.026921583, -0.004615224, 4.1646624E-4, -0.018179767, 0.035020817, -0.053280905, -0.025971094, 0.02420399, 0.0012265987, 0.0071688253, 0.020080743, -0.018902672, 0.021754138, 0.0097056925, 0.039786648, 0.033334035, 0.0021536597, 0.004585103, 0.002310959, 0.008300041, 6.8023516E-4, -0.015609431, -0.02741691, 0.035127915, -0.0038421156, 0.014217166, 0.0014692411, 0.016733954, 0.005994102, 0.036118563, 0.014123457, 0.015020396, -0.004170101, -0.011646831, 0.04053633, 0.018835736, 0.024511894, 8.877362E-4, -0.03354823, -0.018929448, 0.011164893, 0.020294938, 0.022236077, 0.043053113, -0.00799883, 0.002535194, -0.010582551, -6.501141E-4, -0.022918822, 0.004635305, -0.018594768, -0.030629827, 0.02293221, -0.009739161, -0.02934466, 0.01967913, 0.022570755, 0.018929448, -0.016077982, 0.02500722, 0.0035676789, 0.032102413, 0.020669779, -0.0070550344, 0.0071554384, 0.021138329, 0.02386931, 0.0041801413, -0.009859645, 0.027443683, 0.013239903, 0.033601776, -0.01603782, 0.021754138, 0.0022641039, 0.0014207126, 0.0033166695, 0.008433912, -0.015247978, -0.03692179, -0.001206518, -0.014177005, -0.040696975, -0.014565232, -0.010575858, -0.017376537, -0.017336376, 0.02835401, -0.011760622, 6.5931777E-4, -0.030683376, -0.00684084, 0.011767316, 1.4610833E-4, -0.021031233, -0.0416073, -0.037939217, -0.0077913282, -0.016492983, 0.00728931, 0.016573306, 2.0980193E-4, -0.016332338, 0.005070388, 0.0077578607, 0.02915724, 0.024444958, -0.004250424, -0.051192507, -0.016800888, 0.013239903, -0.012798127, 0.005803335, -7.7603705E-4, 0.0031175355, -0.018554607, 0.007938587, -0.003043906, -0.02547577, 0.0022205955, 0.019116867, -0.066775165, 0.013815551, 0.035368882, 0.014043133, 0.023882698, -0.0026071498, -0.009183593, 0.029773049, -0.028407559, -0.0072022933, 0.003386952, 0.012885144, 0.002310959, 0.005053654, 0.017322987, -0.0024381368, -0.005960634, 0.025462383, 0.023989795, -0.011613363, 0.025529318, -0.015903948, 0.0139895845, -0.024886735, 0.024177216, -0.011077877, 0.01910348, 0.010662875, 0.01854122, -0.044980865, -0.026627066, 0.0020415422, -0.017430086, -0.0024297698, 0.008346896, 0.04093794, -0.009156819, -0.01882235, -0.020843811, 0.03392307, 0.03400339, 0.004745749, 0.008527623, 0.009350933, 0.011258603, 0.014618781, 0.001289351, -0.027898846, -0.02386931, 0.021071393, 0.0072022933, -0.00889577, 0.014658943, 0.015716529, 0.020308325, -0.024779638, 0.04273182, 0.010147469, 0.0287824, 0.017523795, 0.014632168, -0.022905435, 0.017242664, 0.016064595, 0.026278999, 0.028273687, 0.03967955, 0.029987244, 0.0031309226, 0.021821074, -0.005994102, 0.016265402, 0.010174244, 0.0019210578, 0.010629407, 0.031031443, 2.305102E-4, 0.009966742, 0.009591902, 0.0050235325, 0.019076707, 0.0071152765, 0.020134293, -0.009926581, -0.018701866, -0.0065864837, -0.014364425, -0.008259879, 0.012778047, -0.010823521, -0.0069947923, -0.0041667544, 0.012215786, -0.010716423, 0.029371435, -0.011010941, 0.010482148, 0.04364215, -6.187379E-4, -0.033655327, 0.008132701, 0.029478531, -0.004635305, -0.007784635, 0.011968123, -0.0027192673, 0.0021235386, 0.018715253, 3.7525888E-4, 0.021593492, 0.0013261657, -0.005157404, -0.013353694, -0.006117933, 0.013641519, -0.030442407, 0.0063187405, -0.0037249778, -0.023280276, -0.0061547477, -0.017095406, -0.018327026, 0.035368882, -0.020629616, -0.0037684862, -0.03892987, 0.017724603, 0.009839565, 0.009993517, -0.03534211, -0.009337545, -0.010047065, -0.0023527937, -5.76903E-4, -0.0038889707, -0.039170835, 0.024886735, -0.03419081, -0.030228212, -0.018005732, -0.02184785, -0.011459411, 0.030603053, 0.033521455, -0.011499573, -0.010127388, -0.025422221, -0.017938798, -0.0026088234, -0.01811283, 0.0064659994, 0.013828939, -0.008233105, 0.005348171, -0.002277491, -0.001278474, -0.006472693, -0.013186355, -0.0052678483, -0.031593703, 0.015020396, 0.010401825, -0.02226285, -3.114607E-4, -0.0049264757, 0.016720565, 0.027497232, 0.012717804, 0.023521245, 0.0058401497, 0.0223164, -0.017470246, -0.0060342634, 0.0026355975, 0.009109964, -0.0038320753, -0.022851886, 0.010381744, 0.0050904686, -0.034030166, 0.028916271, 0.003771833, -0.0074097943, 0.011492879, 0.010201017, 0.008038991, -0.0017654321, 0.010388438, 0.0010015271, -3.1731758E-4, -0.00639237, -0.035101138, 0.014484909, 0.011124732, -4.706424E-5, -0.0011856005, -0.017818313, 0.003996068, -0.0139895845, -0.010763278, -0.024900122, -0.02222269, 0.0038287283, -0.022918822, 0.028461106, 0.019746065, -0.006743783, -0.009866338, -0.029746275, 0.015609431, -0.009069802, -0.008835527, 0.005625955, -0.0050101453, -0.014444748, 0.0357705, -0.004715628, -0.016854437, 0.03218274, -0.036975343, -9.814464E-4, -0.021352524, -0.026278999, 2.0084012E-6, -0.0010358316, -0.0043240534, 0.006954631, 0.014324264, 0.016533146, -0.010241179, -0.0077110054, -0.0047189747, 0.02250382, -0.014926686, -7.392224E-4, -0.037832122, 0.0055255513, -0.02104462, -0.0076775374, 8.496665E-4, 0.00981279, -0.019585418, -0.010582551, -0.013393856, 0.014110069, 0.012771353, 0.018126218, 6.024223E-4, 0.008996173, -0.01925074, -0.011245216, -0.030254986, -0.008306734, 0.0059740213, -0.00889577, -0.012697724, -0.019397998, -0.003755099, 0.022490432, -0.018273477, 0.034672752, -0.013360388, 0.011459411, -0.023855923, 0.025917547, 0.009377707, -0.032852095, 0.021352524, -7.6306827E-4, -0.015462172, -0.021071393, 0.019946871, 0.018219927, 0.022450272, -0.0061815223, 0.013748616, -0.03453888, -0.039626, -0.026104966, 0.0046687727, 0.018126218, -0.027657878, -0.01721589, -0.0021268853, 0.009384401, 0.011707073, -0.042330205, -0.018742027, -0.017430086, 0.0030874142, -0.006583137, 0.026104966, -0.009565127, 0.012436674, -0.0088422205, -0.013427324, -0.024967058, -0.008079153, -0.025462383, -0.012978854, -2.1126616E-4, 0.014083295, 0.011954736, 0.026212065, -0.004655386, 0.018889286, 0.013273371, -0.020080743, 0.0015545842, -0.0178317, -0.05976029, 0.016680405, 0.021914784, 0.0076775374, -0.010944005, -0.022088818, -0.009698999, 0.017202504, -0.013735228, 0.013340307, -0.011225136, -0.04594474, -0.009324159, -0.046774745, 0.0067337425, -0.0086548, -0.029692726, -0.008942625, 0.036814697, -0.016426047, 0.021713978, -0.002836405, 0.006472693, -0.012302802, 0.042196337, 0.0011847639, 0.030603053, 0.007255842, -0.019746065, -0.029478531, -0.010997553, 0.024793025, -0.029746275, 0.029291112, 0.008105927, -0.03443178, 8.885729E-4, -0.030442407, -0.014685717, -0.019023158, 0.014926686, -0.0040496164, -0.014364425, -0.020040581, -0.0042370367, -0.034083717, -0.028487882, -0.0062384177, -0.013547808, 0.025060767, -0.02095091, -0.026680615, 0.020348487, 0.003564332, 0.016680405, 0.0029050142, 0.006281926, 0.02603803, -0.019558644, -0.0017235972, -0.008668188, 0.0044612717, 0.0017060265, 0.03491372, 0.03486017, -0.016733954, -0.020870587, -0.0044211103, -0.0027493883, -0.019839775, -0.034940492, -9.931601E-4, 0.030201439, 0.021218652, -0.016693791, -0.0049030483, -0.038153414, -0.01304579, 0.0060509974, 0.0066902344, 0.010308115, -0.016693791, -0.008072459, 0.019973647, -0.014511684, 0.0029384822, 0.013447405, 0.0016951495, -0.00962537, -0.011024328, -0.017416699, -0.022570755, 0.0018357147, 0.05226348, -0.017711217, -0.0056661163, 0.029050142, 8.806243E-5, -0.0022758176, -0.011613363, -0.021727365, 0.019411385, -0.017577345, -0.009451336, -0.029692726, -0.01035497, -0.017978959, -0.011539734, -0.011084571, 0.0030823941, 0.005786601, -0.009859645, -0.008507541, 0.0029033409, -0.034699526, -0.0039257854, -0.017322987, -0.040777296, -0.017202504, -0.012035059, 0.0043742554, -0.025234802, -0.010850295, -0.011874413, 0.025274962, 0.042035688, 0.030924344, -0.0068943887, -0.0048193783, 0.01867509, -0.023333823, -0.0032480604, 0.01830025, -0.008882382, -0.01826009, 0.026158515, 0.0079452805, -0.0063220873, 0.01485975, -0.005726359, -0.022289624, -0.041741174, 0.022704627, -0.024137054, -0.004795951, -0.0037283248, 0.0035609852, 0.023414146, -0.011693686, -0.0054753493, -0.02405673, 0.0073897135, 0.0047055874, -6.379819E-4, 0.005364905, -0.009022947, 0.013487566, -0.020643005, -0.0027360013, 5.6267914E-4, -9.036335E-4, -0.0028330581, 0.0055556726, 0.018420735, -0.022303013, 0.0034706218, -0.045462802, -0.0096722245, -0.020415422, 0.015422011, -0.036627278, 0.0045616757, 0.019317675, -0.01052231, -0.0242977, 0.02538206, -0.030442407, -0.020964297, 0.035127915, -0.01736315, -0.03665405, -0.0131595805, 0.0035542916, 0.047337007, 0.024016568, -0.022477046, -0.0046788133, -0.0084473, -0.030415632, -0.0148865245, -0.0183538, 0.015355075, -0.006315394, 0.030254986, -0.021312362, 0.029639177, 0.005087122, 0.03301274, -0.022771563, -0.012931999, 0.0105356965, 0.021995107, 0.003674776, -9.228775E-4, -0.021995107, -0.030067567, 0.033628553, 0.019732676, -9.1116375E-4, 0.010308115, 0.004615224, -0.011258603, 0.0030941078, -8.1076E-4, 0.037162762, 0.011546427, -0.011138119, -0.04259795, -0.01688121, 0.014310877, 0.010944005, -6.8065355E-4, -0.0048528463, -0.021673815, -0.00503692, -0.0061614416, -0.0061547477, -0.0044679656, -0.0036680824, 0.0011261951, 0.033387583, 0.003949213, -0.02547577, 0.049130887, -8.333509E-4, -0.020509133, -0.005796641, 0.03801954, -0.016077982, -0.012048446, 0.0047825635, -0.029639177, -0.011646831, 0.009524966, 0.0037283248, 0.011660218, -0.004585103, 0.010194324, 0.008527623, -0.019799612, 0.04005439, 0.0105022285, -0.029050142, -0.00827996, 0.006358902, -0.012757965, 0.017430086, 0.018942835, -0.025823835, -0.028969819, 0.006104546, 0.0036781228, -0.017697828, -0.0067872913, 0.018501058, -0.013300146, -0.011954736, -0.008179557, 0.20091453, 0.012684336, 0.0015570943, 0.02136591, -0.008922543, -0.012135463, 0.023226727, -9.479784E-4, 0.0060074893, -0.0071219704, 9.965069E-4, 0.023186564, -0.005686197, 0.0015989292, 0.031727575, -0.012021672, -0.04495409, -0.0131595805, 0.009043029, 0.016064595, 0.007222374, 0.025448995, -0.032611128, -0.019223966, 0.022021882, 0.007972055, -0.040696975, -0.013407243, 0.00468216, 7.848224E-4, -0.007128664, -0.0018039201, 0.002476625, 0.0013027382, -0.038956642, 0.016492983, 0.01396281, 0.011492879, 0.002556948, 0.020817038, -0.010040372, 0.020790262, 0.02080365, -0.013828939, 0.0071554384, -0.013213129, -0.026104966, -0.003564332, -0.03207564, -0.011673605, -0.0064224913, 0.0055255513, 0.020870587, 0.034779847, -0.013668293, -0.038555026, 0.015181042, -0.025529318, 0.007697618, 0.002103458, -0.018327026, 0.029291112, 0.0052176467, 0.011927961, -0.004250424, 0.029130464, -0.024873348, -0.03057628, 0.0092572225, -0.004380949, -0.015355075, -0.0026004564, 0.004698894, 0.003788567, -0.040081162, -0.008286653, 0.008346896, -4.9705068E-5, 0.007369633, 0.005910432, 0.011760622, 0.0034137263, -0.0062685385, 0.007844877, 0.006231724, -0.004889661, 0.007871651, 0.011834252, 0.013788777, -0.008293347, 0.009076496, -0.011680299, -0.00685088, 0.015033783, 0.003171084, -0.015837014, -0.003035539, 0.041955367, -0.020790262, 0.0041935286, -0.025971094, 0.053388003, -0.008721736, -0.008507541, -0.019638967, 0.004059657, -0.01323321, 0.02613174, 0.006968018, -0.033093065, -0.009397788, -0.040964715, 0.0067705573, -0.015154268, 0.026171902, -0.0038722367, 0.009919887, -0.014832975, -0.022102205, -0.018327026, 0.0074499557, -0.017068632, 0.028246913, 0.005987408, 0.020027194, -0.023440922, -0.005354865, 0.01377539, 0.004618571, -0.045114737, 0.0076507633, 0.00693455, 8.45483E-4, 0.012704417, -0.01160667, -0.0031593703, 0.005180832, 0.015810238, 0.02698852, -0.0072960034, -0.0055791, 0.0040998184, -0.011118039, -0.0011588263, 0.022369947, -0.025462383, -0.003975987, -4.030791E-4, -0.0121622365, 0.010308115, -0.0148195885, -0.012838288, 0.00936432, 0.009799403, 0.019076707, 0.009678918, -0.006117933, -0.053227358, -0.014538459, 0.030388858, -0.019839775, -0.0041667544, 0.006054344, -0.015020396, -0.021272201, 0.0070081796, -0.16717888, 0.007938587, 0.04674797, -0.019170417, 0.0228385, 0.0109841665, 0.03220951, 0.005244421, -0.012878451, 0.008032298, 0.03515469, 0.009377707, -0.024605604, -0.017604118, -0.0020465625, -0.0153015265, -0.01231619, 0.0158504, 0.036172114, 0.015194429, -0.0043508275, -0.02287866, 0.03014789, 0.017148955, -0.015314913, 0.0054920833, -0.022477046, 0.04388312, 0.017510409, -0.010080533, -0.018139604, -0.0337892, 0.023266887, -0.025489157, 0.008982786, -0.031352732, -0.0014650576, 0.028005943, -0.025904158, 0.019732676, 0.010455374, 2.6104966E-4, 0.0067036217, 0.00818625, 0.0062752324, 0.021098169, -0.008735123, -9.412849E-4, 0.0083937505, 0.0024983792, 0.020629616, -0.022771563, 0.012403206, -0.020228002, -0.0076306826, 0.01332692, -0.016854437, 0.005287929, 0.019612193, -0.034378234, -0.021740751, -0.022530595, 0.034271136, -0.019491708, 0.010388438, -0.0018156338, -0.006502814, 0.034324683, -0.007885039, -0.01007384, -0.0026305774, -4.1793048E-4, -0.017952185, 0.0044177636, 0.013895875, 0.0059405533, -0.039224386, -0.010930618, 0.03127241, -0.00827996, 0.0053347843, 0.037243087, 0.010890457, 0.012865063, -0.018808963, -0.019759452, -0.0028514655, -0.0061781756, 3.4032678E-4, -0.0025418873, 0.0104687605, -0.013721841, -0.012014979, -0.005482043, 0.029424982, 0.0076172953, 0.0086548, -0.013895875, 0.016011046, -0.0033618512, -0.0043274, -0.018340413, -0.022477046, 7.1956E-5, 0.034164038, -0.0030003977, 0.005451922, -0.0014391199, 0.009819483, 0.035743725, -0.0153015265, 0.016332338, 0.016385887, 0.014899911, -0.00684084, 0.016546533, -0.04669442, -0.034645975, 0.006901082, 0.008487461, 0.022048656, -0.017095406, -0.022115592, 0.010957392, -0.009913194, -0.004310666, -0.08787333, -0.00441107, 0.031218862, 0.025114316, 0.0021737404, -0.0053448244, 0.002797917, 0.003996068, -6.2752323E-4, 0.019478321, -0.02448512, -0.006087812, -0.012965467, 0.03014789, 0.021165103, -8.333509E-4, 0.0047022407, -0.022343174, -0.009130045, 0.009384401, -0.011446023, -0.039626, -0.01278474, 0.0037316715, -0.008989479, -0.003204552, -0.019170417, 0.013380469, 0.016265402, 0.011231829, 0.0079452805, -0.0055690594, -0.003674776, 0.0014868117, -0.015596044, 0.0029819903, -0.019518483, -0.0031175355, 0.016278788, -0.030040791, 0.015970884, 0.023079468, 0.0044010296, -0.018233314, -0.02358818, -0.022825113, -0.0041801413, 0.03609179, -0.010877069, -0.02009413, -0.0018926101, -0.014056521, 0.0033585043, -0.017510409, 0.0031359429, 0.013079258, 0.0028179977, -0.006730396, -0.004631958, -5.371599E-4, -0.0037852202, 0.029906921, -0.021914784, 0.030817248, 0.01863493, -0.006201603, -0.004698894, 0.020402035, 0.042999566, -0.0060978523, 0.002734328, 0.014993622, -0.009986823, 0.028461106, -0.02816659, 0.014605394, -0.016452823, -0.019813, 0.01882235, -0.029184014, -0.0068943887, -0.02000042, 0.013072564, -0.032852095, 0.01070973, 0.060777716, 0.020857198, -0.02009413, -3.6312678E-4, -0.028193364, 0.018808963, 0.02241011, 0.034645975, 0.0025452343, -8.4799307E-4, -0.018072668, -0.0031978583, 0.012101995, -0.009819483, -0.015649593, -0.06565064, -0.0054218005, -0.07405778, 0.050175086, -9.278977E-4, -0.01224256, -0.014177005, 0.0058568837, 0.024498507, -0.011205055, 0.0096052885, 0.03212919, -0.024003182, 0.011506266, -0.0026021297, 0.004173448, -0.0075972145, 0.011231829, 0.0070014857, 0.0025971094, 0.020924134, 0.02046897, 0.017550569, 0.011599977, -0.02005397, 0.01070973, -0.01467233, 0.015247978, -0.0044612717, 0.013621437, 0.009478111, 0.0061882157, 0.028434332, -0.0064459187, 0.0050603473, 0.03089757, -0.0041600605, -0.01698831, 8.2038203E-4, 0.007838183, -0.002975297, -0.034244362, -0.0072022933, 0.007403101, -0.0023946287, -0.024418185, 0.005518858, 0.0074767303, 0.013019015, -0.0022373295, 0.007162132, 0.03702889, 0.0048227254, -0.0024080158, 0.0010358316, -0.020107517, -0.0058535365, -0.028702077, -9.10327E-4, -0.027202714, 0.020348487, -0.005625955, 0.059385452, -0.018072668, -0.0014617108, -0.026305774, -0.0026104967, -0.029799823, -0.033815973, 0.0010634427, -0.007490117, 1.9756523E-4, -0.049371853, -0.027524006, -0.012135463, 0.015890561, 0.0052812356, 0.015542495, 0.02042881, 0.010816827, -0.02556948, 0.006807372, 0.016707178, -0.0042303433, 0.0061313203, 0.01026126, 0.013213129, 0.0014299162, -0.01925074, 0.00504696, -0.016238628, 0.017510409, -0.037992768, 0.024913508, 0.008346896, -0.012684336, 0.023909472, 0.016439436, -0.010703037, -0.0027192673, 0.026185289, 0.0051038554, -0.0144045865, -0.0041299397, -0.0130591765, -0.010167549, 0.018434122, 0.017523795, -0.011044409, -0.026292387, 0.006901082, 0.0022072084, 0.008541009, -0.00773778, 0.0018474284, 0.012905224, -0.012992241, 0.0045951433, -0.008795366, -0.014913299, -0.035101138, 0.033093065, 0.006727049, 0.017604118, 0.0012768006, 0.00693455, 0.03826051, -0.012865063, 0.018340413, -0.0069144694, 0.01162675, -0.012804821, -0.0032832015, -0.007463343, 0.004615224, -0.015716529, -0.033575002, 0.028246913, 0.007891732, 0.0028681995, 0.012021672, 0.10875731, -0.0056661163, -0.007557053, -0.0041634073, -0.01957203, 0.011968123, 0.014699104, -0.012389819, -0.0039592534, -0.046051838, 0.0075369724, 0.002739348, -0.03713599, -0.0028899536, -0.0079452805, 0.005512164, -0.0074767303, 0.01740331, -0.02538206, -0.008607945, 0.03609179, -0.026265612, 0.029371435, -0.013721841, -0.002963583, 0.013012322, 0.035502754, 0.01867509, 0.010462067, -0.023909472, 0.0022607571, 0.030014018, -0.016492983, -0.01396281, -0.0072759227, -0.0031175355, -0.01342063, 0.0058368025, 0.02104462, -0.02599787, 0.0059907553, 0.0069479374, -0.01919719, -0.025877384, -0.0042905854, -0.013641519, -0.004330747, -0.03443178, -0.04816701 ], - "id" : "d87e0618-bb79-42f0-bd7c-d95a75d83a32", - "metadata" : { - "name" : "Stealth R1X Pro" - }, - "text" : "Please refer to the table below for the corresponding Stealth R1X Pro frame sizes, recommended rider height range, and inseam measurements:\n\n| Size | Rider Height | Inseam |\n|:----:|:---------------------:|:--------------:|\n| 47 | 152 - 158 cm (5'0\") | 71 - 75 cm |\n| 50 | 158 - 163 cm (5'2\") | 74 - 77 cm |\n| 52 | 163 - 168 cm (5'4\") | 76 - 79 cm |\n| 54 | 168 - 174 cm (5'6\") | 78 - 82 cm |\n| 56 | 174 - 180 cm (5'9\") | 81 - 85 cm |\n| 58 | 180 - 185 cm (5'11\") | 84 - 87 cm |\n| 60 | 185 - 190 cm (6'1\") | 86 - 90 cm |\n| 62 | 190 - 195 cm (6'3\") | 89 - 92 cm |\n\n## Geometry\nThe table below provides the geometry measurements for each frame size of the Stealth R1X Pro:\n\n| Frame size number | 47 cm | 50 cm | 52 cm | 54 cm | 56 cm | 58 cm | 60 cm | 62 cm |\n|-------------------------------|-------|-------|-------|-------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | 700c | 700c |\n| A — Seat tube | 42.4 | 45.3 | 48.3 | 49.6 | 52.5 | 55.3 | 57.3 | 59.3 |\n| B — Seat tube angle | 74.6° | 74.6° | 74.2° | 73.7° | 73.3° | 73.0° | 72.8° | 72.5° |\n| C — Head tube length | 10.0 | 11.1 | 12.1 | 13.1 | 15.1 | 17.1 | 19.1 | 21.1 |\n| D — Head angle | 72.1° | 72.1° | 72.8° | 73.0° | 73.5° | 73.8° | 73.9° | 73.9° |\n| E — Effective top tube | 51.2 | 52.1 | 53.4 | 54.3 | 55.9 | 57.4 | 58.6 | 59.8 |\n| G — Bottom bracket drop | 7.2 | 7.2 | 7.2 | 7.0 | 7.0 | 6.8 | 6.8 | 6.8 |\n| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 | 41.0 | 41.1 | 41.1 | 41.2 |" - }, - "c30be6f2-c70d-49ff-8616-594ed60f4a4e" : { - "embedding" : [ 0.014065576, 0.018088194, -0.023388267, -0.008663579, -0.0070939427, 0.023265958, -0.0044846763, -0.019651037, -0.021118749, -0.022314662, 0.015247899, 0.015519698, -0.005779117, -0.010131291, -0.0035129965, 0.022137992, 0.0042196726, -0.0043249945, 0.007712284, -0.01144272, 0.007460871, -0.0030866123, -0.008751914, -0.017653316, -0.0038663347, -0.01145631, 0.023809554, -0.0059829657, -0.013902497, -0.008072417, 0.015424568, 0.007882158, -0.008296651, -0.030441439, -0.016158424, -0.0055175107, 0.015533288, 0.001393817, 0.023660066, 0.027791403, 0.011191306, -0.0015645404, -0.020058734, -0.01505764, -0.009309101, 0.027859353, 0.010002187, 0.0076647196, 0.0017887743, 0.0050350684, 0.0058232844, 0.036556907, -0.018387172, -0.019093849, -4.1321875E-4, -0.024067763, -0.0055243056, 0.018468712, 0.038649756, -0.0016248458, 0.0171369, 2.6988747E-4, -0.040470805, 0.009037302, -0.022029273, -0.020547971, -0.0070939427, 0.0017072348, -0.013739417, 0.021974914, 0.022518512, 0.03006092, 0.0014880971, -0.013134666, 0.021580806, -0.025875224, -0.004229865, -0.009139227, 0.0035537663, 0.004756475, 0.023130057, -0.015628418, 0.0054189838, -9.546924E-4, 0.024869569, -0.0042604427, -0.003489214, 0.007712284, -0.023062108, 0.0043385844, -0.02826705, 0.011775672, -0.006285342, 0.011476695, -0.005215135, -0.006336304, -0.0104642445, 0.0052253273, -0.013970446, -0.009560514, -0.008371396, -0.00854127, -0.009757568, -0.017327158, -0.009574104, -0.028076792, -0.025657784, 0.015261489, -0.0025888814, -0.018645382, -0.0014125032, -0.003679473, 0.024176482, 0.003924092, 0.0190259, -0.03016964, 0.026174203, 4.2850742E-4, 0.003287064, -0.018631792, 0.017680496, 0.023143647, 0.040497985, -0.032806087, 0.025834454, 0.014690712, -0.010797198, -0.012652223, -0.017435879, 0.006947851, 0.0035503688, 0.007141507, 4.085472E-4, 0.013093896, -0.004467689, 0.02276313, 0.0040056314, 0.0033567122, -0.034002, -0.01895795, 0.013352104, 0.009071277, -0.019392828, -0.009037302, 0.0012910431, -0.0039206943, -0.016457403, 0.029055266, -0.007576385, -0.026051892, 0.0104642445, -0.02429879, 0.021648755, 0.025970353, 0.020547971, -0.0056398204, -0.0072706114, 0.031120935, -0.031474274, -0.0017751844, -0.013746212, 0.022396201, -0.005942196, 0.01704177, 0.024176482, 0.009281921, -0.010505014, -0.03212659, -0.014745072, -0.0070939427, -0.02450264, -0.0012672608, -0.01697382, -0.002255928, 0.0056907823, 0.030441439, -0.0031137923, -0.028185511, -0.016647661, -0.008989737, -0.0021081376, 0.0014575198, 0.010206036, 0.0018244479, -0.0034620343, 0.0047530774, 0.0019960208, 0.0031851395, 0.0036964605, -0.017286388, 0.023863913, 0.003856142, -0.004742885, -0.006455216, -0.6023056, -0.05321816, -0.019161798, -0.0049807085, 0.013542363, 0.02060233, -2.6882577E-4, 0.022831079, -0.014690712, 0.007182277, -0.016620481, 0.026269332, 0.0016766574, 0.0024308984, -0.02637805, -0.02261364, 0.017327158, -0.0020877528, -0.0011525957, -0.013202615, -0.042726733, 0.003876527, -0.019854885, 0.023456216, 0.020085914, -0.003995439, 0.0022287483, -0.014785842, -0.008813068, -0.008221907, -0.039356433, 0.029490145, -0.009411025, -7.4659666E-4, 0.032833267, -0.044656504, 2.3994717E-4, 0.018006654, 0.04150364, 0.025222907, -0.02480162, -0.009241151, -0.0026534335, -0.02616061, -0.005476741, 0.0017038372, 0.042998534, 0.010199241, 0.034545597, -0.042264678, 0.004178903, 0.010144881, 0.022871848, 0.0037610126, 0.0065639354, -0.03802462, 0.019868474, 0.0069444533, 0.028185511, -0.02654113, -0.006261559, -0.006278547, 0.0033295325, -0.00422307, 0.0028572823, 0.017993065, -0.03261583, -0.014785842, -2.734973E-4, 6.1791705E-4, 0.007950108, 0.040307727, -0.008330626, 0.004525446, 0.029191166, 0.019596677, 0.026147021, 0.011646569, 0.0036251133, 0.006985223, 0.020045144, 0.0034467455, -0.0011364578, -0.024407512, 0.0020979452, -0.016797151, 0.002748563, 0.005667, 0.023619296, 0.0037032554, 0.036910243, 0.0098119285, 0.0152071295, 0.01215619, -0.010674888, 0.038350776, -0.008656784, 0.01508482, -0.02478803, -0.027750634, -1.14452676E-4, -0.004053196, 0.016335094, 0.025209317, 0.039003093, 0.016253553, -0.010776813, -0.0065231654, 0.013644288, -0.040796965, 0.0022440369, -0.0055311006, -0.01922975, 0.009241151, -0.019827705, -0.027302166, 0.016525352, 0.007161892, 0.027261395, -0.011999907, 0.00851409, 0.027573964, 0.033186603, 0.023755195, -0.036203567, 0.0071279174, 0.015968166, 0.0024580783, -0.0010048053, -0.0067847716, 0.010532195, 0.025521886, 0.032561466, -0.0049093617, 0.03025118, 0.0066726548, 0.026024712, 0.026908059, -6.16643E-4, -0.028756289, -0.034681495, -0.026867287, -0.012482349, -0.023755195, -0.014514043, -0.010980662, -0.021417728, 0.018441532, 0.01508482, -0.0038221674, -0.021309007, 2.5136058E-5, -0.023293138, 5.954087E-4, -0.0060237357, -0.02462495, -0.025440346, -0.04732013, -0.023198007, -0.0067202193, 0.005442766, 0.006526563, 0.0012485747, -0.02851167, 2.0735258E-4, 0.011721313, 0.02452982, 0.04552626, -0.013623903, -0.034871757, -0.03027836, -0.002925232, -0.012054266, 0.02086054, -0.0380518, 0.017598957, -0.01519354, 0.0052355197, -0.011157331, -0.016158424, 7.219649E-4, 0.014622763, -0.06539474, 0.014799432, 0.026106251, 0.029354244, 0.021241058, 0.025671374, -0.01882205, 0.009730388, 0.0052796872, 0.008337421, -0.0092547415, 0.003574151, -0.015614827, 0.009451795, 0.013678263, -0.013623903, -0.00153821, 0.028620388, 0.020140273, 0.019950015, 0.017286388, -0.0023459613, 0.013610313, -0.015669188, 0.031447094, -0.013494799, 0.008038443, 0.011028226, 0.020344123, -0.038948733, -0.0037881925, 0.0021981709, -0.007032788, 0.003424662, 0.018604612, 0.023252368, 7.3088333E-4, -0.0038357573, -0.016307915, 0.03011528, 0.018305633, -0.0101856515, -0.021784656, 0.016783562, -0.008507295, 0.0072977915, 0.0027281782, -0.045145743, -0.019746166, -0.0039274893, 0.03016964, -0.008704349, 9.4959623E-4, -0.0067847716, 0.020439252, -0.02273595, 0.043025713, 0.0021557023, 0.023605704, 0.024054173, 0.015777906, -0.021349777, 0.031284016, 0.014867381, 0.027913712, 0.026214972, 0.044792403, 0.023931863, 0.0059829657, 0.014799432, 0.007392921, 0.04337905, 0.024951108, 0.010110906, -0.0022644217, 0.010532195, 0.019284109, 0.010967072, 0.013413259, 0.030550158, 0.012726968, 0.025521886, 0.022600051, -0.007882158, -0.021893375, -0.026133431, 0.016335094, -0.017789217, 0.010810788, -0.018332813, 3.2361018E-4, -0.0074268957, -0.0076851044, 0.001797268, 0.022178764, 4.786203E-4, 0.011537849, 0.022600051, -0.0051268004, -0.046232935, 0.008758709, 0.044602145, -0.002283108, -0.014459684, 0.03231685, 0.010212831, -0.0018448328, 0.015261489, -0.0062411744, 0.035551254, -0.0032327042, 0.0050214785, -0.009105252, 7.007307E-5, 0.0052796872, -0.009173201, -0.010987457, -0.015275079, -0.025807275, -0.0027043957, 0.0074268957, -0.018033834, 0.0495217, -0.02061592, -0.0010905918, -0.02289903, -0.014976101, -0.016511763, -6.577313E-5, -0.025440346, -0.014405324, 0.006033928, 0.017694086, 0.0045764083, 0.010511809, -0.014908151, 0.008092802, -0.050418634, -0.029218346, 0.0033006538, -0.030794777, -0.018373583, 0.01055258, 0.02269518, 0.017938705, 0.0061290576, -0.03218095, -0.0021489074, -0.018373583, 0.0017598957, -0.0031341773, 0.021472087, 0.01238722, 0.009322691, 0.015016871, -0.006710027, 6.7482487E-4, -0.021037208, 0.014323784, -0.040661067, 2.3102878E-4, 0.0064416258, -0.0024342958, -0.016348684, 0.006794964, 0.035659973, 0.018128965, -0.006604705, 0.0013275661, 0.01515277, 0.016375864, -0.023333907, 0.0020299954, 0.011653364, 0.02823987, 0.009648849, -0.010212831, 0.0035571638, 0.022518512, -0.033376865, 0.038541038, 0.014473273, 0.007522025, 0.021241058, 0.015696367, 0.006383869, 0.00952654, 0.010939892, -1.4662258E-4, 0.016348684, 0.012638633, -0.01044386, 0.022233123, -0.0017700881, -0.013685058, 0.011476695, 0.009200381, 0.0025243291, -0.010865147, -0.007888953, -0.017313568, -0.05335406, 3.479765E-5, -0.021309007, 0.027492424, -0.0021760873, 0.002886161, -0.0037881925, -0.014826612, 0.021635165, 0.008670374, 0.011836828, -0.016253553, -0.009648849, -0.015791496, 0.017639726, -0.006689642, -0.009743978, 0.044357527, -0.019148208, 0.007821004, 0.005850464, -0.00939064, 0.0062683546, 0.017829986, -0.0061664297, -0.007589975, 0.024706488, 0.027804993, 0.0049433364, 0.0074744606, -0.010484629, 0.0045832032, -0.022586461, 0.014989691, -0.020969259, 0.0053952015, 0.0019603472, 0.021621576, 0.038214877, 0.0036556907, -0.022355432, -9.640355E-4, -0.009281921, 0.034545597, 0.039383613, 0.019936424, 0.0065877177, 7.521176E-4, -0.014568403, -0.0034161683, -0.033159424, -0.009859493, -0.002650036, -0.021145929, -0.024407512, -0.01503046, 0.008493705, 0.014704302, -0.019610267, 0.019773345, -0.018169735, 0.018292043, -0.04797245, 0.037209224, 0.02643241, 0.004939939, 0.044846762, -0.0043453793, -0.012285295, 0.002858981, 0.0027893328, 0.041095942, 0.032507107, -0.013148256, 0.006169827, -0.024026994, -0.02262723, -0.024448281, 0.003161357, 0.0026007725, -6.646324E-4, -0.006927466, -8.005317E-4, 0.0013870221, 0.0061902124, -0.01874051, -0.012570684, -0.011605798, 0.020085914, -0.010919508, 0.045580618, -0.026174203, 0.0265819, -0.025453936, -0.015424568, -0.02087413, -0.027098317, -0.022110812, -0.0044507016, 0.026989598, 0.031120935, 0.015655598, 0.027573964, 0.009920647, 0.026446, 0.010165267, -0.019963605, -0.007922928, -2.2274742E-4, -0.05658846, 0.014147115, 0.03381174, 0.0013284155, -0.0055786655, -0.0068119513, -0.0056398204, 0.02062951, -0.019501546, -0.024557, 0.0060916855, -0.046069857, 0.002177786, -0.039003093, 0.009315896, -0.013848137, -0.019691806, -0.02079259, 0.039166175, 0.007182277, 6.9351104E-4, 0.015506108, 0.0140927555, -0.012937612, 0.027968071, -0.0059150164, 0.029245526, -0.013549158, -0.038704116, -0.026758568, -0.02245056, 0.017463058, -0.032941986, 0.018523073, 0.015669188, -0.024448281, -0.0038255649, -0.0022474343, -0.0031375748, -0.020480022, 0.03016964, -0.0062275846, -0.0033804947, -0.037752822, -0.023415446, -0.026269332, -0.0146499425, 0.01215619, -0.0090644825, 0.042074416, -0.030686058, -0.03421944, 0.034926116, 0.00948577, 0.023401856, 0.010110906, 0.0032700764, -2.5714692E-4, -0.017897936, -0.023660066, 7.124095E-5, 0.018468712, 0.007182277, 0.014772252, 0.029218346, -0.010362321, -0.014283014, 0.012298885, -0.0031715494, -0.026092662, -0.024013404, -2.609691E-4, 0.024230842, 0.015424568, -0.012971587, 0.012937612, -0.023415446, 0.0045016636, 0.0074812556, 0.014921742, -2.0852046E-4, -0.024421101, 0.0070531727, 0.014921742, -0.0051505826, 0.005170968, 0.00940423, -0.0065707304, 0.011707723, -0.0031069973, -0.018319223, 0.008004468, -0.013087101, 0.046450373, -0.027560374, -0.008153957, 0.018292043, 0.008561655, 0.0039716563, -0.004566216, -0.006835734, 0.015519698, -0.018278453, 7.9033925E-4, -0.007352151, -0.0015161263, -0.017327158, 0.0108379675, -0.006475601, -0.02109157, 0.0066318847, 0.0017853768, 0.0013233193, 0.0021234262, -0.026867287, -0.030550158, -0.016756382, -0.041394923, -0.015438158, -7.104984E-4, 0.0045322413, -0.038405135, -0.00962167, -0.028865008, -5.414737E-4, 0.03587741, 0.0073045865, -0.015410978, -0.0072842017, 0.015873035, -0.03546971, 0.012183371, 0.010008982, -0.0058538616, -0.008371396, 0.005109813, 0.0011670351, -0.016769972, -0.0073113814, 0.013440439, -0.0071279174, -0.01871333, 0.036747165, -0.02274954, 0.00951295, -0.0022151582, 0.012930817, -0.007019198, -0.006095083, -0.013555953, -0.025929583, 0.0074268957, -0.010695273, -0.013882112, 0.0039716563, -0.021743884, 0.027030367, 1.2708706E-4, -0.01891718, 0.01503046, -0.01519354, -0.014663532, 0.02447546, 0.02067028, -0.01029437, -0.022192353, -0.035143554, -0.009200381, -0.011367975, 0.0052117375, -0.025127778, -0.0076851044, 0.024434691, -0.010688478, -0.019909244, 0.01704177, -0.025807275, -0.033621483, 0.017612547, -0.02433956, -0.024122123, -0.034844577, 0.0058062966, 0.031229654, 0.01895795, -0.028973727, 8.2941033E-4, -0.005544691, -0.024393922, -0.0022440369, -0.015696367, 0.006985223, 1.5002006E-4, 0.047673468, -0.016742792, 0.0027162868, 0.013413259, 0.019854885, -0.008174342, -0.012862867, 0.0025277266, 0.028647568, 0.032941986, -0.008989737, -0.0421016, -0.019365648, 0.020208223, 0.026785748, 0.003030554, 0.0033431223, 0.010987457, -0.017001, 0.015764317, 5.801201E-4, 0.021118749, -0.013664673, -0.015818676, -0.03783436, -0.01519354, 0.012122216, -0.0050928257, 0.009975008, 0.0033550134, -0.006788169, -0.010674888, 0.0051811603, -0.012040677, -0.025739323, -0.0045356387, -0.011639774, 0.025019057, 0.003917297, -0.0029422194, 0.048706304, 0.0023884298, -0.03209941, 0.0018023642, 0.0077938237, -0.0023323714, -0.003856142, -0.0046545505, -0.013399669, -0.011035021, -0.008493705, 0.0076851044, -0.0136306975, 0.013114281, -0.0036454983, 0.001150897, -0.035225093, 0.03593177, 0.008330626, -0.035524074, -0.0113951545, 0.008086007, -0.027084727, 0.020371303, 0.006835734, 0.0033312312, -0.03758974, -0.0033533147, -0.014011216, -0.016538942, -0.011959136, 0.03604049, -0.007875363, -0.01509841, -0.0051437877, 0.20243557, -0.01043027, -0.0059591834, 0.025807275, -0.0041890955, 0.002638145, 0.0036828704, 0.0010685081, -0.0061426475, 0.0020486817, -0.018033834, 0.010226421, -2.635172E-4, 0.0029456168, 0.028593209, -0.0152071295, -0.041367743, -0.019814115, -0.0030084704, 0.00855486, 0.012346449, 0.01891718, -0.034844577, -0.03625793, 0.006033928, 0.0039512715, -0.020194633, -0.030767597, 0.011503874, 0.0151120005, 0.006822144, 0.0028318013, -0.0051913527, 0.011626184, -0.023619296, -0.011354385, -1.8261466E-4, 0.01148349, 0.005045261, 0.028729107, 0.015601237, -0.0051811603, 0.02843013, -0.03223531, -0.004107556, 0.0056330254, -0.01519354, -0.005245712, -0.0128832515, -8.1114884E-4, 0.004185698, -0.0018397365, 0.03424662, 0.036719985, 0.011571824, -0.027791403, 0.023429036, -0.0153022595, 0.019324878, -0.011422334, -0.02270877, 0.032371208, -0.0049739135, 0.0066318847, 0.0064314334, 0.028593209, -0.031012217, -0.0492499, 0.02851167, -0.016294325, -0.008208317, -0.009281921, 0.004375957, 0.024094943, -0.044085726, -0.02462495, 0.0029795917, -0.012529913, 0.029245526, 0.0097235935, 0.0030033742, -0.028131152, -0.007936518, 0.014758662, -0.003679473, -0.025603425, 0.019746166, 0.004270635, 0.0052796872, 0.0091664065, 0.0073045865, 0.016226374, 0.011401949, 8.833453E-4, -0.0079569025, 0.0029201359, -0.020276172, 0.027179856, -0.010980662, -0.007562795, -0.023347497, 0.058056172, -0.008799478, -0.0024971494, -0.024923928, 8.748516E-4, -0.009954622, 0.014622763, 0.007970493, -0.030658878, -7.831196E-4, -0.02843013, 0.0077938237, -0.0059150164, 0.008065622, -0.007963698, 0.005344239, -0.01215619, -0.0047972444, -0.014147115, 0.01144272, -0.0057009747, 0.025019057, -0.009934237, 0.024149302, -0.018061014, -0.021662345, 0.019352058, -0.00422307, -0.038812835, 0.0061834175, 4.3296663E-4, 0.008690759, 0.024162892, -0.023102878, 0.002203267, -7.495695E-4, 0.015940987, 0.023225186, -0.0044099316, -7.3003396E-4, 0.01690587, 0.008969353, -0.01513918, 0.022260303, -0.0054087914, 3.2658296E-4, -0.010939892, -0.017639726, -0.004009029, -0.014826612, -0.015003281, 0.010953482, -0.0055922554, -4.556873E-4, 0.019691806, -0.027207036, -0.020344123, -0.024190072, 0.009451795, -0.019922834, 0.004552626, 0.026921649, -0.003917297, -0.0108379675, 5.644067E-4, -0.17145054, 0.003679473, 0.033159424, -0.0126997875, 0.0074268957, 0.017857166, 0.016172014, 0.023986224, -0.016470993, -0.0021506061, 0.03261583, 0.016117655, -0.027723454, -0.014133525, -0.0027502617, -0.0146499425, -0.014038396, 0.005993158, 0.01880846, 0.009336281, 0.015016871, -0.011490284, -0.00425025, 0.009506155, -0.027641915, 0.014310194, 0.012713377, 0.026921649, 0.016104065, 0.004355572, 0.008813068, -0.023728015, 0.015886625, -0.016090475, 0.0039716563, 0.0037406278, -0.0171369, 0.009710004, -0.019433597, 0.036719985, 0.006567333, -0.0011619389, 0.010070137, -7.5084355E-4, 0.013997626, 0.03598613, 0.005619435, 0.002755358, -0.009173201, -0.018292043, 0.027043957, -0.019691806, 0.002558304, -0.0069240686, 8.404521E-4, 0.007644335, -0.017789217, 0.009676029, 0.021037208, -0.012196961, -0.036883064, -0.0105593745, 0.032751728, -0.017558187, 0.0016673143, -0.027139086, -0.018142555, 0.02659549, -0.031365555, 0.004185698, 0.0043861493, 2.8878596E-4, -0.018468712, -0.0028538848, 0.014350964, 0.016158424, -0.042482115, -7.410758E-4, 0.0127881225, -0.0099953925, -0.0012494241, 0.030903496, 0.0024020197, -0.0017989668, -0.001026889, -0.034654316, -0.027139086, 0.009975008, 0.008616014, -0.027383706, 0.008242291, -0.036502548, 0.004107556, 0.005996556, 0.021472087, 0.02265441, 0.008874223, -0.0138141615, 0.003516394, -0.010783608, -0.012489144, -0.009315896, -0.032969166, 0.01122528, 0.010484629, 0.0018159541, 0.002485258, -0.0022661206, 2.724356E-4, 0.026717799, -0.009873083, -1.0829474E-5, 0.01895795, -0.0029218346, -0.002340865, 0.013542363, -0.031392734, -0.021811835, 0.032806087, 0.003502804, 0.023551345, -0.0029727968, -0.016525352, 0.011401949, -0.005361227, -0.021186698, -0.082246244, -0.006027133, 0.017965885, 0.039220534, -0.0076647196, 0.004977311, 0.0022049658, 0.011164126, -0.02067028, 0.023741605, -0.03375738, -0.024706488, -0.019487957, 0.03810616, -0.018169735, 0.011870802, 0.009635259, -0.020534381, -0.029218346, 0.024149302, -0.014636353, -0.031365555, -0.016321504, 0.008819863, -0.01878128, -0.012196961, 0.00619361, 0.023646476, 0.02429879, 7.251501E-5, -0.00522193, -0.029191166, 0.0020639703, 0.0065027806, -0.018414352, -0.010865147, -0.008018058, -1.2123437E-5, 0.034464058, -0.02067028, 0.023578525, 0.011870802, -0.009084867, -0.036719985, -0.008317036, -0.016498173, -0.026038302, 0.039383613, -0.016008936, -0.020289762, -0.0037949875, -0.0033414236, -0.017843576, 0.002879366, 0.005527703, -0.0038493471, -0.003424662, 0.0016851511, 0.002925232, 0.022029273, -0.013059921, 0.02832141, -0.0058742464, 0.011068996, 0.02295339, -0.0044507016, 0.0056839874, 0.03590459, 0.045091383, 0.007338561, -0.007936518, 0.0030526377, -0.014731482, 0.031881973, -0.0033669048, -0.0010685081, -0.022858258, -0.0114699, -0.003975054, -0.031936333, -0.011687338, -0.014391734, 0.007182277, -0.029109627, 0.03370302, 0.036638446, -1.2061061E-4, -0.008853838, 0.008364601, -0.025467526, 0.005123403, 0.020507202, 0.041911338, -0.0064110486, 0.0018159541, -0.0018057617, 0.003961464, -0.012495939, -0.003312545, -0.012285295, -0.074744605, 0.0074744606, -0.07898466, 0.044140086, 0.016606892, 2.6033208E-4, -0.0109263025, -0.005904824, 0.004399739, -0.023496985, 0.010348731, -0.0011245665, -0.023795964, 0.003910502, -0.020412073, -8.145463E-4, -0.0046409606, 0.017422289, 0.029571684, 0.004460894, 0.033458404, 0.0034654317, -0.009676029, 0.0126046585, -0.0011441021, 0.022151584, -0.020480022, 0.0043317894, -0.0066726548, 0.01238722, -3.3359026E-4, 0.024978288, 0.024244431, 0.0046409606, 0.005568473, 0.039220534, -0.0041177482, -0.023551345, 0.0019331673, -0.0022457356, -0.026867287, -0.044411886, -0.025725733, -0.0076851044, 0.018536663, -0.015859446, -0.0011704325, 0.0074472805, 0.013916086, -2.2866647E-5, 0.033132244, 0.022110812, -4.6290693E-4, 0.0052559045, 0.009845903, -0.015275079, -0.014215065, -0.008228702, 0.012461964, -0.0031375748, 0.017544597, -0.002597375, 0.03946515, -0.01238722, 0.014473273, -0.020357713, 0.014595583, -0.027342936, -0.016824331, -6.421241E-4, 0.0069376584, 0.019773345, -0.0151120005, 0.013263769, 0.013888907, 0.028022433, 0.008398576, -6.595362E-4, 0.008962558, 0.0048753866, -0.020534381, 0.0041551203, 0.014976101, 0.009784748, 0.013827752, 0.0078074136, 0.012468759, -0.014038396, -0.03424662, 0.0030016755, 0.002675517, 0.013243385, -0.040171828, 0.015410978, -0.024421101, -0.01138836, 0.014908151, 0.014106345, -0.0019994183, -0.0049433364, 0.038676936, -0.0012035581, -0.002996579, -0.008928583, -0.0091664065, 0.003883322, 0.0056466153, 0.012108626, -0.016661253, -0.03432816, 0.014622763, 0.0032768715, 2.465298E-4, -0.0138141615, -0.0021421125, 0.009676029, -0.025182137, -0.01138836, -0.0153973885, -0.008086007, -0.027886532, 0.009893468, 0.018210504, 0.010172062, 0.0058844388, 0.017897936, 0.019963605, -0.0077938237, 0.011877597, -0.0078006187, 0.008588835, -0.008466525, 0.0037813976, -0.010022572, -0.011218485, -0.0041177482, -0.046341654, 0.0042196726, -7.2154024E-4, -1.8155294E-4, -0.0011772275, 0.119265206, -0.016131245, -0.002794429, 0.005636423, -0.017340748, 0.016606892, 0.005069043, -0.006428036, 0.0028759686, -0.039193355, -0.005259302, -0.007148302, -0.022070043, 5.4274773E-4, -0.010593349, 0.02633728, 0.0056839874, 0.03030554, -0.016022526, -0.014595583, 0.02084695, -0.010967072, 0.024244431, -0.0048176297, -0.00613925, -0.0058402717, 0.0116737485, 0.0137190325, 0.008052032, -0.03019682, 0.010063342, 0.0074472805, -0.041041583, 0.0014345868, 0.01033514, -0.009635259, -0.017925115, 0.0033499172, -0.0045288433, -0.030414259, 0.018455122, 0.017626137, -0.020982848, -0.019718986, 0.013059921, -0.02832141, -0.0019382635, -0.030495798, -0.0412862 ], - "id" : "c30be6f2-c70d-49ff-8616-594ed60f4a4e", - "metadata" : { - "name" : "Avant SLR 6 Disc Pro" - }, - "text" : "| 54 | 168 - 174 cm 5'6\" - 5'9\" | 78 - 82 cm 31\" - 32\" |\n| 56 | 174 - 180 cm 5'9\" - 5'11\" | 81 - 85 cm 32\" - 33\" |\n| 58 | 180 - 185 cm 5'11\" - 6'1\" | 84 - 87 cm 33\" - 34\" |\n| 60 | 185 - 190 cm 6'1\" - 6'3\" | 86 - 90 cm 34\" - 35\" |\n| 62 | 190 - 195 cm 6'3\" - 6'5\" | 89 - 92 cm 35\" - 36\" |\n\n## Geometry\n| Frame size number | 47 cm | 50 cm | 52 cm | 54 cm | 56 cm | 58 cm | 60 cm | 62 cm |\n|---------------------------------------|-------|-------|-------|-------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c | 700c | 700c |\n| A — Seat tube | 42.4 | 45.3 | 48.3 | 49.6 | 52.5 | 55.3 | 57.3 | 59.3 |\n| B — Seat tube angle | 74.6° | 74.6° | 74.2° | 73.7° | 73.3° | 73.0° | 72.8° | 72.5° |\n| C — Head tube length | 10.0 | 11.1 | 12.1 | 13.1 | 15.1 | 17.1 | 19.1 | 21.1 |\n| D — Head angle | 72.1° | 72.1° | 72.8° | 73.0° | 73.5° | 73.8° | 73.9° | 73.9° |\n| E — Effective top tube | 51.2 | 52.1 | 53.4 | 54.3 | 55.9 | 57.4 | 58.6 | 59.8 |\n| G — Bottom bracket drop | 7.2 | 7.2 | 7.2 | 7.0 | 7.0 | 6.8 | 6.8 | 6.8 |\n| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 | 41.0 | 41.1 | 41.1 | 41.2 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | 4.0 | 4.0 | 4.0 | 4.0 |\n| J — Trail | 6.8 | 6.2 | 5.8 | 5.6 | 5.8 | 5.7 | 5.6 | 5.6 |" - }, - "b91bc311-1dd1-4495-a21f-b8b134b9630a" : { - "embedding" : [ 0.023788568, -0.009588664, -0.03040705, -0.004662098, -0.013955778, 0.025944998, 0.005513143, -0.033960417, -5.136784E-4, -0.027070684, -0.011236504, -0.0017851597, -0.041718148, -0.007120295, -0.016763208, 0.014484715, 0.012280813, -0.030759675, 0.015284901, 0.005757267, -0.005682674, -7.8619923E-4, 0.0077034812, -0.005682674, 4.424755E-4, -0.02176776, 0.035859164, -0.0034719915, 0.0043467707, 0.00819173, 0.019421453, 0.020031763, -0.019014578, -0.020682761, -0.01775327, 0.008361261, 0.018119456, 0.017861769, 0.045325764, 0.0010375287, 0.026650248, -0.0153934, -0.015461212, -0.010605849, -0.02770812, 0.010999161, 0.017237896, 0.012457126, 0.0038517406, 0.015908774, -0.0068151397, 0.01775327, 0.008001856, -6.624418E-4, 0.008537573, -0.004041615, 0.021171011, 0.01231472, 0.037785035, 0.016505523, -0.005421596, 0.0023683459, -0.047305886, 0.0016232578, -0.040714525, -0.026324749, -0.007466138, -0.004580723, -0.010090475, 0.014376215, 0.018499205, 0.010856755, 0.011290754, 0.0027616573, 0.0054012523, -0.009161446, 0.0104431, -0.008449417, 0.013487874, -0.0023140959, 0.023707192, -0.0061539696, -0.00588272, 0.027436871, 0.022974819, -0.003326195, 0.0019597765, -0.0012672431, -0.018648392, -0.013494655, 0.019082392, -0.014199903, -0.011792565, 0.02693506, 0.011589128, 0.0026480716, -0.017848207, -0.002578564, -0.013772685, -0.0035330227, -0.0046146293, 0.0047129574, -0.02666381, -0.014647464, -0.030054428, -0.028562555, -0.013338686, 0.0051605185, 0.025904313, 2.1403268E-4, -0.0035262415, 0.014159216, -0.010260006, -0.041555397, 0.023937754, -0.015217088, 0.023652943, 0.00934454, 0.027409745, -0.0022886663, -7.7687507E-4, 0.022350946, 5.569088E-4, -0.038137656, -0.0020547137, 0.004885879, -0.0049774256, -0.012504594, -6.043774E-4, -0.0074118883, -0.0014783089, -0.017088708, -0.0059742667, 0.009459821, -0.029403428, 0.0201267, 4.2541644E-5, -0.006554062, -0.028779555, -0.02639256, 0.0072762636, -0.004184021, 1.7768951E-4, 0.0018495815, -0.0042789583, -0.004740082, -0.015949462, 0.009764976, 0.015542587, -0.017821081, -8.9088455E-4, 9.345388E-5, 0.03716116, 0.0145118395, 0.0030312114, -0.013765904, -0.008822385, 0.03621179, -0.021510072, -0.026745185, -0.00857826, -0.012911469, -8.082383E-4, -0.012667344, 0.026202686, 0.0071881074, 0.011568785, -0.020655638, 0.009636133, -0.027016435, -0.013297999, 0.027423307, -0.022947693, 0.021645697, -0.02490069, 0.0044281455, 0.013887966, -0.012165532, -0.010260006, -0.00692703, 0.03919553, -0.006147188, 0.022296695, -0.0022395023, -0.013236968, 0.011107661, 0.03019005, -0.031654797, 0.019055266, 0.0055843457, -3.1659883E-4, 0.015461212, 0.0045535984, 0.03512679, -0.59935254, -0.031519175, -0.015040776, -0.017332833, -0.011833252, 8.764744E-4, -0.01660046, 0.021862697, 0.0052045966, -0.0010536341, -0.023734318, 0.012307939, -0.004221318, -0.010653318, -0.025321126, -0.028264182, 0.018485643, -7.9679495E-4, 0.02599925, -0.012884344, -0.025904313, -0.010232882, -0.033662044, -0.00450613, 0.026406122, -0.0154069625, 0.018010955, -0.003787319, 0.0042789583, 0.024792189, 0.005482627, 0.032902546, -0.016831022, -0.0056657204, 0.0410129, -0.05359887, 0.008476542, 0.036130413, 0.013535342, 0.03485554, -0.039873652, -0.0015334064, -0.002848118, -0.005377518, 0.005981048, 0.0061200634, 0.026704498, -0.027680995, -0.0069846706, -0.019177329, 0.023124006, 0.014104966, 0.01616646, 0.003485554, -0.0019767296, -0.022201758, 0.021048948, -0.01105341, 0.0015410354, 0.004424755, -0.0067710616, -0.01726502, -0.023001945, -0.0068659987, -0.0091343215, 0.032902546, -0.042260647, -0.025253313, 0.01726502, -0.026975747, 0.003970412, 0.021238822, -0.009005478, 0.011453504, 0.028101431, 0.028508306, 0.033417918, 0.008564698, 0.0048146755, 0.032712672, 0.011311097, 0.026840122, -0.00874101, -0.031302173, 0.028779555, 0.013142031, -0.005272409, -4.9503E-4, 0.014064278, 0.010273568, 0.034611415, 0.020872636, 0.0046315826, -0.00335332, 0.0060997196, 0.029050805, -0.004350161, 0.032414295, 0.0075068255, -0.037296783, -0.022757819, 0.007554294, 0.03425879, 0.018784016, 0.008164605, 0.0036008349, 0.002336135, -0.05305637, 0.025158376, -0.029050805, -0.026012812, 0.0067541087, -0.023571568, 0.013779466, -0.005557221, -0.027504683, 0.015420525, -0.003546585, 0.013453967, -0.045000266, -0.0019326515, -0.014471152, 0.005343612, -0.001985206, -0.021265948, 0.02363938, 0.014227028, -0.0076967, -0.03387904, -0.009154665, 0.011168691, 0.009378446, 0.03566929, 0.003238039, 0.023897067, 0.006042079, 0.016342772, -0.01061263, 0.0029176257, -0.016831022, -0.03629316, 0.001769902, 0.012701251, -0.022798507, -1.0902952E-4, -0.030054428, -0.0047977227, 0.013955778, -0.0075949817, -0.009866695, 0.0022055963, -0.010490568, -0.018444955, 0.011582347, -3.2549922E-4, -0.021116761, -0.00351946, -0.014362653, -0.01132466, -0.026907934, 0.019841889, 0.005567393, -0.012626656, 0.0011138176, -0.001137552, -0.017780393, 0.011650159, 0.008978353, -0.024344629, -0.038408905, 0.0019529952, -0.009778539, -0.021198137, 0.027314808, -0.0067507178, 0.00824598, -0.013996466, -0.006591359, 0.006628656, -0.0039331154, 0.009202134, 0.009195353, -0.041582525, 0.0075882003, 0.033011045, 0.0036042256, 0.038463157, 0.003238039, -6.4972695E-4, 0.0039331154, -0.00714742, 0.03914128, 0.0015020432, -0.0066218744, 0.0013647232, 0.009480164, 0.024439566, 0.019055266, 0.0038517406, 0.0014613558, 0.03040705, 0.021699946, -0.009514071, 0.0029294929, 0.018607704, -0.03629316, 0.01654621, 0.008802041, 0.010449881, 0.026704498, 0.027884431, -0.040606026, -0.027775932, -0.009419133, 0.0046078484, 0.00357371, -0.0040043183, 0.043020144, -0.02457519, -1.2365155E-4, 0.024968501, 0.013264093, 0.012213002, -0.011114442, 0.0020496277, -9.2563836E-4, 0.025768688, 0.05075075, 0.0066761244, -0.019231578, 0.013630279, 0.02502275, 0.014498278, -0.011066973, 0.008130699, 0.010287131, 0.010293912, -0.0071813264, 0.042342022, -0.00599122, 0.027965806, 0.051673, 0.040172026, -0.013548904, 0.019421453, 0.0057843924, 0.021103198, 0.010748255, 0.03919553, 0.029511929, -0.019489264, -0.01165694, 0.009887039, 0.005831861, 0.009168228, -0.019380765, -0.013453967, 0.013040312, -0.007554294, 0.006743937, 0.0077102627, 0.01797027, 0.032685544, -0.001382524, 0.009656477, -0.03770366, -0.008313792, 0.0068422644, -0.0021072682, -0.026311185, -0.018621268, -0.0040924745, -0.0010188803, -0.00703892, 0.0014113443, 0.004502739, 0.00307868, 0.0030718988, 0.007825543, 0.0208862, -0.034557167, -0.038137656, 1.5935898E-4, 0.012857218, 0.0028989774, -0.00511305, 0.003238039, 9.4852503E-4, -0.008917322, 0.060217354, 0.002698931, 0.0156104, -0.009113978, 0.0019987687, -0.025917875, 0.0034380853, 0.0108092865, -0.0012579188, 0.025714437, -0.007350857, 0.0056996266, -5.1283077E-5, -0.007235576, -0.009215697, 0.018350018, -0.023666505, 0.011975658, -0.011419597, 0.008537573, -0.01836358, -0.026365437, -0.030298552, 0.0027396183, -0.026012812, -0.0016478398, -0.013311561, -0.0015384924, -0.02682656, 0.024276815, -0.0046756603, -0.011189035, 8.404491E-4, -0.009575102, -0.007384763, 0.04858076, 0.029891677, 6.6964683E-4, 0.025605937, -0.010422756, 0.0041026464, -0.02270357, -0.0030702034, 0.0030108676, 0.038625907, 0.0037228973, 0.002588736, -0.011724752, -0.0208862, -0.020533575, -0.012070595, 0.010958473, -0.019340077, 0.017075146, -0.033960417, -0.016803896, 3.2263837E-5, -0.009052947, 0.0026294233, 0.019068828, 0.012165532, 0.021347323, -1.03837636E-4, 0.005075753, -0.010104038, -0.0063472344, -0.00846976, 0.036076162, -0.00384835, -0.016763208, 0.012213002, -0.007167764, -0.01231472, 0.014389778, 0.016085086, 0.015000088, 0.03480129, 0.015786711, 0.013067437, 0.004794332, 8.976658E-4, 0.0054622837, 0.010144725, 0.0066252653, -0.0014876331, 0.024222566, 0.0038415687, -0.032143045, -2.8968582E-4, -0.0061912662, 0.016315648, -0.007866231, -0.019801201, -0.024371753, -0.017739708, 0.00489266, -0.030352801, 0.014783089, -0.011589128, -0.018878954, -0.011019505, -0.012613094, 0.009405571, 0.0029294929, -0.02815568, -0.027084246, 0.008401948, -0.027463995, 0.025185501, 0.0074525755, 0.018675517, 0.017685456, -0.0049842065, 0.014796652, 0.01533915, -0.012457126, 0.013779466, 0.012552063, -0.02688081, -8.9003687E-4, -0.0043230364, 0.025253313, 0.008788479, 0.013230187, 0.0039670216, 0.018499205, -0.0050927065, 0.0014003247, -4.9036794E-4, -0.019869015, -0.005265628, 0.015271338, 0.009670039, -0.0141727775, 7.005862E-4, 0.008015418, -0.026216248, -0.001808894, 0.0013537038, 0.015379838, 0.003204133, 0.021577885, -0.003980584, 0.005767439, -0.012470689, 0.0018122847, -0.0042247083, -0.0074322317, 0.025131252, -0.026473936, 0.007262701, 0.006971108, -0.014986526, -0.0044281455, 0.00423488, 0.007323732, -0.053463247, 0.036754284, -0.0056758923, -0.01830933, 0.014918714, 0.010632974, 0.022174634, -0.016451273, 0.028020056, 0.032631297, 0.024480253, 0.014037154, -0.0034075698, -0.039276905, -0.015217088, -0.0035906632, -0.002132698, 0.006547281, -0.026731623, -0.0076967, 0.010293912, 0.003546585, 0.0014816995, -0.017129395, -0.018512767, -0.019312954, -0.013223405, -0.016193585, 0.018173706, 0.0041162088, -0.010388849, -0.013270874, -0.03512679, -0.025863625, -0.040714525, -0.0062794224, -0.043942392, 0.015678212, 0.030515552, 0.004679051, -0.022473007, -0.0047536446, 0.007350857, -0.004733301, -0.0208862, -0.021564322, 5.179167E-4, -0.021591447, 0.03390617, 0.027097808, -7.2347285E-4, -0.024792189, -0.017183647, -0.022283133, 0.013718436, 0.0016063047, -0.019163765, -0.020031763, -0.030813925, 0.00478077, -0.03233292, -0.0038110532, 0.007194889, -0.03374342, -0.013684529, 0.021103198, 0.0029820474, 0.013698092, 0.014281278, -0.00450613, -0.0069575454, 0.03496404, -0.003034602, 0.014552527, -0.0019224797, -0.025307564, -0.023978442, -0.03227867, 0.010368506, -0.017563395, 0.015908774, -0.00533344, -0.01231472, 0.013386155, 0.012613094, -0.010015882, -0.01407784, 0.007832325, -0.02441244, 0.0022971428, -0.02018095, -0.0050554094, -0.033390794, -0.023924192, 0.016247835, -0.005218159, 0.015813837, -0.028128557, 0.0095818825, 0.030515552, 0.008198511, 0.026473936, 0.011399253, 0.021143885, 0.01341328, -0.00280404, -0.026351873, -0.024059817, -0.012287595, 0.007439013, 0.015271338, 0.03577779, -0.015325587, -0.028671056, 0.0025463533, -0.00478077, -0.014783089, -0.02342238, 0.037866406, 0.029213553, 0.032739796, 0.0062150005, 0.0077577312, 0.005611471, 0.017495582, -0.0044925674, 0.024209004, 0.0041704588, -0.014674589, 0.0035092884, 0.015746024, -0.020316575, 0.0047638165, -0.002914235, -0.009880257, -0.0017122615, -0.0054690647, -0.021835571, -0.010517693, -8.103574E-4, 0.035967663, -0.014321965, 0.0048180665, 0.030027302, -3.221086E-5, -0.030976675, -0.009188571, 0.01863483, 0.0203437, -0.005838642, -0.028264182, -0.011155129, -0.008361261, 0.0020750575, -0.017604083, -0.011996002, 0.0024259863, -0.008171386, 0.0023988613, 0.0054182056, -0.018648392, -0.014986526, -0.016125774, -0.0046044574, -0.02666381, -0.019801201, 0.0017800737, -0.0077373874, -0.0418809, -0.007228795, -0.02259507, 0.01082963, 0.017332833, 0.01836358, 0.0013231882, 0.0030939379, 0.02666381, -0.019706264, 0.004550208, 0.026026374, 0.03480129, -0.0016783553, -0.010219319, -0.013169155, -0.002083534, 0.008462979, 0.0010544818, -0.034204543, -0.030027302, -0.012572407, -0.01616646, 0.008754573, -0.022188196, -8.1374805E-4, 0.00654389, 0.0052147685, -0.0012053642, -0.006201438, 0.025226189, 0.016424147, 0.019218016, 0.012321501, -0.027992932, 0.038788654, -0.004200974, -0.008293449, -0.014199903, -0.023178255, -0.01737352, -0.0010231186, -0.005414815, -0.020479325, -0.018214393, -0.028101431, 0.01379981, -0.029810302, -0.0020021591, 0.0015317111, 0.0046383636, -9.714117E-4, -0.005231722, 0.017929582, 0.03398754, -0.0059132357, -0.03227867, 0.02198476, -0.009276727, -0.012952156, -0.026907934, 0.00401449, 0.04508164, 0.0034719915, -0.03160055, 0.013101343, -4.8104374E-4, -0.05525349, -0.0044993483, -0.013915091, 0.03474704, 0.014647464, -0.012857218, -0.013175936, 0.0017148044, 0.011195816, 0.044891767, 0.0040280526, -0.0035703194, -0.0058962824, -0.003865303, -0.011128004, 0.006743937, -0.06217035, -0.014783089, 0.040199153, 0.021374447, 0.017048022, -0.0036584754, -0.008788479, 0.0030583362, 0.0123825325, -0.0038076625, 0.0152984625, 0.027084246, 0.0013918482, -0.03254992, -0.015434087, -0.009751414, 0.0021733854, -0.021320198, -0.00571658, 0.004936738, -0.0025768687, -5.5648497E-4, -0.017739708, 0.005431768, -0.010341381, -0.017780393, 0.026256936, 0.008313792, -0.004275568, 0.032305796, 0.0307868, -0.020682761, -0.012884344, 0.011385691, 0.0077780746, -0.023734318, 0.0011968877, -0.04421364, -0.01143316, -0.0141727775, 0.013969341, 0.0070999516, 0.009337759, -0.009880257, -0.0048078946, -0.014755964, 0.039005656, 0.014308402, -0.033797666, -0.037893534, 0.007934043, -0.0050045503, 0.022283133, -0.007377982, -0.0036381318, -0.029864551, 0.016397022, -0.02858968, -0.020275889, -0.025660187, 0.036917035, -0.002083534, 0.016397022, 0.010497349, 0.18705355, -0.004041615, -0.017115833, 0.025958562, 0.017048022, 0.016220711, -2.9816237E-4, 0.006289594, 6.489852E-5, -0.01203669, 0.018512767, 0.012538501, -0.020967575, -0.00467227, 0.031871796, -0.015189963, -0.041582525, 0.0053537837, 0.0013096257, 0.0040483964, 0.0021208308, 2.752757E-4, -0.011731534, -0.022798507, 0.012023127, 0.0053842994, -0.03336367, 6.76428E-4, 0.006689687, 0.009866695, -0.015284901, 0.0058996733, -0.002105573, 0.014064278, -0.024168316, -0.014037154, 0.006998233, -0.006513375, -7.2347285E-4, 0.035533663, 1.502467E-4, 0.006971108, 0.0025310954, -0.032143045, -0.011826471, -0.008863072, -0.014864463, 0.004167068, -0.004841801, -0.022893444, -0.028345555, -0.015379838, 0.013331905, 0.025985686, -0.016397022, -0.013270874, 0.0031075003, 0.004740082, 0.0055233147, -0.012735156, -0.03276692, 0.03754091, 0.002963399, 0.019014578, -0.021347323, 0.019923264, -0.015746024, -0.030054428, 0.022025445, 0.020316575, -0.013331905, -0.009276727, -0.008001856, -0.0157189, -0.015054339, -0.04000928, 0.043128643, 5.738619E-4, 0.035994787, 0.01616646, 0.017183647, -0.006421828, 0.0040280526, 0.008978353, 0.004106037, -0.043481268, 0.030976675, -0.005035066, -0.009629351, 0.0137252165, -7.8450394E-4, 0.009032603, 8.9427514E-4, 0.010341381, 0.017251458, -0.010849973, -0.030488426, 0.010043006, -0.03276692, -0.0101379445, -0.016288523, 0.047550008, -0.019285828, -0.0060454695, -0.027775932, -0.007167764, -0.016532646, 0.018038081, 0.026595999, -0.033607792, 0.008096793, -0.025687313, -0.0017292146, -0.012219783, 0.0030227348, 0.005838642, -0.011453504, -0.0011562003, 0.0076763565, -0.018214393, 0.031573422, -0.016247835, 0.0053503932, -0.022120384, 0.00901226, 5.2427413E-4, -0.007208451, 0.002863376, -0.033607792, -0.017115833, 0.024792189, 0.022188196, 0.03390617, -0.005177472, -0.015189963, -0.012748719, -0.00884951, -0.011012723, 0.008659635, 0.009988757, 0.0031549688, 0.015908774, 0.025755124, 0.02468369, 0.02617556, -0.028399806, 0.03726966, 0.0023836035, -0.026297623, -0.01611221, -0.025077002, 0.0035533663, 0.0013511608, -0.014132091, 0.008625729, 0.0064014844, -0.02677231, -0.0054995804, -0.0022513694, -0.018078769, -0.029213553, -0.0063743596, -0.009812444, -0.0026395952, -0.034123167, -0.017454894, -0.17088708, -0.008646073, 0.038951404, -0.020967575, 0.012857218, 0.03566929, 0.009642914, -0.003777147, -0.010090475, 0.008042543, 0.028209932, 0.011697628, -0.05403287, -0.02286632, 0.025646625, -0.0022971428, -0.012355408, 0.0063574063, 0.024344629, 0.01802452, 0.0015071292, -0.019706264, 0.030759675, 0.008503667, 0.013420061, 0.023232507, -0.002951532, 0.034557167, 0.018255081, 0.01699377, -0.001995378, -0.034828417, 0.024263253, -1.0277807E-5, 0.00396024, -0.020818386, -0.0041467245, 0.012118064, 0.0026565483, 0.035533663, -0.0059064543, 0.0020530184, 0.01715652, -0.006299766, 0.03876153, 0.011996002, -0.0122672515, -0.006903296, -0.01742777, -0.010300694, 0.03512679, -0.011033067, 0.0075475127, -0.0010205756, 0.0260535, -0.004662098, -0.0044111926, 0.020750575, 0.0065269372, -0.016464835, -0.013392936, -0.029457679, -0.008205293, -0.019421453, 0.0075949817, -0.02264932, -0.0074797007, 0.02171351, -0.023680067, -0.006031907, 0.0071067326, 0.0031464924, 0.014810214, 0.01242322, 0.03116655, 0.0016139336, -0.027396183, 0.0031261486, 0.013867622, 4.223437E-4, -0.0083476985, 0.031464923, -0.033255167, -0.0015579883, -0.026758747, -0.02292057, -0.010802505, 0.010639755, -0.0042484426, -0.0051706904, -0.009961632, -0.014878026, 0.0023564787, 0.01737352, -0.008673198, 0.00945304, 0.0027311419, 0.0016953084, -0.018268643, 0.0021530415, -0.008564698, 0.008110356, -0.03732391, 0.005557221, 0.04193515, -0.0028820243, 0.0055436585, 0.020994699, 0.029701803, -0.0070863888, -0.016288523, 0.015379838, 0.030922424, 0.029105054, -0.019624889, 0.0145118395, -0.03865303, -0.026582435, 0.012341845, 0.0152984625, 0.02599925, -0.029864551, -0.027965806, 0.008890197, -0.019272266, -0.025443189, -0.07746881, -0.012884344, 0.021455823, 0.019204453, -0.019285828, 0.0077916374, -0.012057033, 0.0132776555, -0.012701251, 0.029457679, -0.011080535, -0.020045327, -0.0022937523, 0.015542587, 0.051591624, 5.068972E-4, 0.0074254507, -0.011100879, -0.032251548, 0.03211592, -0.0050588003, -0.020357262, -0.004519692, 0.0037669751, -0.0063099377, -0.013060655, -0.016302085, 0.029756052, 0.015922336, 0.005140175, 0.016125774, -0.022011884, 0.011880721, 0.024548065, -0.009086853, -0.012057033, -8.607928E-4, -0.026148437, -0.0051673, -0.04396952, 0.009514071, 0.009093634, 0.016736085, -0.034828417, -0.008998697, -0.01946214, -0.0059607043, 0.008381604, 4.0454295E-4, -0.004570551, -0.021727072, -0.010368506, -0.01544765, -0.018607704, 0.0050791437, -0.022011884, -0.0068795616, 0.010944911, -0.02342238, 0.020764137, -0.012497813, 0.001973339, -0.007818762, 0.006964327, 0.014986526, -0.0017631208, -0.013657404, 0.009636133, 0.020818386, 0.0030600317, -0.010978817, 0.030298552, -2.0407274E-4, 0.0315463, -0.030081552, 0.013630279, -0.009059728, -0.018702641, 0.019841889, 0.0052927528, -0.047468636, -0.01890608, 0.02407338, -0.049991254, 0.014376215, 0.01192819, 0.015895212, 0.001585961, 0.0082324175, -0.05430412, 0.028101431, 0.030000176, 0.050886378, -0.005007941, 1.09877175E-4, -0.034828417, 0.0031261486, 0.017590519, -0.010944911, 2.0534423E-4, -0.030813925, 0.0042416616, -0.084141545, 0.033228043, -0.010836411, -0.013331905, -0.0018597533, 0.024100503, 0.037622284, 0.008679979, 0.016044399, 0.010944911, 0.010090475, 0.0056046895, -0.0105922865, -0.01165694, -0.016586898, 0.017129395, 0.033390794, -0.031627674, 0.027626745, 0.017834645, -0.009276727, -5.191882E-4, 0.0035330227, 0.032468546, -0.017576957, 4.347539E-6, -0.016125774, 0.0106940055, 0.011724752, -0.008734229, 0.033336543, -0.020045327, -0.0030125629, 0.060217354, -0.002480236, 0.0010765208, -0.007811981, 0.0011121223, 0.0058454233, -0.020791262, -0.033526417, -0.0020513232, -0.013942216, -0.019448578, -0.015691774, 0.0120502515, 0.0053503932, 0.0032075234, 0.005862376, 0.003463515, 1.0044702E-4, 0.016925959, -2.4052187E-4, -0.038517404, 0.01192819, -0.0112636285, -0.004319646, -8.60369E-4, 0.0049130036, -0.0068049678, 0.056365613, -0.0040585683, 0.0048892694, -0.0070117954, 0.005672502, -0.016125774, -0.03705266, 0.023625817, 0.0062251724, -0.010510912, -0.036320288, -0.021401573, -0.014905151, 0.0070117954, -0.012307939, -0.0028176026, 0.0013053875, 0.0025361814, -0.023463069, 0.014376215, 0.010619411, 0.0026345092, 0.00489266, 0.013691311, 0.0114874095, 0.0010519389, -0.009310634, 0.0030820707, 0.0076492312, 0.005041847, -0.03534379, 0.01802452, -9.4259146E-4, 0.005767439, 0.022730695, 0.009995538, -0.00549619, -0.024276815, 0.013291217, -5.6284235E-4, 0.0023920801, 0.0040924745, 0.0020682763, -0.010253225, -0.006198047, 0.0068320925, -0.0102261, -0.004078912, 0.0055538304, 0.0046146293, 0.006971108, -0.014159216, 0.020913323, 0.017400645, -0.012457126, 0.020804824, 0.0112636285, -0.022554383, -0.037459534, 0.0416639, 0.02353088, 0.014227028, 0.007764512, 0.021076074, 0.032251548, -0.0057843924, 0.02639256, -0.006557453, 0.014878026, -0.01132466, 0.02380213, -0.021537198, -0.0026260326, -0.0039771935, -0.021360885, 4.203835E-5, -0.006757499, -0.005872548, 0.0044484893, 0.1229302, 0.03469279, -0.0033940074, 0.029376304, -0.025280438, 0.024114067, 0.0153934, -0.0105855055, -0.014986526, -0.031302173, 0.012457126, -0.013874404, -0.023625817, 0.006520156, -0.022120384, 0.036483034, 0.019638453, 0.009202134, -0.0077373874, -0.019014578, 0.02457519, -0.007208451, 0.011989221, -3.3673062E-4, -0.014823777, 0.019543516, 0.022011884, 0.028318431, -0.0038585218, -0.03550654, 6.1412546E-4, 0.00983957, -0.057884607, -0.020709887, 0.0014418598, -0.0051876437, -0.007879794, -0.0015978281, 0.021116761, -0.0075949817, 0.021388011, 0.01456609, -0.008001856, -0.035181038, 0.02342238, -0.01280975, 0.003733069, -0.018621268, -0.04771276 ], - "id" : "b91bc311-1dd1-4495-a21f-b8b134b9630a", - "metadata" : { - "name" : "Horizon+ Evo Lowstep" - }, - "text" : "price: 4499.99\nname: Horizon+ Evo Lowstep\nshortDescription: The Horizon+ Evo Lowstep is a versatile electric hybrid bike designed for riders seeking a thrilling and efficient riding experience on a variety of terrains. With its powerful Bosch Performance Line Sport drive unit and integrated 500Wh battery, this e-bike enables riders to cover long distances with ease. Equipped with features prioritizing comfort and safety, such as a suspension seatpost, stable tires, and integrated lights, the Horizon+ Evo Lowstep is a reliable companion for everyday rides.\ndescription: ## Overview\n\nIt's right for you if...\nYou desire the convenience and speed of an e-bike to enhance your riding, and you want an intuitive and durable bicycle. You prioritize having one of the fastest motors developed by Bosch.\n\nThe tech you get\nA lightweight Alpha Smooth Aluminum frame with a lowstep geometry, a Bosch Performance Line Sport (250W, 65Nm) drive unit capable of sustaining speeds up to 28 mph, a fully encased 500Wh battery integrated into the frame, and a Bosch Purion controller. Additionally, it features a 10-speed Shimano drivetrain, hydraulic disc brakes for reliable stopping power in all weather conditions, a suspension seatpost, wide puncture-resistant tires for improved stability, ergonomic grips, a kickstand, lights, and a rack and fenders.\n\nThe final word\nThe Horizon+ Evo Lowstep offers an enjoyable and user-friendly riding experience for longer commutes, recreational rides, and adventures. It boasts an extended range battery, a high-performance Bosch motor, an intuitive controller, and a suspension seatpost for a smooth ride on various road surfaces.\n\n## Features\n\nSuper speedy assist\nExperience effortless cruising through errands, commutes, and joyrides with the new Bosch Performance Sport drive unit, allowing acceleration of up to 28 mph.\n\n## Specs\n\nFrameset\n- Frame: Alpha Platinum Aluminum, Removable Integrated Battery (RIB), smooth welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR\n- Fork: Horizon Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR\n- Max compatible fork travel: 50mm\n\nWheels\n- Front Hub: Formula DC-20, alloy, 6-bolt, 5x100mm QR\n- Front Skewer: 132x5mm QR, ThruSkew\n- Rear Hub: Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR\n- Rear Skewer: 153x5mm bolt-on\n- Rim: Bontrager Connection, double-wall, 32-hole, 20mm width, Schrader valve\n- Tire: Bontrager E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c\n- Max tire size: 700x50mm with or without fenders\n\nDrivetrain\n- Shifter: Shimano Deore M4100, 10-speed\n- Rear Derailleur: Shimano Deore M5120, long cage\n- Crank: ProWheel alloy, 170mm length\n- Chainring: FSA, 42T, steel w/guard\n- Cassette: Shimano Deore M4100, 11-42, 10-speed\n- Chain: KMC E10\n- Pedal: Bontrager City pedals\n\nComponents\n- Saddle: Bontrager Boulevard\n- Seatpost: Alloy, suspension, 31.6mm, 300mm length\n- Handlebar:\n - Size: XS, S, M - Bontrager alloy, 31.8mm, comfort sweep, 620mm width" - }, - "d7fdcf13-6a1b-41da-b704-8182c172d85e" : { - "embedding" : [ 0.026251642, 0.0017653623, -0.0359233, -0.020497076, -0.012142987, 0.0082258945, 0.015013147, -0.03657852, -0.0085677495, -0.03843024, 0.012563184, -0.006730277, -0.027804235, 0.016152665, -0.006854912, 0.015853541, 0.020069757, -0.021864498, 0.009579072, -3.3295286E-4, 0.005715394, 0.0124065, -0.032932065, 0.0031924304, -0.0076988675, -0.029143168, 0.037376184, -0.0108752735, 0.022989772, -0.007869795, 0.012000547, -0.006783692, -0.022491233, -0.020169465, 2.928917E-4, 0.016594227, 0.014272461, -0.0036411155, 0.038886044, -0.013859386, 0.034612853, -0.00283277, 0.0064988127, 0.011537618, -0.020155221, 0.017505843, 0.036379106, -0.009977903, 0.007328524, 0.01824653, -0.022177866, 0.032675672, -0.0187878, -0.003391846, -0.011195763, -0.03090942, 0.021237763, 0.0056085642, 0.011879473, -0.003317065, -0.010106099, 0.0115589835, -0.035723884, 0.0025087197, -0.014023191, -0.025197588, -0.041136593, 0.0056228084, -0.007919649, 0.00623886, 0.029513512, 0.014265339, 0.055636957, -0.0059824684, 0.015825054, -0.01029127, -0.013254017, -3.87258E-4, 0.002312865, -0.009693024, 0.012862307, 6.5121666E-4, -0.015141343, 0.02301826, 0.0184317, 0.008916727, -0.009963659, 0.025468223, -0.023331627, -0.0022167182, 0.0013914581, 0.014714024, 0.017947406, 0.014044557, 0.013453432, 0.010262783, -0.036806427, 0.051249813, 0.007321402, -0.015654126, 0.017249452, -0.009201607, -0.020254929, -0.015939005, -0.020311905, -0.044840027, -0.023459824, 0.012905039, 0.009087655, 0.008995069, -0.02982688, 0.030966397, -0.009757121, 0.0015285563, -0.0104194665, -0.014293827, 0.038059894, -0.017634038, -0.0028879654, -0.014030313, 0.021180788, 0.019015703, -2.34803E-4, -0.014528852, 0.02176479, 0.03823082, -0.015639883, -0.016252372, 0.030282686, -0.016223885, -0.017007304, 0.0045473883, 0.018944483, -0.010832542, 0.0043088016, 0.002563915, -0.014984659, 0.0151128555, -0.028032139, -0.004850073, 0.007869795, 0.008581993, -0.0033010407, 0.002592403, -0.008154674, 0.027775748, -0.014236851, 0.01043371, 3.7167867E-4, -0.0019923756, 0.017847698, -0.014236851, 0.009052045, 0.013631482, -0.0045794374, -0.005800858, -0.017078523, 0.05213294, -0.019414535, 0.01581081, -0.00935829, 0.0029752098, 0.019542731, -0.0027562086, 0.040168002, 0.020810444, -0.0019959367, -0.002847014, -0.009151752, -0.027633308, -0.010334002, 0.018844776, -0.025325784, 0.024727536, -0.012969137, 0.02100986, -0.0016549716, -0.004864317, -0.014600072, -0.00957195, 0.012876552, -0.029371072, 0.0019656683, 0.014600072, -0.011067566, -0.008574871, 0.013781044, -0.006324324, 0.0038565556, -0.02086742, 0.022206353, 0.035410516, -0.0061106645, -0.002352036, -0.5825215, -0.02620891, -1.5479192E-4, -0.026166178, -0.0045616324, 0.0060465666, 0.019599706, 0.0044832905, -0.0027882578, 0.0043408507, -0.011288349, -4.464595E-4, -0.0102699045, -0.0088312635, -0.017804965, -0.030710006, -0.0028381115, -0.007876917, 0.01975639, -0.004045288, -0.0075065736, 0.0016941425, -0.013980459, 0.022006938, -0.0066483743, 0.007535062, 0.015212563, -0.012128742, -0.0017306427, 0.012249816, -0.038515702, 0.048828337, 0.02746238, -0.007770087, 0.04424178, -0.03187801, 0.0070828153, 0.0030606736, 0.029428048, 0.026223155, -0.02566764, -0.0039598243, -0.007275109, -0.020440102, -0.029769903, 0.0012552501, 0.01143791, -0.004173484, 0.014350803, -0.022961285, 0.022106646, 0.008218773, 0.012449232, -0.011993425, 0.003398968, -0.018545652, 0.037803505, 7.803026E-4, 0.005355734, 0.0027188184, -0.005316563, 0.0031212105, 0.0018873264, -0.01850292, -0.017548574, 0.029570488, -0.033473335, -0.039455805, 0.025197588, 0.008895361, 0.017876185, 0.009600437, -0.0114806425, 0.036122713, 0.02656501, 0.035154127, 0.045808617, 0.030396638, -0.0070970594, 0.014657048, 0.006943937, -0.0045367056, -0.0075421836, -0.038031407, 0.018730825, -0.0019460828, 0.026037982, -0.01850292, 0.039341852, 0.008375456, 0.019443022, 0.0030784786, -0.013090211, -0.025753103, 0.003062454, 0.06352812, 0.012905039, 0.017933162, -0.0033046016, -0.028302774, -0.016038714, -0.0132967485, 0.014899195, 0.0097784875, 0.01810409, -0.0013353724, 0.009671657, -0.03549598, 0.003739043, -0.031991962, -0.008873995, 0.0016620936, -0.0382878, -5.0966715E-4, -0.013802409, -0.031279765, 0.034983195, 0.014229729, 0.028844045, -0.019414535, 0.008005112, 0.002090303, 0.02566764, -0.005726077, 0.011445032, 3.585475E-4, 0.014728268, 0.004226899, -0.014336559, -0.013011869, 0.032248355, 0.009906683, 0.034755293, 0.0030393077, 0.011993425, 0.031222789, 0.0087956535, -0.009564828, 0.017491598, -0.02563915, -0.009301314, 0.0030197222, -0.0065344223, -0.04728999, -0.016622717, -0.026621984, -0.0107613215, 0.003689189, -0.008396822, -0.0017920699, 0.008731555, -0.025126368, -0.033644263, -0.018987216, -0.0040168003, -0.013432066, -0.027476624, -0.00910902, -0.019329071, -0.0019460828, 0.003306382, 0.010618881, -0.0011386275, -0.01355314, 0.004597242, 0.009920927, 0.020753467, 0.032533232, -0.0055693933, -0.040168002, 0.0010763102, 0.0076276474, -0.025838567, 0.03897151, -0.018673848, 0.015995981, -0.029171657, -0.015725346, -8.773397E-4, -8.145772E-5, 0.0092870705, 0.02814609, -0.04503944, 0.008525018, 0.005708272, 0.005572954, 0.013503286, 0.0017804966, -0.006908327, 0.0069759856, -0.017876185, 0.015483199, 0.006911888, 0.006691106, -0.024912708, 0.0069332537, 0.014094411, 0.0025514516, 0.008396822, -0.007748721, 0.022833088, -0.025909787, 0.03620818, -0.017263696, -1.2274299E-4, -0.035439003, 0.02212089, -0.020525565, 0.009472242, 0.02287582, 0.026664717, -0.022932796, -0.03424251, 0.002907551, -0.02061103, 0.0017493379, 0.007834185, 0.044555146, -0.018004382, -0.039997075, -0.013254017, 0.0064275926, 0.006352812, -0.018545652, -0.0134107005, -5.5195397E-4, -0.009928049, 0.01559715, -0.001688801, -0.025981007, 0.0026333544, 0.020383125, 0.03298904, -0.010782687, 0.0061925673, -0.0019086923, 0.026892621, -0.023174943, 0.03469832, 0.00362153, 0.026878377, 0.030852444, 0.0101203425, -0.025211832, 0.009073411, 0.011359569, 0.0021437178, 0.021351716, 0.03672096, 0.017562818, -0.0075991596, 0.013075967, -0.002925356, -5.3014286E-4, -0.0034986758, -0.004668462, 0.026180422, 0.0071718404, 0.008197406, -0.0051100254, -0.005259587, 0.025382759, 0.021138055, 0.037119795, -0.020354638, 0.00817604, -8.773397E-4, -0.02710628, -0.0045260224, -0.034812268, 0.019670926, -0.0089096045, 0.014699779, -0.008752922, 0.02968444, 0.009165997, 0.003685628, 0.038715117, 0.019257851, 0.048742875, -0.01656574, -0.009116143, 0.0027900382, 0.017577063, -0.038031407, -0.0074994517, -0.017619794, -0.007748721, 0.025553687, 0.011110298, -0.0010576149, 0.006716033, -0.0027793553, 0.023744702, 0.016209641, -0.021722058, 0.038515702, -0.018189553, -2.3035175E-4, -0.015867786, -0.020226441, 0.007378378, -0.027975162, -0.039826147, 0.01247772, -0.009564828, -0.013318115, -0.007819941, 0.030168734, 0.012228451, -0.0098924395, -0.025382759, -0.0011644447, -0.027576331, 0.0025478906, -0.009294192, 0.0028630386, -0.010369612, -0.008553506, -0.0191439, -0.021109568, -0.014550218, 0.0017074962, -0.010711468, 0.052189916, 0.009863951, 0.009586194, 0.031792548, -0.03800292, -0.015468954, -0.017634038, -0.003445261, 0.018275017, 0.0149989035, -0.01491344, 0.0019763513, -0.023117967, 0.0011315056, 0.0063919825, -0.026223155, 0.0014867147, -0.024001094, 0.02578159, -0.0096289255, -0.01911541, 7.6783914E-4, -0.0064703245, 0.009849708, 0.017434623, -0.009422388, 0.04173484, 0.011680057, 0.0224485, -0.01491344, 0.013887874, 7.1798527E-4, 0.013880751, -0.017591307, -0.039683707, 0.0046613403, -0.006826424, -0.015696857, 0.033359386, 0.0069581806, 0.029598976, 0.009244339, 0.004212655, -0.018816289, 0.011124543, -0.011737034, -0.0025389881, 0.0044904123, -0.014927683, -0.021351716, 0.006716033, 5.0343544E-4, -0.0038636776, -0.013567384, -0.006947498, 0.0139021175, -0.0059895907, -0.021807522, -0.021166544, -0.034726806, 0.01907268, -0.03746165, 0.011729912, 0.004672023, -0.014108655, -0.012086011, -0.007948137, -0.006801497, 0.0012739453, -0.021636594, -0.02979839, 0.0115945935, -0.014600072, 0.014956172, 7.077474E-4, -0.009158875, 0.022719137, -0.021052592, 0.03036815, 0.028487945, -0.013496164, 0.011380934, -0.021408692, -0.007478086, -0.0022452062, 0.017904675, 0.019784879, -0.04757487, 8.3416264E-4, -0.0061712014, -0.010262783, 0.0038458726, 0.024756026, -0.023474067, -0.022363037, -4.0484042E-4, -0.010305515, 0.036008764, -0.008845507, -4.266515E-4, 0.015169831, -0.021921474, 0.015768077, -0.009372534, 0.015283783, 0.00286838, 0.013125821, 0.0013558482, -0.011964937, 0.005708272, -0.005245343, -0.010747078, 0.0045651933, 0.013239773, -0.02323192, -0.001796521, -0.01046932, -0.006420471, 0.018958727, -0.01803287, -0.015468954, -0.04757487, 0.030197222, -0.0118581075, -0.012506208, 0.01817531, 0.025197588, -0.0011733472, -0.007848429, 0.030225711, 0.03843024, 0.024813, -0.020383125, -0.014215485, -0.019656682, -0.035268076, -0.019343315, 0.023602262, 0.007777209, -0.017975893, -0.018488677, 0.007748721, -0.00935829, 0.009977903, -0.008097699, -0.021465667, -0.012591672, -0.014899195, -0.009037801, 0.0399401, -0.004650657, -0.023531044, -0.03786048, -0.019371804, -0.012150109, -0.00942951, -0.0018730824, -0.018915996, 0.023217676, 0.023972606, 0.037775017, 0.0033135042, 0.0045580715, 0.02675018, -0.001832131, 0.0016905816, -0.03674945, 0.0055800765, -0.0446691, 0.020625273, 0.009643169, 0.018089846, 0.0049818293, -0.028302774, -0.0025033783, 0.020411612, -0.021351716, -0.014799488, -0.015568662, -0.043301675, -0.005184806, -0.012876552, -0.009365412, -0.0043301675, -0.041763328, -0.0076134033, 0.036521547, 0.00867458, 0.011338202, 0.025952518, 0.004746804, -0.03051059, 0.05256026, 0.0075279395, 0.030823957, 0.02129474, -0.0017368745, -0.018346237, -0.048742875, 0.032960553, -0.0022274011, -0.0075635496, 0.010576149, -0.03147918, -0.023431335, 0.004704072, 3.0179418E-4, -0.022177866, 0.009379656, 0.004493973, -0.0140160695, 4.9097196E-4, -0.048742875, -0.031735573, 0.0018223383, -0.0031781865, -0.027661795, 0.027975162, 0.0010139928, -0.017064279, 0.019329071, -0.01900146, 0.006235299, -0.021679327, 0.021722058, 0.023929873, -0.0033135042, -0.013182797, -0.03911395, -0.011409422, 0.002277255, 0.0077202334, 0.030681517, -0.021964205, 8.8980317E-4, 0.028630385, -0.0064632026, 0.0069581806, -0.03814536, 0.0012641526, 0.034214024, 0.036008764, -0.013802409, -0.018403213, -0.028060626, -0.012791088, -0.00745672, 0.012342403, 0.040424395, 0.0056619793, 0.0015899835, 0.015269538, -0.021736303, 2.3049084E-5, 0.026621984, 1.3209059E-4, 0.006253104, 0.0029769903, -0.0020279856, 0.011915083, 0.003137235, 0.045979545, -0.014073045, 0.015397735, 0.03643608, 6.9750956E-4, -0.012563184, -0.02058254, 0.027205989, 0.023744702, -0.019770633, 0.008760043, 0.0034363584, -0.005259587, 0.002277255, -0.03387217, -0.018403213, -0.005533783, -0.0043693385, 0.003682067, 0.0076490133, 0.016793644, -0.024855733, -0.007812819, -2.9239092E-5, -0.019699415, -0.034270998, -0.0057403212, 0.017078523, -0.02545398, -0.016622717, -0.009208729, 0.04033893, 0.028815556, 0.025154855, -0.01071859, 0.004764609, 0.026052225, -0.021195032, -0.009985025, 0.011957815, 0.024684805, -0.018645361, 0.0028737215, -0.001193823, -0.029598976, 0.029342584, -0.012499087, -0.038059894, -5.323685E-4, 0.0075421836, -0.016466033, 0.0091731185, -0.040025562, -0.011024835, -0.006178323, -0.0064988127, -0.014194119, -0.013467676, 0.001448434, 0.0010371392, 0.017947406, 0.027163256, -0.014571584, 0.032333817, 0.005213294, 0.004636413, 0.003069576, -0.008752922, -0.015867786, -0.0021526203, 0.0029680878, 0.008788532, 0.0024837928, -0.008660335, -0.004597242, -0.02667896, -6.9750956E-4, -0.01573959, 0.01581081, 0.044583634, -0.0079267705, -0.022163622, 0.030681517, -0.036663987, -0.008987946, -0.015768077, -0.011644448, 0.009849708, -0.014436266, 0.0024303778, 0.028117603, -0.0039242143, -0.05703287, -5.0076464E-4, -0.026251642, -0.030111758, -0.0024980367, -0.031450693, 0.0012000547, 0.0018695215, 0.0103838565, -0.0018962289, 0.01566837, 0.016537253, 0.010334002, -0.010020635, 0.010084732, 0.009087655, 0.017804965, 0.0040915813, 0.0064062267, -0.046235934, -0.014614316, 0.03717677, 0.016978815, 0.013994703, 0.019371804, -0.024029583, -5.909023E-5, 0.004120069, -0.0081902845, 0.0016104592, 0.010540539, -0.0107257115, -0.04481154, -0.018531408, 0.007841307, 0.013275383, 0.01244211, 0.0051100254, 0.0010487125, 0.0013264699, 0.0044797296, -0.0036304325, -0.0033936265, -0.017263696, 0.017263696, 0.013681336, 0.008617603, 0.008240138, 0.045979545, 0.029513512, -0.025895543, 0.008468042, 0.014742512, -0.005238221, -0.017092768, 0.017904675, -0.0065344223, 0.0035057978, -0.0071077426, -0.0056228084, 0.0018027528, -0.0039598243, -0.003147918, -0.0049390974, -0.042760406, 0.0430168, 0.02731994, -0.028559165, -0.03717677, 0.0015401295, -0.010034879, 0.0015721784, 0.008767165, 0.016266616, -0.029627463, 0.0073498897, 0.015411979, -0.020055514, -0.038772095, 0.036407594, 0.021821767, -0.016437545, -0.012214207, 0.19884586, 0.015070124, -0.019414535, 0.053842217, 0.014201241, 0.011502008, -0.0010042001, -0.011067566, 0.015654126, -0.005045927, -3.051326E-4, 0.007955259, -0.025112124, -0.0065486664, 0.015853541, 0.021821767, -0.039170925, -0.027291453, -0.021024104, -0.009244339, 0.023730459, -0.0016460691, -0.009237217, -0.020981371, 0.0061355913, 0.005120708, 0.007125547, -0.016337836, 0.022348793, 0.008574871, -0.009878195, -0.019457268, -9.067179E-4, -7.531501E-4, -0.024100803, 0.006160518, 0.011523374, -0.011145908, -0.001211628, 0.04783126, 0.0012125182, -0.007941015, 0.01573959, -0.029171657, -0.0024535244, -0.0031835278, -0.023445578, 0.0027740137, -0.0076703792, -0.005124269, -0.024756026, -0.005825785, 0.026579253, 0.008432432, 0.0018677409, -0.02155113, -0.007713111, -0.014115777, 0.007727355, 3.1114178E-4, -0.019357558, 0.028131846, -0.012912162, 0.040652297, -0.014407778, 0.009279949, -0.026337106, -0.015967494, 0.03566691, 0.003413212, -0.024157777, -0.0027704528, -0.023744702, 0.0055231005, -0.01046932, -0.018189553, 0.0059575415, -0.006356373, 0.018146822, 0.021793278, 0.01742038, -0.014286704, 0.008126186, -0.0037461647, 0.016679693, -0.017306427, 0.02061103, 0.004721877, 0.00860336, 0.006808619, -0.009920927, 0.0032511868, -0.0032458452, -0.0053771, -0.016095689, -0.013531774, -0.018061357, 0.002563915, -0.019485755, 0.020482833, -0.02204967, 0.034214024, 0.0029645269, -0.027733015, -0.046577793, -6.997352E-4, 0.003165723, 0.03965522, -0.0012499086, -0.007691745, -0.013011869, -0.04310226, 0.005747443, -0.016295105, 0.022149378, -0.010412344, -0.007004474, -0.023217676, 0.0040951422, -0.018745068, 0.022904309, -0.02502666, 0.0054803686, -0.005181245, 0.0027508673, -0.023701971, -0.010512052, 0.013346602, -0.002857697, -0.031251278, 0.03133674, 0.008111943, 0.012014791, -0.008767165, 0.0028220871, 0.0044832905, 0.0061925673, -0.029399559, -0.0037497259, 8.862422E-4, 0.0031710644, 0.0041307523, 0.008197406, -6.521069E-4, 0.019856097, -0.041962743, -0.007335646, -0.016864864, -0.009835463, -0.020368882, -0.024186267, -7.2199135E-4, -0.0025799396, -0.030880934, 0.015768077, -0.0032743332, -0.014023191, -0.030482102, 0.011160153, -0.010903761, -0.021636594, -0.014984659, 0.009928049, -0.0017920699, -0.022961285, -0.013318115, -0.18243681, 0.022761868, 0.034869246, -0.013524652, -7.4780855E-4, 9.418827E-4, 0.01168718, 0.0017048254, -0.024157777, 0.0056441743, 0.011672935, -0.0075991596, -0.04270343, -0.01491344, -0.0012365549, 0.009579072, -0.01918663, 0.025938274, 0.023958363, 0.0065415446, 0.006064371, -0.0076988675, 0.027405404, -0.03287509, -0.014600072, -0.009771366, -4.7572645E-5, 0.033188455, 8.0879056E-4, 0.005373539, 0.014578707, -0.03717677, 0.023417091, -0.02885829, 0.040139515, -0.014870708, -0.0064632026, 0.013709824, -0.005925493, 0.03484076, 0.010042001, 0.013460554, 0.00842531, 0.0059860297, 5.1589886E-4, 0.039854635, 0.005864956, 7.45583E-4, 0.013275383, -0.0018481555, 0.05005332, -0.025325784, 7.1620476E-4, -0.0136386035, 0.013631482, 0.012470598, 0.0040274835, 0.0019763513, 0.015568662, 0.0012338841, -0.0030873811, -0.030140247, -0.00369275, -0.009415266, -0.013759677, -0.019913074, 0.03079547, 0.033387873, -0.015141343, 0.013481921, -0.02828853, -0.016622717, -0.020326149, -0.007225255, 0.02739116, -0.0018481555, -0.021793278, -0.0029645269, 0.027476624, 0.0207962, 0.010277026, 0.03823082, -0.001466239, 0.028345507, -0.010049122, 0.003133674, -0.0035396272, 0.016579984, -0.010177319, -0.010675858, 0.01122425, -0.010960737, 0.016095689, -0.008361212, -0.012933527, 0.0126557695, 0.012306793, 0.004686267, 0.017705258, 0.0036268716, 0.0050530494, 0.0034363584, -0.019556975, -0.0070472057, 0.015440467, 0.02157962, 0.03726223, -0.0037034329, 0.007328524, 0.010896639, -0.01961395, 0.0026084275, 0.022491233, 0.016551496, -0.02251972, -0.00921585, -0.009201607, -0.01907268, 0.014714024, -8.6843723E-4, 0.020354638, -0.027163256, -8.3549804E-4, 0.0042696306, -0.01720672, -0.03327392, -0.06489554, -0.019556975, 0.030453613, 0.021380203, -0.017947406, 0.018574141, 0.0034327975, 0.025126368, -0.021992695, 0.044555146, 5.973566E-4, -0.01824653, -0.028203066, 0.030539077, 0.011680057, -0.010953615, 0.024941197, -0.014151387, -0.016950328, 0.015483199, -0.015582906, -0.018189553, -0.03051059, -0.010212928, -0.013075967, -0.010697223, -0.022690648, 0.016964572, 0.027220232, 0.0027918187, 0.004184167, -0.011715667, 0.017163986, 0.0058400286, 0.010184441, 3.2471807E-4, -0.006103542, -0.027092036, -0.012207084, -0.046492327, 0.0045082173, 0.016010225, 0.022861576, -0.007805697, -0.024684805, -0.023260407, 0.01118864, 0.030425126, 0.010861029, -0.02800365, 0.019286338, -0.0014787024, -0.016793644, -0.019371804, 0.022234842, -0.016722424, 0.0031728449, 0.015369247, -0.008930971, -0.0064453976, -0.013909239, 0.019599706, -0.039170925, 0.05159167, -0.006139152, -0.019499999, 4.7433543E-5, 0.0017190694, 0.016651204, -0.02495544, -0.008980825, 0.018460188, 0.0024196948, 0.021252008, -0.035837837, -0.007955259, 0.027006572, -0.018531408, 0.010106099, -0.010113221, -0.040253468, -0.012912162, 0.029513512, -0.009579072, -0.0064026657, 0.024542365, -0.0065842764, -0.013959093, 0.015981738, -0.039712194, 0.030140247, 0.030994885, 0.034071583, -0.001025566, -0.031650107, -0.008646091, 0.0065059345, 0.016608473, -0.0022505478, 0.0022434257, -0.024357194, 0.0022452062, -0.09156026, 0.04298831, 0.025681883, -0.016252372, 0.0016371666, 0.023417091, -0.010056245, -0.008083454, 0.007413988, 0.009856829, 0.0092870705, 0.011238495, -0.0011137006, -0.015198319, -0.004707633, -0.01373119, 0.0086817015, 0.008325602, 0.022291817, 0.008788532, 0.01975639, -0.006783692, -0.00960756, 0.022106646, -0.024642073, 0.015639883, -0.0060572494, 0.0075849155, 0.008895361, 0.0054768077, 0.043871436, -0.007876917, -0.013510408, 0.03464134, -0.0055052955, 2.3079687E-4, -0.007435354, 0.017192475, 0.0014154948, -0.028373994, -0.015483199, -0.0020386686, 5.768809E-4, -5.661979E-4, -0.011587472, -0.014671292, 9.514529E-5, -0.0038351896, 0.028046383, 0.034157045, 5.590759E-4, 0.009721511, -0.009685902, -0.024627829, -0.01025566, -0.027205989, -0.011060445, -0.023060992, -0.014970415, 0.0017404354, 0.03843024, 0.008731555, -0.00616764, -0.0029502828, -0.0065201786, -0.019813366, -0.01911541, 0.0059148096, 0.0033829436, -0.011010591, -0.024613585, -0.0063919825, 0.02190723, 0.014543097, 0.009550584, -0.018331993, 0.006142713, -0.012591672, -0.040168002, 0.014144265, 0.013688458, -0.011516252, -0.013439189, -0.0033473335, 0.026835645, 0.007748721, -0.05187655, 0.015896274, -0.020012781, 0.0050138785, -0.018146822, 0.01989883, 0.01538349, 0.011395178, 0.027832722, -0.0022345232, 0.0012926406, 0.005889883, 0.003069576, 0.0052702697, 0.024513878, 0.0036233105, 0.012876552, 0.0025033783, -0.021650838, 0.015639883, -0.02578159, -0.012392256, -0.012634404, -0.0025087197, -0.013667092, -0.030681517, -0.006338568, 0.024314461, 0.0011288348, 0.013154309, 0.0012757258, 0.008852629, -0.013318115, 0.025724614, 0.02925712, -3.0602285E-4, -0.008496529, -0.01445051, 0.050537616, -0.013909239, -0.010490686, 0.014236851, 0.025496712, -0.002667184, 0.0038102628, 7.322292E-4, 0.003398968, -0.015654126, 2.2211696E-4, -0.014614316, -0.0072501823, 0.011836741, -0.011202885, 0.10244265, 0.0027775746, -0.031564645, 0.005295197, -0.015027392, 0.028103359, 0.0137668, 0.005291636, -0.02566764, -0.008396822, 0.004867878, 0.01122425, -0.010526296, -0.007371256, -0.03726223, 0.0038387508, 0.00942951, 0.0071362304, 0.0037426038, -0.010248538, 0.036521547, -0.026080715, -0.0039633852, -9.454437E-4, -0.005669101, -0.014550218, 0.023588018, 0.021892985, -0.01727794, -0.026180422, 0.018987216, 0.0025852812, -0.030282686, -0.03606574, 0.02800365, -0.0064275926, -0.005117147, 0.0022095963, 0.0032885773, -0.006773009, 0.024613585, 0.02502666, -0.011566106, -0.014464755, 0.0076490133, -0.0030553322, -0.01968517, -0.017292183, -0.022776112 ], - "id" : "d7fdcf13-6a1b-41da-b704-8182c172d85e", - "metadata" : { - "name" : "Velobright Commuter Pro X1 BeamLight Set" - }, - "text" : "price: 189.99\nname: Velobright Commuter Pro X1 BeamLight Set\nshortDescription: \ndescription: ## Overview\nLight up your ride with the Velobright Commuter Pro X1 BeamLight Set. This high-performance light set combines the power of a Daytime Running Light with a focused front beam that illuminates the path ahead without blinding oncoming riders. With advanced features like a visible fuel gauge, wireless connectivity, and a chargeback function, this light set is designed to enhance your visibility and convenience on every ride. Complete with the Flare RT top light package, the Velobright Commuter Pro X1 BeamLight Set ensures that you'll be seen from any angle.\n\n## Product Details\n- Daytime Running Light visibility combined with a bright Commuter Pro X1 front light\n- Focused front beam, designed to keep light on the ground ahead and prevent blinding oncoming riders\n- Flare RT provides ultimate visibility for any road, city, or path\n- Specifically designed focus, flash, and range patterns for daytime visibility up to 2km\n- Commuter Pro X1 modes: high 1000LM — 1.5hrs, low 500LM — 3hrs, day flash 300 LM — 12hrs\n- Flare RT Flash modes: 90LM — 6hrs, 45LM — 12hrs, 5LM — 15hrs; Steady modes: 25LM — 4.5hrs, 5LM — 13.5hrs\n- Blendr-compatible for integrated mounting on compatible Blendr stems, helmets, and helmet mounts\n- USB-rechargeable with included USB-C and micro USB cable\n\n## Features\n1. High Beam: Illuminate the entire path with a bright 1000 lumen high beam setting, perfect for mountain biking.\n2. Wireless Connection: Wirelessly pair with Flare RT for single-button power-up on both front and rear lights.\n3. Fuel Gauge: Dual-fuel gauge clearly displays the available battery life of the lights.\n4. Chargeback with USB-C: USB-C charging port supports chargeback, allowing you to recharge your phone or cycling computer on the go.\n5. Weather-Ready: Durable design ensures water resistance for worry-free riding in any weather.\n6. Kindbeam: Helps direct light towards the road while avoiding blinding oncoming riders.\n7. Flash, Focus, Range: Designed with specific focus, flash, and range patterns to maximize visibility during the day.\n8. Blendr Compatibility: Offers seamless integration with compatible Blendr stems, ensuring a clean and secure mount.\n9. Compatibility: Check our compatibility chart to ensure proper compatibility with your bike and accessories.\n\n## Specifications\n- Battery: Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh\n- Rechargeable: Yes\n- Charge Time: 4 hours for full charge, 2 hours for rapid charge\n- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm)\n- Waterproof Rating: IPX4\n- Wireless Compatibility: ANT+ / Bluetooth\n- Weight: 257g\ntags: [bikelight]" - }, - "8b765dca-6dc0-44ef-b4a9-9eba89101a37" : { - "embedding" : [ -1.3025789E-4, -0.004780202, -0.01727447, -0.012350896, 0.0034216738, 0.0072314986, -0.0043430952, -0.023652734, -0.0084553985, -0.03731845, 0.0049480516, 0.011994217, -0.0020736358, -1.9527756E-4, -0.018617263, 0.010217814, 0.0019739752, -0.0059236744, 0.012770519, -0.0066720014, 0.012917386, 0.016770922, 0.0061160014, -0.012532732, -6.407989E-4, -0.001617296, 0.033793617, -0.008343499, -0.004892102, -0.024184257, 0.014043374, -0.0040773344, -0.0077420394, -0.04056353, -0.012840455, -0.0073084296, 0.0055600014, -0.00707414, 0.03790592, 0.02503749, 0.031779427, 0.017260483, -0.030884234, 0.01531623, 0.005199825, 0.009805185, 0.02573686, -2.1123196E-4, -0.0058642277, 0.027611176, -0.01765213, 0.0065740896, 0.0036542148, -0.009770216, 0.009812178, 0.0021750445, 0.00325907, 0.0032066172, 0.018323526, 0.018407451, -0.010595474, 0.013127198, -0.031415757, 0.0027555227, -0.019918093, -0.031108033, 0.009504455, -0.005059951, -0.0033272586, 0.026268383, 0.023275075, 0.0072734607, 0.015456105, -0.0014616859, 0.022058168, -0.008784102, -0.0017991324, -0.0064272215, 0.020897212, -0.00953243, 0.01993208, -0.005587976, -0.035639957, 0.007000706, 0.025205338, -0.02786295, 0.0019267678, -5.660536E-4, -0.007504253, 0.005563498, -0.005818769, 0.023303049, -0.005497058, 0.025107427, 0.008000807, -2.2117615E-4, 0.0029793214, -3.479372E-4, 0.0026296359, -0.01569389, -0.011357789, 0.0013497865, 0.0040773344, -0.012399852, -0.007000706, -0.03899694, -0.022939377, -0.007846945, -0.0024250697, -0.033262096, -0.0047697118, 0.0013305538, -0.007049662, 0.014518946, 0.022421842, -0.0032398372, 0.04112303, 0.01058848, 0.012092128, -0.030800309, 0.02840846, 0.0029023907, 0.008028782, -0.025918698, -0.00763014, 0.022435829, 0.01039965, -0.004353586, -0.009861134, 0.008581285, 0.006906291, -0.01863125, 0.022058168, 0.012134091, -0.01808574, 0.010994116, -0.0017580445, 0.0063013346, -0.04372469, -0.031275883, -9.1442786E-4, 0.006511146, -0.013015298, 0.0050179884, 0.0033360007, -0.004664806, -0.0040668435, -0.007168555, 0.01428116, -0.043808613, 0.0040948186, 0.0073224166, 0.03600363, 0.014532934, 0.012322921, 2.996915E-5, 0.013274066, 0.022058168, -0.012511752, -0.021736458, -0.014924582, 0.022281967, 0.006560102, -0.03605958, 0.017190546, 0.034129318, 0.018994922, -0.009035876, 0.0018375979, -0.011770418, -0.012232003, 0.023764635, -0.03583578, 0.012469789, -0.0029443528, 0.023876535, -0.0067069703, -0.013120204, -0.0048711207, 0.012211022, 0.00964433, -0.017400356, 0.010910192, 0.016491173, -0.012770519, -5.734844E-4, 0.010973135, -0.005157863, 0.008217612, 0.014365085, 0.018841062, -0.014840658, -0.0057977876, -5.1403785E-4, -0.59664756, -0.049627382, -0.0130502675, -0.011322821, -0.012392858, 0.017456306, 0.0011959248, 0.011595575, -0.022253992, 3.2564474E-4, -0.027219528, 0.017931879, -0.009133789, -0.01776403, -0.025191352, -0.016393261, 0.022841465, 0.0040283785, 0.014169261, -0.0019407552, -0.05203322, -0.017959854, -0.013672708, 0.012833462, -1.4752362E-4, 1.3757944E-4, 0.018799098, -0.009798191, 0.001511516, 0.012294946, -0.04045163, 0.039528463, 0.0034094348, -0.003961938, 0.04806079, -0.04943156, -0.0051403786, 0.02226798, 0.0105465185, 0.029205743, -0.026366295, -0.021624558, -0.01629535, -0.013022292, -0.017498268, 0.0015045224, 0.0327026, -0.023163175, 0.0012492519, -0.04545913, -0.007777008, 0.019694295, 0.016043575, -0.014267174, 0.026548132, 0.0010001009, 0.021918295, 0.004423523, 0.006997209, -0.01009892, -0.0020386672, 0.021764433, -0.010938166, -0.00787492, -0.012099123, 0.007846945, -0.04045163, -0.012204028, 0.009980028, -0.011057059, 0.0063083284, 0.018938974, 0.0030859755, 0.03242285, 0.02763915, 0.038381495, 0.025848761, -0.0038570324, -9.069971E-5, 0.019946067, 0.014029387, 0.03046461, 0.008371473, -0.017819978, 0.01710662, 0.001392623, -0.0025089942, 0.007025184, 0.03541616, 0.01428116, 0.02726149, 0.0070077, 0.0053117247, -1.541895E-4, 0.0015709626, 0.027149592, 0.0015875727, 0.014022393, -0.009959047, -0.028464409, -0.021358797, 0.02612851, 0.024338119, -0.018155677, 0.021680508, 0.029401567, 0.012036179, 0.009364581, -0.0017134595, -0.0063188192, -0.012917386, -0.008126694, -0.03057651, 0.007637134, -0.01542813, -0.031080058, 0.007343398, 0.013008305, 0.028114723, -0.020491578, -0.019414546, -0.0044549946, 0.03356982, 0.016323324, -0.017232507, -0.0065775863, 0.017414344, 0.009511448, -0.0073224166, -0.0036087555, 0.026534144, 0.022198044, 0.04708167, -0.0016566357, 0.03667503, -4.1437746E-4, 0.02004398, 0.0019285162, 0.006514643, -0.03675895, -0.01770808, 0.0013768871, 6.6702534E-4, -0.037122626, 0.0045668944, -0.020016005, 0.0055565042, 0.007818971, 0.0044340137, 0.007888908, -0.01032272, -0.0074063414, -0.02763915, -6.25063E-4, 0.0038710197, -0.02189032, -0.028758146, -0.04257772, -0.008749134, -0.008819072, 0.018561313, -0.0039479504, -0.014672808, -0.02151266, 1.7101812E-4, 0.015470091, -0.0010744091, 0.0044584917, -0.009693285, -0.038913015, -0.001919774, -0.010518543, -0.02443603, 0.015330218, -0.028128712, 0.01439306, -0.012798494, 0.0016942268, 0.013854544, -0.022449816, 0.0066265427, 0.021274872, -0.05136182, 0.014980532, 0.033653744, 0.022240005, 0.025513062, 0.010014996, -0.014602872, 0.01335799, -0.006811876, -0.0016837362, -0.021079049, -0.010665411, 0.02829656, -0.0054865675, 0.021316836, -0.014560909, 0.010357688, 0.024953566, 0.02835251, -3.5646078E-4, 0.01906486, -0.002659359, 0.025233313, -0.033094246, 0.023708684, -0.0087910965, 0.025582999, 0.018253589, 0.016547123, -0.03155563, -0.011833361, -3.4859285E-4, -0.007958844, -0.0010971386, 0.009140782, 0.03871719, -0.0077700145, -0.00964433, 0.008476379, -0.0018638243, 0.023219125, 0.0019617362, -7.556487E-5, 0.018057765, 0.02004398, 0.02818466, 0.00725248, -0.017582193, 0.01927467, 0.014994519, 0.022379879, -0.008833059, -0.004622844, -0.0066300393, 0.015344204, -0.01987613, 0.047725093, -7.8417E-4, 0.0253592, 0.020939175, 0.027149592, -0.020393666, 0.0027100635, -0.0010770317, 0.019372582, 0.02405837, 0.022044182, 0.015679903, -6.0102216E-4, 0.012371877, -0.018617263, 0.024142295, 0.0029758245, -0.0038535355, 0.008294543, 0.009427524, 2.9985543E-4, 0.006441209, 0.036339328, 0.032450825, 0.04350089, -0.0049690325, 0.0115676, -0.024352107, -0.03611553, -0.00276951, -0.0014678054, -0.032059178, 0.00516136, -0.009798191, -0.014532934, 0.0036367304, -0.018337514, 0.009945059, 0.032255, 0.013120204, 0.013672708, 0.020561514, -0.020169867, -0.018477388, 0.020029992, 0.03063246, -0.01776403, 0.009518443, 0.017568205, -0.0037066676, 0.010392657, 0.016113514, 0.015987627, 0.013127198, -0.010987122, 0.0063852593, -0.016645035, -0.009756229, 0.022114119, -0.014532934, -0.007784002, -0.00547258, -0.018337514, 0.014490972, 0.007147574, -0.013295047, 0.013665714, -0.019764232, 0.030100938, -0.012427826, 0.029961064, 0.007490266, -0.01733042, -0.032282975, -3.7831612E-4, -0.005615951, -0.010854241, -0.015931677, 0.007867927, -0.030828284, 0.027807001, -0.0155819915, -0.01738637, -0.016589087, -0.02970929, 0.0101338895, 0.017246494, 0.018938974, 0.004594869, -0.007217511, -0.0038115731, 0.0048291585, -0.025624963, -0.019862143, 0.010427625, 0.032171078, 9.0743415E-4, 0.02025379, -0.0077700145, -0.012427826, -0.0059411586, -0.010357688, -0.0041857366, -0.03264665, 0.00830853, -0.005084429, -0.0125607075, -0.0073503917, 0.0032013718, 0.019036885, 0.01814169, -0.0013567802, -0.011637538, 7.732423E-4, 0.010161864, -0.0011198681, -0.0057768063, -2.0030429E-4, 0.0154001545, 0.007658115, -0.030548535, 0.01776403, 0.014162268, -0.017134596, 0.014462997, -0.006056555, 0.015833765, 0.014910595, 0.0048011835, 0.0068748193, 0.018463401, -0.015721865, 0.0046158503, 0.018393463, 0.022519754, -0.0028481893, 0.021274872, -0.005224303, -0.023946472, 0.019442521, 0.0064621903, 0.021666521, 0.007032178, -0.016603073, -0.016225412, -0.009252681, 0.0073783663, -0.02612851, 0.021694496, -0.006836354, -0.019890118, 0.0016610067, -0.018924985, 0.011833361, 0.01021082, -0.011455701, -0.028380485, -0.0077630207, -0.015218318, 0.019526444, -0.011805386, -0.008021788, 0.026548132, -0.026855856, 0.010532531, -0.014700783, -0.031415757, 0.00793087, 0.002372617, 0.00104556, -0.018589288, 0.005185838, 0.030380687, 0.0120431725, -0.004524932, -0.016211426, 0.00615097, -0.020869238, 0.018938974, -0.02345691, -0.021316836, -0.006105511, 0.013106217, -0.0025369693, 4.0716518E-4, 0.0033639756, 0.010805286, -0.021358797, -4.451935E-4, 0.031275883, 0.0024635352, 0.0041857366, 0.01298033, -0.004500454, -0.0068608318, -0.018841062, -0.01569389, -0.015092432, -0.0023184156, 0.0018201136, -0.014756733, -0.0018550822, 0.01409233, -3.909376E-5, -6.687737E-4, -0.009574392, 0.0030737366, -0.045487106, 0.04089923, 0.007749033, -0.012008204, 0.03773807, 0.013546821, 0.012875425, -0.033849567, 0.029149793, 0.0076021655, 0.02189032, 0.010721361, 0.01938657, -0.026743956, -0.028086748, -0.014854645, 4.2749065E-4, 0.001331428, -0.020155879, -0.01409233, 0.010812279, 0.019512458, 0.007434316, -0.013043273, -0.017442318, -0.00879809, 0.009049864, -0.020701388, 0.023037288, -0.014365085, 0.019582395, -0.019162772, -0.023121214, -0.028366497, -0.018253589, -0.008777109, -0.0063852593, -0.005867725, 0.017218519, 0.0365911, 0.00719653, -4.239938E-4, 0.009119801, 0.0032031203, -0.002234491, -0.019302646, -0.009868128, -0.03992011, -5.804781E-4, 0.031219931, 0.0025999125, -0.020827275, -0.010259776, -0.022295956, 0.009168757, -0.0020981138, -0.0012912141, -0.01531623, -0.06534925, -0.006392253, -0.0020509062, -0.0075671966, 6.875693E-4, -0.016952759, -0.01450496, 0.03675895, 0.010819273, -0.005713863, -0.0054515987, 0.004325611, -0.013106217, 0.02873017, -0.013819575, 0.021372786, -0.023666723, -0.031303857, -0.024869641, -0.02482768, -0.009693285, -0.02873017, 0.01088921, -0.028226623, 0.005490064, -0.007979826, 0.0025089942, -9.153021E-4, -0.014274167, 0.0071091084, -0.0071615614, 0.0031594096, -0.01998803, -0.02672997, -0.026841868, -0.021876331, -0.009469487, 0.007888908, 0.023652734, -0.028282573, -0.012917386, 0.0124558015, -0.008301537, 0.009392556, -0.013602771, 0.020953162, 0.009574392, -0.019946067, -0.022995327, -0.011140984, 0.011161965, 0.0051159007, 0.009448505, 0.02667402, -0.002577183, -0.015819777, -0.0014992771, -0.017624155, -0.008133687, -0.027345415, 0.039248712, 0.03812972, 0.0020771325, -0.013148179, 0.0036542148, -0.01618345, 0.017736055, 0.02384856, -0.011861336, -0.002605158, -0.020659426, -0.01955442, 0.03172348, 0.0010586733, 0.02645022, 0.007846945, -0.01542813, 0.009336606, -0.011728455, -0.019120809, -0.0077210586, 0.004720756, 0.05636932, -0.028268585, -0.02036569, 0.034129318, 0.009770216, -0.029289667, -0.005199825, -0.0031419252, 0.034912612, -0.03664705, -0.014127299, 0.001895296, 0.0013987424, 3.7897177E-4, 1.08020075E-4, -0.0024722773, 0.001989711, -0.0058292593, -0.003329007, 0.0040423656, -0.022421842, -0.019358596, 2.3778623E-4, -0.0017991324, -0.022687603, -0.02482768, 4.5240577E-5, 0.011064053, -0.06344696, -0.013260079, -0.041682526, 0.033765644, 0.049179785, 0.021484684, -0.0077420394, 0.019960055, 0.030017013, -0.011938267, 0.03253475, 0.002757271, 0.02954144, -0.023065263, 0.0047347434, 0.004108806, -0.02666003, 0.01058848, -0.0016408998, -0.00245829, -0.03421324, 0.008056757, 0.014966545, 0.010924179, -0.022617666, 9.490686E-5, 0.013141185, 0.009035876, -0.015162368, -0.010084934, 0.014658821, -1.6806765E-4, 0.004112303, -0.0042871456, -0.0038220638, 0.030800309, -0.004448001, -0.023275075, 0.026366295, -0.009007902, -0.007958844, 0.022030193, 0.007511247, -0.0084553985, -0.0011006355, -0.023904508, -0.016379274, -0.028870044, 0.024757741, -0.009329612, -3.3394978E-4, 0.017945865, -0.004881611, -0.023093238, 0.045151405, 0.0025789314, -0.035164386, 0.017176557, -7.194782E-4, -0.03432514, -0.019246696, 0.0010350695, 0.049347635, 0.035807807, 1.6861403E-4, -0.02373666, -0.003255573, -0.05536223, -0.020449614, -0.019442521, 0.015190343, 0.0147287585, 0.007175549, -0.02249178, 0.029401567, -0.00442702, 0.018225614, -0.028422447, 0.0025020007, 0.0056544165, 0.020295754, -0.013008305, 0.025485087, -0.029093843, -0.005035473, 0.013099223, 0.020659426, 0.021988232, -0.003500353, 0.0017903903, -0.018435426, 0.020113917, -0.0063852593, 0.030436637, -0.005430618, -0.0048186677, -0.054830704, -0.03253475, 4.9043406E-4, 0.0018987929, -0.010008003, 0.0027747555, -0.01759618, -0.0015080192, -0.015246293, -0.028226623, -0.0021960256, -0.0023656231, -0.015917689, 0.0373744, -0.0064971587, -0.008413436, 0.03605958, 0.011581588, -0.001000975, 0.0019792207, 0.0048186677, -0.016421236, -0.018589288, -0.009560404, -0.04101113, -0.007049662, -0.021386772, 0.011504657, -0.0011627047, 0.0060075987, -0.0014791702, -0.03905289, -0.016323324, 0.03138778, 0.013889513, -0.02151266, -0.007958844, -0.018071752, -0.029233718, 0.017148582, 9.642581E-4, -0.019148784, -0.018883023, 0.0059481524, -0.011840355, -0.019736256, -0.024855653, 0.015456105, -0.016043575, -0.0071825427, -0.007867927, 0.19772623, -0.0031401769, 0.007986819, 0.019848155, 0.0029268686, -0.011301839, 0.0185753, 0.014588884, -0.015008506, 0.0041507683, 0.0119662415, 0.035723884, -0.022142094, 9.039373E-4, 0.025666924, -9.826166E-4, -0.04702572, -0.0042032213, -0.026492182, 0.0035510575, 0.0013043274, 0.0043815607, -0.026799906, -0.016966745, 0.03524831, -6.04519E-4, -0.014980532, -0.003124441, 0.013295047, 0.0047242525, -0.0050704414, -0.0107003795, -0.017568205, -0.009917084, -0.0067489324, -0.007420329, 0.025317239, -0.010091927, 0.0046578124, 0.01776403, -0.0028307051, -0.023107225, 0.04101113, -0.04299734, -0.018729161, -0.015609966, -0.019414546, -0.0048501394, -0.023233112, -0.009868128, -0.030548535, 3.173397E-4, 0.039024916, 0.039024916, -0.013085236, -0.021148985, 0.012176054, -2.8980194E-4, 0.009371575, 0.018924985, -0.017232507, 0.03611553, -0.0028411956, 0.013511852, -0.02215608, 0.021680508, -0.031891327, -0.0069692344, 0.005101913, -0.012483777, -0.021764433, -0.015344204, 0.004392051, 8.340002E-4, -0.029737264, -0.030100938, 0.016966745, 0.008749134, 0.02552705, 0.027415352, -0.00928765, -0.015540029, -5.05405E-6, 0.016337313, 0.0024722773, -0.019050872, 0.007818971, -0.0037591204, -0.0037031707, 0.001772906, 0.011819374, 0.014924582, 2.2784203E-5, 0.014232204, 0.0035877745, -0.0029705793, -0.028072761, 0.020897212, 0.0054271207, 0.007539222, -0.03980821, 0.043165192, -0.019134797, -0.0033954473, -0.014127299, -0.01987613, -0.0070356745, 0.011490669, 0.014742746, -0.045431156, -0.0023254093, -0.04274557, 0.023289062, -0.0063328063, 0.007294442, -0.008923977, 0.022240005, 0.0030789818, -0.017078646, -0.0010691638, 0.029093843, -0.0019617362, -0.01284745, -0.0068853097, 0.006563599, -0.011791399, -0.014532934, -0.008343499, -0.019148784, -0.02731744, 0.026534144, -0.0058887056, 0.014588884, -0.0048081772, -0.03172348, -0.012427826, -0.011749437, -1.8161797E-4, 0.024338119, 0.004252177, 5.35019E-4, 0.017064659, -0.009070845, -0.021806395, 0.021093037, -0.026380284, -0.0045808814, 0.01254672, -0.03664705, 0.010686393, -0.030492585, -0.007123096, 0.0070601525, 0.008476379, 0.008756128, 0.01186833, -0.0057243537, -0.044759758, -0.02541515, -0.008602266, -0.050690427, -0.0033971958, -0.0018533338, 0.015232305, -0.018113716, -0.018491376, -0.17859145, 0.0011207424, 0.027485289, -0.0015499815, 0.0035545542, 0.013127198, 0.045878753, 0.015386167, -0.030212836, 0.0020474093, 0.017540231, 0.015833765, -0.047165595, 3.226396E-5, -0.0039234725, -0.012567701, -0.013966444, 0.010497563, 0.016966745, 0.025610974, -9.126795E-4, -0.023163175, -0.0053921524, 0.007581184, -0.03541616, 0.03460489, 0.0015167614, 0.017302444, 0.014910595, -0.006056555, -0.014854645, -0.03675895, 0.021400759, 0.0027292962, 0.006077536, -0.01249077, -0.025079452, 0.024156282, -0.009364581, 0.044619884, 0.0050669448, 0.006923775, 0.024687804, 0.013015298, 0.01759618, 8.0952223E-4, -6.3773914E-4, 0.011574594, 8.532329E-4, 0.0014153526, 0.035611983, -0.0020596483, 0.018435426, -0.011651524, 0.016449211, -0.003839548, -0.0163513, -4.132847E-4, 0.009280656, -0.018701186, -0.01802979, -0.037234526, 0.021386772, -0.023107225, -0.021470698, -0.036870852, -0.027037691, 0.0042976364, -0.029401567, 0.0016478935, -0.010896204, -0.02384856, 0.010504556, -0.017036684, 0.03720655, 0.010665411, -6.919404E-4, 0.017498268, 0.0034094348, 8.2482095E-4, -0.007923876, 0.04769712, -0.0073783663, 0.008112706, -0.0029338624, -0.014602872, -0.0070706434, 0.01433711, 0.007546216, -0.03085626, 0.004224202, -0.031163983, 0.0102877505, -0.009483474, 0.02177842, 0.0092037255, -0.003250328, -0.0321431, -0.0029915604, 0.0063013346, 0.0047067683, -0.0026418748, -0.037402373, -0.006595071, 0.055641975, 0.00442702, 0.0033010321, 0.02253374, 0.005573989, 0.016770922, -0.014071349, 0.009301637, 0.015036481, 0.014351098, 0.005685888, 0.019442521, -0.029513465, -0.012343902, -8.5104734E-4, 0.0031908813, 0.0419343, -0.018379476, -0.017833967, 0.015917689, 0.006713964, -0.023722673, -0.07743438, -0.019750243, 0.01542813, 0.01938657, -0.010910192, 0.009189738, -0.0053746677, 0.019344607, -0.010049964, 0.029569415, -0.014309135, -0.008937964, -0.0016269123, 0.016686998, 0.018813087, 0.021806395, 0.025946673, -0.03589173, -0.030408662, 0.038968965, -0.011532632, -0.012385865, -0.0012405097, 0.0042451834, -0.013281059, 0.008972933, -0.01661706, 0.019638345, 0.010840254, 0.014798695, 0.0047697118, -0.029905114, -0.005402643, 0.0086092595, -0.019624356, 0.0052837497, 0.0030335227, -0.010070946, 0.02688383, -0.033541843, 0.0061614607, 0.0025736862, 0.0078609325, -0.017260483, -0.021792408, -0.035556033, -0.021596584, 0.05729249, -0.020155879, -0.012162066, -0.006727951, 4.2814633E-4, -0.0041962275, -0.012197034, 0.033905517, -0.0038255607, -0.008098719, -0.0023149187, -0.00855331, 0.022198044, -0.004378064, 0.026058571, 0.011140984, 0.014008406, 0.013630745, -0.0207993, -0.01731643, 0.030772334, 0.0417105, -0.009658317, -0.008756128, 0.008140681, -0.0042626676, 0.039948083, -0.033066273, 0.03468881, 0.0035632965, -0.025261289, 0.008476379, -0.0051403786, -0.015609966, -0.0075322283, 0.020925187, -0.046018627, 0.01733042, 0.028170673, 0.022295956, 0.0022956862, 0.004014391, -0.038968965, 0.024757741, 0.013113211, 0.035276286, 0.003365724, 0.018057765, -0.009105814, -0.008909989, 0.014602872, -0.02053354, -0.009672304, -0.030688409, 0.007756027, -0.0731822, 0.018729161, -0.0014957802, -0.0099520525, -0.012749538, -0.007777008, 0.025778824, -0.015889714, 0.021330822, 0.014190243, -0.0015823274, 0.0130502675, -0.009805185, -0.00418224, -0.024128307, 0.017372381, 0.010308732, -0.01395945, 0.03415729, 0.036814902, 0.004881611, 0.0279189, -0.0017816483, 0.027834974, -0.0030737366, -0.001834101, 0.014616859, 0.008154669, -2.7821862E-4, -0.005056454, 0.044787735, 0.0014887865, 0.004909586, 0.025121415, 0.0028691704, -0.0050914227, 0.011574594, 0.020211829, -0.0093086315, -0.023862546, -0.04112303, -0.002592919, -0.004080831, -0.0025981641, 0.0023673717, 0.009602367, 0.020687401, -0.018659225, 0.023107225, 0.035639957, 0.0022677113, 0.01580579, 0.007021687, -0.018924985, 0.0115256375, -0.005010995, 0.0012483776, -0.006846844, 0.009987021, -0.017442318, 0.06736343, 0.011994217, 0.0049935104, -0.034968562, -0.0057313475, -0.013735651, -0.02270159, 0.004906089, -0.00245829, -0.033206146, -0.036870852, -0.0044305166, -0.0029723276, 0.011043072, -0.0051928316, 0.0117074745, -9.84365E-4, 4.8354963E-5, -0.040339734, 0.0039024914, 0.0371506, -0.009427524, -0.017526243, 0.014798695, 0.022337917, -0.016043575, -0.0076860897, 0.011721462, 0.014532934, 0.015568004, -0.039724287, 0.019120809, 0.01303628, -0.009231701, 0.016155476, 0.017358394, -0.020575501, 0.00209112, 0.04095518, -0.001363774, -0.010084934, -0.0017991324, -0.0031996234, -0.016421236, -0.00849736, 0.036898825, -0.002311422, -0.010343701, 0.015540029, -0.0066230455, 0.009112807, -0.035164386, 0.0122250095, 0.018253589, -0.011833361, 0.0012081638, -0.017246494, -0.01205716, -0.028590295, 0.037066676, 0.016519148, 0.012805487, 3.7766047E-4, 0.0183515, -0.0021960256, -0.0115256375, 0.017400356, -0.00866521, -0.010938166, -0.025764836, -0.007658115, -0.025429139, 0.0022782017, -0.006423725, -0.019792207, 0.010966141, 0.005220806, 0.005269762, 0.006661511, 0.1013249, 0.023177162, -0.010084934, 0.007944857, 3.6695134E-4, 0.018239602, 0.0063957497, -0.025429139, -0.010791298, -0.039892133, -0.0017431828, -0.019344607, -0.042158097, -0.008777109, -0.0019984534, 0.017078646, 0.014260179, 0.04050758, -0.0133090345, -0.017903903, 0.0183515, -0.0036751959, 0.0075671966, 0.00725248, 0.0054795737, -0.0067943917, 0.029261691, 0.023009313, 4.3142462E-4, -0.04039568, 0.006434215, 0.007539222, -0.030940183, -0.010001008, -3.062481E-5, -0.029121818, -0.015484079, 5.0092465E-4, 0.049571432, -0.004909586, 0.008700178, -0.0044060387, -0.0128964055, -0.021162974, 0.00787492, -0.015092432, -0.006297838, -0.025023503, -0.058299586 ], - "id" : "8b765dca-6dc0-44ef-b4a9-9eba89101a37", - "metadata" : { - "name" : "RoadRunner E-Speed Lowstep" - }, - "text" : "| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 |\n| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° |\n| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 |\n| F — Bottom bracket height | 29.4 | 29.4 | 29.4 | 29.4 |\n| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 |\n| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 |\n| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 |\n| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 |\n| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 |\n| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |\ntags: [bicycle, road bike, professional]" - }, - "b1b96133-7817-49a4-ac1c-07f4cb775706" : { - "embedding" : [ 0.02697325, 0.010297038, -0.029131109, -0.022401283, -0.014390228, 0.008381937, -0.016062569, -0.031208048, 0.009696883, -0.0064938096, 0.0072895205, -0.002070197, -0.020499669, -0.013891223, -0.015307318, 0.027836392, 0.017869778, -0.014552068, -0.0050541125, 0.0045045326, 0.0038841479, 0.008894429, -0.0024747956, -0.007100708, -0.0029738008, -0.01630533, 0.042374972, -0.008564007, 0.005924, -0.006635419, 0.0059442297, 0.024141058, -0.026110105, -0.011180411, -0.0062409355, 6.4988673E-4, 0.032421846, 0.007276034, 0.044613753, 0.013567544, 0.030129118, 0.007855958, -0.015873756, 0.0030226896, -0.014255362, 0.015307318, 0.0033935718, -0.0050912006, -0.010263321, -4.9968996E-5, -0.015361265, 0.037978332, -0.023830865, -0.0037762548, -0.012293058, -0.030749504, -0.0077682957, -0.0050237677, 0.054998454, 0.006932125, -0.00743113, 0.016831307, -0.034741543, 0.0031541842, -0.031909354, -0.018004643, 0.0018173226, 0.0064027747, 0.013931683, 0.008867456, 0.021753926, 0.021227947, 0.018989166, 0.009285541, -0.0018392383, -0.00938669, -0.0038369447, 0.0021814615, 0.010984856, 0.01382379, 0.04774265, -0.010775813, -0.0076334295, -0.0028962526, 0.027216008, 0.004066217, 0.011005085, -0.009946385, -0.014565554, -0.0108634755, 0.009245081, 0.016210923, 0.0068781786, 0.0190566, -0.004480931, 1.8681082E-4, -0.008206611, 0.019865798, -0.02237431, -0.02940084, 0.0035166373, 0.01801813, 8.850597E-4, -0.019825337, -0.011207385, -0.012003096, -0.022994695, 0.007936878, 0.0071546542, -0.0031508126, -0.015765864, 0.028133098, -0.0021308865, -5.1291316E-4, 0.012636967, -0.030371878, 0.060096398, -0.0036009287, 0.024747955, -0.009454124, 0.02516604, 0.017842803, 0.012636967, -0.024667036, 0.006517411, 0.011928919, -0.0103847, -0.011672674, 0.028079152, 0.00268721, 0.01722242, 0.008678643, 0.017532611, 0.026191024, -0.023466727, 0.037681628, -0.0040055276, -5.175492E-4, -0.042240106, -0.02209109, 0.02660911, 0.017680964, -0.0016091228, 5.6433096E-4, -0.01689874, -0.0059948047, -0.017465178, 0.007539023, 0.015550078, -0.008800022, 0.019070087, -0.01929936, 0.03404024, 0.027701527, 0.020027637, -0.017249392, 0.009885696, 0.019542119, -0.03795136, -0.008907915, -5.8076775E-4, -0.0049563344, 0.0148218, -0.0107353525, 0.024221977, 0.027580146, 0.020229936, -0.0021983196, 0.005104687, -0.02133584, -0.016278356, 0.014160955, -0.026501216, 0.0029367125, 0.011301791, 0.024855848, 0.002402305, -0.01160524, 0.001264371, 4.0839185E-4, 0.01697966, -0.001481, -0.005725072, 0.009218108, -0.011268075, -0.0026079759, 0.011335508, -0.02557064, 0.011032059, -0.0023888184, 0.0013672066, 0.016804334, 0.006129671, 0.014430688, -0.60290605, -0.03992041, -0.022428256, -0.0155096175, -0.009299028, 0.025058148, 0.001107589, 0.005448596, -0.016682955, -9.1709045E-4, -0.023196993, 0.008570749, 0.008624696, -0.019879283, -6.2797095E-5, -0.015536591, -0.0021528024, -0.016440194, -0.004177482, -0.035577714, -0.026002211, -0.004969821, -0.03088437, 0.010141942, -0.014767854, 0.0091776475, 0.006382545, -0.011982866, -0.013709154, 0.008267301, -0.02133584, 0.055996463, 0.01074884, 0.013729383, 0.038652666, -0.04019014, -0.0051249173, 0.009757573, 0.0014363255, 0.029751493, -0.015226399, -0.010924166, -0.004518019, -0.03511917, -0.007262547, 0.01581981, 0.047041345, -0.012272828, 0.016952686, -0.03228698, 0.011996352, 0.008800022, 0.018193455, -0.019865798, -0.0050136526, -0.015887244, 0.02940084, -0.016278356, 0.0065275263, 0.0014818428, 0.012643711, 0.032907363, -0.020567102, -0.009959872, -0.014093522, 0.020836834, -0.04954986, -0.03296131, 0.019757904, 0.018962193, 0.030102145, 0.018598055, -0.012906699, 0.01174685, 0.010957882, 0.03064161, 0.03646783, -0.019110547, -0.007383927, 0.017559584, 0.020782888, 0.015738891, -0.019825337, -0.031747513, 0.049199205, 0.0027917312, -0.0019690471, -0.016008623, 0.016494142, 0.0014531837, 0.017074067, 0.0010148685, -0.011423171, -0.013041566, -1.3539307E-4, 0.030290958, -0.001775177, 0.021875305, 0.016966173, -0.029535707, -0.014727394, -0.004268517, 0.009811519, 0.01172662, 0.029185055, 0.0044236127, -5.403079E-4, -0.027782446, 0.030857397, -0.012137962, -0.00684109, -0.021767411, -0.025044661, 0.0014287393, -0.016440194, -0.02461309, 0.013021336, -0.0035908136, 0.015064559, -0.016534602, 0.010755583, -0.009076498, 0.022401283, -0.0032603915, -0.01610303, 0.007316494, 0.03644086, -0.015131992, -0.0047574067, -0.008226841, 0.014646474, 0.009764316, 0.04326509, -0.009926155, 0.013985629, 0.013877736, 0.038652666, -2.6741446E-4, 0.0014826858, -0.021187486, -0.03992041, -0.0018055218, 0.017357286, -0.014592527, -0.015563564, -0.006675879, -0.01877338, -0.008065001, -0.0019252156, 0.0064466065, -0.029670574, -0.005509286, -0.0018409243, -0.00431572, 0.012144705, -0.01805859, -0.0169392, -0.022118064, -0.029670574, -0.015846783, 0.015482645, 0.0049934224, -0.0029738008, -0.004099934, 0.0066522774, 0.017788857, 0.007282777, 0.03328499, -9.432208E-4, -0.041673668, -0.020202963, 0.016332302, -0.018031616, 0.023776919, -0.0062611653, -0.0072423173, -0.023277914, -0.0037796265, 0.016426709, -0.022832856, 0.012798807, 0.035577714, -0.047688704, 0.0012829151, 0.022401283, 0.0116794165, -0.0024832247, 0.014727394, -0.021120053, 0.0047169467, -0.011335508, 0.017384259, -0.007006301, 0.014363254, -0.0017330312, -0.019124033, 0.024720982, 0.009771059, 0.0020617677, 0.02317002, 0.013291068, -0.014970153, 0.017896751, -0.010317268, 0.011362481, -0.02744528, 0.02652819, -0.0064027747, 0.016925713, 0.004902388, 0.0190566, -0.031450808, -0.010499337, -0.001214639, -0.010283551, 0.014565554, 0.013034822, 0.03479549, -0.0071546542, -0.017869778, -0.0275262, 0.010297038, 0.020041123, -0.014133982, -0.005408136, 0.006173502, 0.0033379395, 0.048039354, 0.0027681296, -0.02161906, -0.0045247623, 0.014956666, 0.0143093085, -0.013958656, 0.023992704, 0.015388238, 0.02113354, -0.017141499, 0.046771612, -0.008220097, 0.025516693, 0.026150564, 0.018638514, -0.0072895205, 0.018557595, 0.018746408, 0.017734911, 0.015873756, 0.05130312, 0.013567544, -0.016561575, 0.01581981, 0.008624696, 0.015078046, 0.0011311906, 0.0060352646, 0.006814117, 0.029589653, 0.017964184, -0.0063522, 0.011699647, 0.007006301, 0.02832191, 0.0077076056, 0.027189035, -0.0025540295, -0.01360126, -0.023763431, 0.0024360216, -0.045369003, 0.008172894, -2.1915765E-4, 0.008651669, -0.0067500556, 0.01822043, 0.0045719654, 0.022522662, 0.0021730324, 0.0019673614, 0.029185055, -0.011416428, -0.027782446, 0.009373204, 0.038733587, -0.008078488, 0.008125691, 0.015792837, -0.0052395537, 0.010957882, 0.03668362, -0.0036481319, 0.012434668, 0.0066151894, -0.0026754092, -0.021106567, -0.00427526, 0.018989166, -0.021699978, -0.0070535047, -0.002764758, -0.008408911, -0.0037223082, -0.017316826, -0.021430247, 0.036737565, -0.014983639, 0.010553284, -0.018840814, 0.008294274, -0.015199426, 0.011160182, -0.042240106, -0.015671458, -0.016871767, -8.5134315E-4, 0.005519401, 0.01394517, -0.014754367, 0.04051382, -0.031612646, -0.026002211, -0.010856733, -0.017033607, -0.019676985, 0.04474862, 0.012569534, -8.5260754E-4, 0.021686492, -0.023642052, 0.0049293614, -0.0054856846, -0.009299028, 0.010769069, 0.023938758, -0.014983639, 0.002832191, -0.016224409, -0.012717887, -0.010337497, -0.011362481, 0.011348994, -0.046771612, -0.010101481, 0.00745136, -0.020958215, 0.0024444507, 0.0115782665, 0.0074176434, 0.015388238, 8.28163E-4, 0.015051072, 0.005998176, 0.0113220215, -0.036305994, 0.0062004756, -0.010290294, 0.0035941855, -0.019960204, -0.022832856, 0.02585386, 0.0013705782, -0.012320031, 0.035254035, 0.018989166, -0.008166151, 0.016062569, 0.013297811, -0.0027394705, 0.0043966393, 0.007127681, -0.003934723, -0.008813509, 0.012340262, -0.030992262, 0.02205063, -0.0011463631, -0.030129118, 0.009224851, -0.0038369447, 0.008887686, -0.0025742594, -0.011052289, -0.02229339, -0.033069205, 0.0048855296, -0.02956268, 0.019811852, 0.017829318, 0.0017035293, -0.017505638, -0.0067466837, 0.024356844, 0.017478665, -0.026379837, -0.022644043, -0.0137631, 2.8595858E-4, 0.041700643, 0.0048956447, 0.010034048, 0.021524653, -0.042213134, 0.015051072, 0.006342085, -0.0076131993, 0.012380721, -0.0014135668, -0.0148218, 0.004639399, -0.0017364029, 0.035011277, -0.012097502, 0.01402609, 0.0040763323, 0.0060049193, -0.018746408, -5.2218523E-4, 0.001235712, -0.009413663, -0.013972143, 0.012340262, 0.01478134, 0.009299028, -0.02544926, -0.007087221, -0.018840814, -0.002194948, 0.0207694, 0.011942406, -9.963244E-4, 0.009642936, -0.029373867, 0.0013503482, -0.035469823, -0.0017170159, -0.0024882823, -0.012690914, 0.0093057705, -0.024060138, 0.011962635, 0.0055733477, 0.0051754923, 0.019542119, -0.012953903, 0.014659961, -0.051276144, 0.03484944, -0.0012003096, -0.014255362, 0.027917312, 0.005664382, -0.01272463, 0.02033783, 0.018436216, 0.013014592, 0.02896927, 0.0048653, 0.02113354, -0.030749504, -0.033743534, -0.033338934, 0.020958215, 0.017141499, 0.0025135695, -0.025071634, -0.0022286647, 0.0068950364, 0.0024663664, -0.0021258292, -0.021349326, -0.044236127, 0.0030125747, -0.007343467, 0.037573736, -0.009555274, -0.015105019, -0.0349843, -0.014160955, -0.019919744, -0.015752377, -0.021673005, -0.028753484, 0.0051384037, 0.03056069, 0.016062569, -0.009245081, -5.9341145E-4, 0.017195446, 0.0078761885, -0.005020396, -0.020674994, -0.0026838381, -0.049388018, -6.437756E-5, 0.040918417, 0.017829318, -0.011955893, -0.049441963, -0.0019757904, 0.032125138, -0.01689874, -0.018152997, -0.019393766, -0.03854477, -0.002665294, -0.02760712, -0.0038672895, 0.0013756356, -0.03854477, -0.011247844, 0.051869556, 0.00637243, 0.02201017, 0.020068096, -0.0074109, -0.021200974, 0.03703427, -0.00629151, 0.019366793, 0.0014101951, -0.012259342, -0.023574619, -0.025462747, 0.021281892, -0.034498785, 0.021120053, 0.014430688, -0.023412779, -0.0370073, 5.1164883E-4, 0.028375857, -0.016790846, 0.011187155, -0.014767854, -0.0027529572, -0.009696883, -0.010317268, -0.03884148, -0.008354964, 0.023156533, -0.005873425, 0.01742472, -0.02412757, -0.017788857, 0.040648684, 0.010802786, 0.010661176, 0.0016057512, 0.011638957, 0.025584126, -0.018705947, 0.0033311963, -0.025921293, 2.4191632E-4, 0.022468716, 0.029913332, 0.027863367, -0.008833739, 8.0245413E-4, -0.011901946, -0.0025540295, 0.0012036812, -0.0031626134, 0.0059779463, 0.0037762548, 0.026905816, 0.009204621, -0.006466836, -0.0044472143, 0.008051515, 0.0016951001, 0.008179638, 0.012569534, -0.027013708, 0.0027226123, 0.01850365, -0.031154102, 0.025071634, 0.0060251495, -0.01793721, -0.010243091, -0.012677426, -0.016062569, 2.2590096E-4, -0.021362813, 0.047526862, -0.024195004, 0.021848332, 0.01602211, 0.009791289, -0.030290958, -0.0102498345, 0.00268721, 0.017303338, -0.0072895205, -0.01046562, -0.011544551, -0.030938316, 6.4693653E-4, -0.025813399, -0.0190566, -0.027971258, -0.0028557926, -0.0055564893, -0.012117732, 0.006257794, -0.01969047, -0.031450808, -0.0013764786, -0.031585675, -0.032745525, -6.12377E-4, 0.0047405483, -0.023021668, -0.008011055, -0.018584568, 0.022832856, 0.032448817, 0.018827327, -0.010620717, -0.013574287, 0.010371214, -0.028888348, 0.0052159517, 0.008570749, 0.0067399405, -0.003981926, 0.029481761, 0.00523281, -0.011895203, -0.0077413223, -0.00964968, -0.030614637, -0.036980323, -0.0059543448, -0.018908247, -0.0015754063, -0.024680523, 0.0054654544, 0.0022758679, 0.0051687486, -0.022617068, -0.022360822, 0.0027782447, 0.0077615525, 0.0013023021, 0.01072861, -0.013648463, 0.008516803, -0.016467169, -0.0075322795, 0.0038133431, -1.8059433E-4, 0.005067599, -2.1325724E-4, 0.019002654, -0.017640505, 0.0027124973, -0.043615744, -0.012670684, -0.014659961, 0.026137078, -0.041161176, 0.0057183285, 0.027971258, -0.008705616, -0.018422728, 0.018436216, -0.028699536, -0.042240106, 0.027863367, -0.015118506, -0.014916207, -0.034687597, -0.009015808, 0.03627902, 0.013189918, -0.01873292, 0.010715123, -0.007950365, -0.049280126, 0.004420241, -0.004167367, 0.018854301, 0.008199868, 0.008199868, -0.010007075, -0.00131326, 0.012050299, 0.032583684, -0.02408711, -0.0028945666, -0.0050608558, 0.009218108, 0.008759563, 0.002282611, -0.037277028, -0.017047092, 0.02129538, 0.029023215, 0.0015265173, 0.011611983, -0.0148218, -0.007215344, 0.011099492, -0.019919744, 0.037330978, 0.0076131993, -0.004518019, -0.039165158, -3.0371246E-5, -0.0025253703, -0.010007075, 0.013918196, 0.0016360962, 0.006224077, 0.004609054, 0.011611983, 0.0049361046, -0.020850321, -0.020324342, 0.0036649902, 0.012009839, 0.0055935774, -0.007060248, 0.050790627, 0.01834181, -0.037654653, -0.015158965, 0.015590537, -0.0077008624, -0.009231594, -0.0046124253, -0.02408711, -0.021322353, 6.351357E-4, 0.015563564, 0.011780567, -0.0039077494, -0.004689974, -5.204994E-5, -0.0067871436, 0.03271855, 0.027081141, -0.027674554, -0.031774487, 0.0194612, -0.009980102, 0.010782556, 0.0044236127, -0.01726288, -0.04032501, 0.029185055, -0.009622706, 0.0016158662, -0.03188238, 0.021983197, -0.0011750221, -0.011638957, 0.0094069205, 0.1971205, -8.6988724E-4, 0.0026332634, 0.026217997, 0.031774487, 0.015051072, -0.014336281, -0.0015813067, -0.012030069, -0.016669467, 0.013931683, 0.028780457, -0.02017599, -0.001431268, 0.035820473, -0.019542119, -0.04898342, -0.010007075, 0.011268075, -0.0029906589, 0.0033311963, 0.009622706, -0.0063117403, -0.032934338, -0.013304555, 0.003715565, -0.0169392, -0.026797922, 0.027782446, 0.018085564, 0.0046225404, -0.020567102, -8.4628566E-4, 0.0140800355, -0.034606677, 0.0143093085, 0.002361845, 0.004224685, -0.010452134, 0.026797922, 0.013446164, 0.0030530347, 0.029589653, 0.0069928146, 0.0043662945, -0.021322353, -0.017734911, -0.0028456778, -0.012886469, -0.0064263763, -0.026150564, 0.01598165, 0.017869778, 0.03056069, -0.006173502, -0.023102587, -0.009912669, -0.03031793, -0.0062611653, -0.010087995, -0.03031793, 0.040999338, 0.02241477, 0.029751493, -0.012697657, 0.004969821, -0.017546099, -0.026757462, 0.023223966, -0.0067500556, -0.028240992, 0.010930909, 0.010054278, 0.015415211, -0.017114526, -0.014848773, 0.015266859, 0.016278356, 0.023196993, -0.009912669, 0.018112537, -0.017667478, 0.0037728832, 0.0025456003, -3.7025E-4, -0.027782446, 0.011962635, 0.005391278, 0.0028069036, -0.0023803893, 0.0028844518, -0.013904709, -0.011005085, -0.008301017, -0.009231594, -0.017842803, -0.021969711, 0.021039134, -0.022657529, 0.0074850763, -0.042213134, 0.05470175, -0.019542119, 0.011841256, -0.030749504, -0.005027139, -0.008017798, 0.02880743, 0.020432236, -0.02033783, 0.016386248, -0.041215125, -0.001960618, -0.028564671, 0.0011143323, 0.0031204678, -0.0014919578, -0.01594119, -0.013985629, -0.020850321, 0.011996352, -0.011497348, 8.4459985E-4, -0.019865798, 0.026865356, -0.022644043, 6.182774E-4, 0.0067331973, 0.012198651, -0.02237431, -0.0026973248, -0.0053575616, 0.012717887, -0.004302233, -0.018652001, 0.0077076056, 0.014983639, -0.0055463742, 0.017532611, 0.01360126, -0.0014144097, 0.033258017, 0.015266859, 0.01386425, 0.012299801, -0.025476234, -0.01162547, -0.0054823128, -0.017128013, -0.003607672, -0.022306876, 0.0057183285, 0.008294274, -0.0024646807, 0.015482645, 0.025476234, -0.021039134, -0.03587442, -0.015725404, 0.021875305, -0.025624586, -0.01598165, 0.0064769513, -0.011018572, -0.02988636, -0.006409518, -0.169392, -0.004851813, 0.034606677, -0.0040426156, 0.0041538803, 0.012738117, 0.01374287, 0.005930743, -0.019407252, 0.004598939, 0.028915323, 0.001264371, -0.034579705, -0.016076056, 0.015415211, -0.004393268, -0.00629151, 0.0052159517, 0.014525094, -0.0057284436, -0.026433783, -0.029292949, 0.0075053065, -0.0036818485, -0.0032570197, 0.0040628454, 0.024720982, 0.04582755, 0.02229339, 0.017397745, -0.019043114, -0.035847448, 0.038086228, -0.01830135, 0.0017262879, -0.012293058, -0.012003096, 0.009238337, -0.013405705, 0.024586117, -0.00948784, 0.012987619, 0.025907805, -0.0013587774, 0.008166151, 0.01909706, -0.012205395, -7.2996353E-4, 0.0020617677, 0.018382268, 0.042968385, -0.016750388, -0.0016360962, -0.0027597004, 0.011537807, 0.0094069205, -0.0080043115, 0.0012264398, 0.024586117, -0.02681141, -0.033419855, -0.0147948265, 0.005755417, -0.013034822, 0.010013819, -0.03787044, 0.013095512, 0.03463365, -0.025462747, -2.9923447E-4, -8.23527E-4, 0.0069186385, -0.013216891, 0.009251825, 0.014430688, 0.0054553393, -0.02453217, 0.0038335728, 0.02408711, -0.027323902, 0.0069928146, 0.023561133, 0.004605682, 0.007943622, -0.026137078, -0.024923282, -0.0028001603, 0.009379948, -0.010222862, -0.015968163, 0.011531063, -0.016264869, -0.00848983, 0.0050743422, 0.012205395, 0.0055025425, -0.0051687486, -0.010162171, 0.015239885, -0.010283551, 0.005536259, -0.0031609277, -0.044910457, -0.0013857506, 0.03528101, 0.015212912, 0.013527084, 0.026150564, 0.013756357, 0.02013553, -0.015968163, 0.030129118, 0.0319633, 0.04075658, -0.0048079817, 0.027323902, -0.020917755, -0.023412779, 0.015671458, 0.002774873, 0.02624497, -0.021578599, -0.024168031, -0.0012525702, -0.0027293556, -0.025139067, -0.0909538, -1.4550803E-4, 0.019811852, 0.025125582, -0.016278356, -0.0015442185, 0.0010839874, 0.03271855, -0.005623922, 0.020351317, -0.01805859, 2.5245274E-4, 0.0041909683, 0.023898298, 0.023035154, -0.007653659, 0.0101217115, -0.010324011, -0.027701527, 0.027148575, -0.015334291, -0.025044661, -0.009798032, 0.0029738008, -0.011362481, -0.0028102754, 4.1661024E-4, 0.009804776, 0.018126024, -9.3057705E-4, 0.007862702, -0.018126024, 0.010930909, 0.0067095957, -0.0039043778, -0.008975348, -0.02149768, -0.031100156, 0.016264869, -0.022778908, 0.018598055, 0.012953903, 0.0066017024, -0.022846341, -0.01276509, -0.020728942, -0.014241875, 0.01742472, -0.020459209, -0.0207694, -0.018652001, -0.021389786, -0.0062881387, -0.008887686, 0.011268075, -0.018786868, 0.0054283664, -2.0783098E-5, -0.009049525, 0.015927704, -0.016386248, 0.008793279, -0.01801813, 0.01989277, 0.023466727, -0.012920186, 0.014929693, 0.007781782, 0.034768518, -0.0028473635, -0.012097502, 0.008800022, -0.009265311, 0.037600707, -0.0361981, 0.008901172, -0.0038976343, -0.012933672, 0.020742428, -0.007896419, -0.012347004, -0.0169392, 0.0061060693, -0.04323812, 0.012933672, 0.048120275, 0.018031616, -0.019515146, 0.0042988616, -0.047203183, 0.012792063, 0.016521115, 0.05065576, 0.0076671457, -0.015671458, -0.016966173, 0.021699978, 0.012899956, -0.015577051, -0.0353889, -0.043076277, -0.016885253, -0.070885696, 0.041134205, 0.012137962, -2.8743368E-4, -0.014889233, 0.013102256, 0.020823348, -0.023412779, 0.016453682, 0.017950697, -0.006999558, -0.004814725, 0.011207385, 0.008118948, -0.017559584, 6.5747293E-4, 0.014525094, -0.018800354, 0.012562791, 0.027175548, 0.024437763, -6.3892885E-4, -0.024640063, 0.019933231, -0.026514703, 6.0110306E-5, -0.022468716, 0.0042381715, 0.011389454, -0.003927979, 0.042132214, -0.0035233805, 0.0076604025, 0.038733587, -0.007276034, -8.4249256E-4, -0.023264427, -0.0035570972, -0.014187928, -0.022927262, -0.022482203, 2.6446427E-4, -6.127985E-4, -0.031450808, -0.0074985633, 0.004615797, -0.0023837609, -0.0028288194, 0.017154986, 0.022724962, 0.018746408, 0.007323237, 0.0020449094, -0.023399293, -0.0041134204, -0.014295822, -0.015374752, -0.0066826222, 0.008665157, 0.008476343, 0.03819412, 0.005988061, 0.0013975514, -0.0020718826, -0.0018173226, -0.019312846, -0.018827327, -0.009818262, 0.004983308, 0.0055059143, -0.014579041, 0.0035908136, 0.004265145, 0.02704068, 0.0034593192, 0.0012593135, 0.011423171, -0.001666441, -0.040082246, 0.0053946497, -0.0016344102, -0.003294108, -0.016156975, 0.021915764, 0.019151006, -0.012259342, -0.015347779, -0.004990051, -0.012124475, 0.023426266, -0.03711519, 0.022671016, -0.017087553, 0.009359717, 0.0167369, 0.012468385, -0.0019589323, -0.036413886, 0.032179084, 0.010876963, 8.045614E-4, -0.0014750995, 0.00531373, -0.016831307, 0.009481097, 0.0041336506, -0.030506745, -0.019474685, 0.0058902833, 0.0133652445, -0.0017532612, -0.017775372, -2.994452E-4, 0.020499669, -0.019569091, 0.0017532612, -0.005647524, -0.017249392, -0.035146143, 0.020877294, 0.02229339, 0.014107009, 4.185068E-4, 0.0046731154, 0.029185055, -0.0057587884, 0.00525304, -0.01060723, 0.01590073, -0.0024157916, -0.00730975, 0.0011708075, -0.013210149, -0.009744086, -0.009838493, -0.0023534158, -0.0048416983, 0.015131992, 0.016224409, 0.09332744, 0.021079594, -0.006490438, -0.009130444, -5.314573E-4, 0.015792837, 0.011072518, -8.5471483E-4, 0.0035941855, -0.03163962, -0.007539023, -0.0017566328, -0.020877294, -0.0054384815, -0.032826442, 0.027054168, 0.01813951, 0.0077548088, -0.019380279, -0.012589764, 0.030102145, -0.023642052, 0.0124211805, -0.0061802454, -0.0034761773, 0.028888348, 0.04701437, 0.036225073, 0.014363254, -0.021470705, 0.01166593, 0.011901946, -0.01274486, -0.015185939, 0.007228831, 0.0035941855, -0.02612359, 0.0022758679, 0.016386248, -0.0115782665, 0.008833739, 0.018948708, -0.007215344, -0.014970153, 0.0062274486, -0.021794384, 0.0075525097, -0.025314394, -0.048363034 ], - "id" : "b1b96133-7817-49a4-ac1c-07f4cb775706", - "metadata" : { - "name" : "Enduro X Pro" - }, - "text" : "price: 599.99\nname: Enduro X Pro\nshortDescription: The Enduro X Pro is the ultimate mountain bike for riders who demand the best. With its full carbon frame and top-of-the-line components, this bike is ready to tackle any trail, from technical downhill descents to grueling uphill climbs.\ndescription: ## Overview\nIt's right for you if...\nYou're an experienced mountain biker who wants a high-performance bike that can handle any terrain. You want a bike with the best components available, including a full carbon frame, suspension system, and hydraulic disc brakes.\n\nThe tech you get\nOur top-of-the-line full carbon frame with aggressive geometry and a slack head angle for maximum control. It's equipped with a Fox Factory suspension system with 170mm of travel in the front and 160mm in the rear, a Shimano XTR 12-speed drivetrain, and hydraulic disc brakes for maximum stopping power. The bike also features a dropper seatpost for easy adjustments on the fly.\n\nThe final word\nThe Enduro X Pro is the ultimate mountain bike for riders who demand the best. With its full carbon frame, top-of-the-line components, and aggressive geometry, this bike is ready to take on any trail. Whether you're a seasoned pro or just starting out, the Enduro X Pro will help you take your riding to the next level.\n\n## Features\nFull carbon frame\nAggressive geometry with a slack head angle\nFox Factory suspension system with 170mm of travel in the front and 160mm in the rear\nShimano XTR 12-speed drivetrain\nHydraulic disc brakes for maximum stopping power\nDropper seatpost for easy adjustments on the fly\n\n## Specifications\nFrameset\nFrame\tFull carbon frame\nFork\tFox Factory suspension system with 170mm of travel\nRear suspension\tFox Factory suspension system with 160mm of travel\n\nWheels\nWheel size\t27.5\" or 29\"\nTires\tTubeless-ready Maxxis tires\n\nDrivetrain\nShifters\tShimano XTR 12-speed\nFront derailleur\tN/A\nRear derailleur\tShimano XTR\nCrankset\tShimano XTR\nCassette\tShimano XTR 12-speed\nChain\tShimano XTR\n\nComponents\nBrakes\tHydraulic disc brakes\nHandlebar\tAlloy handlebar\nStem\tAlloy stem\nSeatpost\tDropper seatpost\n\nAccessories\nPedals\tNot included\n\nWeight\nWeight\tApproximately 27-29 lbs\n\n## Sizing\n| Size | Rider Height |\n|:----:|:-------------------------:|\n| S | 5'4\" - 5'8\" (162-172cm) |\n| M | 5'8\" - 5'11\" (172-180cm) |\n| L | 5'11\" - 6'3\" (180-191cm) |\n| XL | 6'3\" - 6'6\" (191-198cm) |\n\n## Geometry\n| Size | S | M | L | XL |\n|:----:|:---------------:|:---------------:|:-----------------:|:---------------:|\n| A - Seat tube length | 390mm | 425mm | 460mm | 495mm |\n| B - Effective top tube length | 585mm | 610mm | 635mm | 660mm |\n| C - Head tube angle | 65.5° | 65.5° | 65.5° | 65.5° |" - }, - "a1aa558a-0658-4754-9c57-db3e11463f8d" : { - "embedding" : [ 0.016469253, -0.024683312, -1.1516736E-4, -0.011923411, -0.0075969747, 0.0115943, -0.022352109, -0.02272236, -0.011676578, -0.012842178, 0.006997033, 0.00885171, -0.014604293, -0.016578957, 0.004871526, 0.023915386, 0.0053789048, -0.010764666, -0.02630144, -0.009647061, 0.0045526996, 0.013274136, -0.00799465, -0.0011596014, 0.0057183006, -0.0032345422, 0.041577667, -0.004916093, -0.003993897, -0.027768726, 0.026274014, 0.026465995, -0.008289479, -0.0013755803, -0.018443918, 0.0039733276, 0.016386976, -0.019513529, 0.025122125, 0.008138636, 0.018704465, 0.0018409636, -0.014809987, 0.008769432, -0.011635439, 0.015029394, 0.011100634, -0.0060268417, -0.005756011, 0.005879428, 0.003565367, 0.021488193, -0.016784651, 0.023531424, -0.006733059, -0.024175933, 0.012711905, -0.0030751291, 0.04311352, -0.0058245757, -0.0053583356, 0.020665416, -0.025725495, 0.010209292, -0.035351988, -0.026191736, 0.006894186, -0.00490238, 0.0212825, 0.023339443, 2.5765348E-5, 0.038780224, 0.036558725, 0.01812852, 0.010456125, -0.02147448, 0.008323761, -0.017634854, -0.0019678085, -0.0019215272, 0.014439737, -0.025108412, -0.030689584, 6.4365164E-4, 0.018361641, 0.0025608935, 0.0031505504, -0.012026258, -0.009640205, -6.1365456E-4, 0.011834277, 0.015920736, 0.00657536, 0.005947992, 0.0016361264, 0.0017843978, -0.018443918, 0.008639159, -0.009564783, -0.017813124, -0.0113543235, 0.014672857, -0.032417417, -0.018882733, -0.028385809, -0.0136512425, -0.014892264, -0.008913418, 0.013582678, -0.0036133626, -0.018567335, 0.02983938, 0.0052452036, 0.009002552, -0.001183599, -0.006273675, 0.026109459, 0.006681635, 0.025300395, 0.0032962505, 0.03853339, 0.015811032, 0.0046212645, -0.044402536, -0.006061124, 0.01696292, 0.0021323639, -0.017648568, 0.004028179, -0.019815214, 0.004501276, -0.0068050516, 0.028742345, 0.019952344, -0.008508886, 0.01826565, -0.0017604, 0.016853217, -0.034364656, -0.010106444, -0.0035379413, 0.008392326, -0.01112806, 0.0066747786, -0.018375354, -0.011333753, -0.034611486, 0.027521892, 0.039630428, 4.0388925E-4, 0.020048333, -0.003260254, 0.024642173, 0.0357908, 0.010476694, -0.009962459, -0.022653794, 0.022324683, -0.013788372, -0.021405917, -0.035653673, 2.1305961E-5, 0.013239854, -0.030031363, 0.029866807, 0.02871492, 0.006174256, -0.02857779, 0.0142477555, -0.02058314, -0.023874247, 0.029071456, -0.014494589, -4.6966856E-4, -0.0010438984, 0.024601033, -3.1561212E-4, -0.02844066, -0.012444503, -0.0031196962, 0.0059171384, 0.00764497, 0.012938169, -0.0019643803, -0.016044153, 0.020295167, 0.008378613, -0.026699115, 0.009105399, -7.0450286E-4, 0.023010332, -0.007823238, -0.002727163, 0.023133747, -0.5963488, -0.02077512, -0.008968269, 0.0021083662, -0.010860657, -0.011059495, 0.0051012174, 0.011745142, -0.015509347, -0.012855891, -0.018293075, 0.01050412, 0.005337766, -0.006794767, -0.0136512425, -0.020185463, 0.0105658285, -0.0012161674, 0.015097959, -0.025368959, -0.053370804, 0.0032671106, -0.024038803, 0.011306328, -0.016496679, -0.0132124275, 0.016345838, 0.008906562, -0.011032069, 0.004628121, -0.034693766, 0.047035422, 0.014000922, -0.009989885, 0.041111425, -0.04670631, -0.0018272507, 0.027357336, 0.006880473, 0.026671689, -0.023641126, 0.0035242282, -0.012753044, -0.016249847, -0.016153855, 0.012945025, 0.039054483, -0.003908191, -3.3018214E-4, -0.022132702, 0.016332123, -0.009009409, 0.019033575, 0.0043950006, -0.01112806, -0.011745142, 0.025163265, 0.002536896, 0.010181866, 0.012231952, 0.0060714087, 0.008769432, -0.0018546765, -0.007967224, -0.01278047, 0.007514697, -0.03324019, -0.028385809, 0.007370711, -0.0121085355, 0.013568965, 0.027796151, -0.0023757687, 0.026904808, 0.014206617, 0.035351988, 0.013719807, -0.004083031, -0.020240314, 0.021488193, -0.003692212, -5.352336E-4, 0.012286804, -0.025080986, 0.03551654, -0.006578788, -0.009928176, -0.014021492, 0.012087966, 0.012979308, 0.014110627, 0.0014827128, -0.0073364284, -0.019993482, -0.011052638, 0.019883778, 0.0047378247, 0.01960952, -0.0019523813, -0.039767556, -0.020377444, 0.0095305005, 0.036750708, -0.02225612, 0.009235673, 0.0074392757, 0.017264605, 0.009352232, 0.023216026, -0.019966057, 0.0017861119, -0.028824622, -0.031868897, 0.0012161674, -0.01001731, -0.037765466, 0.0025763207, 0.004703542, -0.009770477, -0.008392326, 0.016373264, -0.014522015, 0.037820317, -0.00799465, -0.015139097, 0.008097498, 0.024916431, -0.007425563, -0.014439737, -0.009880181, 0.006061124, 0.03551654, 0.060172427, -0.016688662, 0.043470055, 0.02058314, 0.020857397, -0.005773152, -0.008070071, -0.035324562, -0.024614746, 0.008454034, -0.010271, -0.04569155, -0.015564199, -0.0212825, -0.015632764, 0.016894355, -0.013603247, -0.005697731, -0.010312139, -0.0067467717, -0.027494466, -0.012211382, -0.01385008, -0.0365313, -0.021172795, -0.040151518, -0.023078896, -0.026040893, 0.023353156, 0.0059754183, -0.007583262, -0.009537357, 0.011978262, 0.018553622, -0.0068496186, 0.033487026, 0.0013104439, -0.026836244, -0.00614683, -0.013822654, -0.014467163, 0.00764497, -0.039438445, 0.015070532, -0.013171289, -2.4276208E-4, 0.007398137, -0.02519069, 0.003040847, -4.096744E-4, -0.04423798, 0.024299348, 0.002250638, -9.967601E-4, 0.02184473, 0.025533514, -0.008803714, 0.008358044, -9.1705355E-4, -0.0035619389, -0.031100972, -0.0086185895, 0.0022557804, -0.0121771, 1.5962732E-4, -4.2660133E-4, 0.00608855, 0.031539787, 0.007110165, 0.00519378, 0.03518743, 0.008454034, 0.0013301562, -0.022557804, 0.02221498, -0.006781054, 0.013719807, 0.017017772, 0.021076806, -0.023257164, 0.01431632, -4.6581178E-4, -0.019211844, -0.0018478201, 0.011025213, 0.022064138, -0.009098543, -0.007542123, -0.014165478, 3.0211344E-5, 0.0262603, 0.007788956, -0.008892848, 0.019650659, 0.0042304453, 0.034968026, -0.016016725, -0.026822532, 0.007603831, 0.0334596, 0.02830353, -0.010846944, 0.020185463, -0.010332708, 0.02579406, -0.011854846, 0.045883533, 0.0029465703, 0.040041815, 0.038259134, 0.00776153, -0.010360134, 0.028961752, 0.0035825083, 0.018581048, 0.0135278255, 0.042043906, -6.760056E-5, -0.001499854, -5.91371E-4, 0.0073775672, 0.037244376, 6.552219E-4, -0.0023586275, -0.014110627, 0.023572562, 0.01194398, 0.020939676, 0.026781393, 0.004288725, 0.01705891, 0.037573487, 0.040096667, -0.03491317, -0.007905516, -0.020692842, -0.003777918, -0.036421597, -0.014412311, -0.014960829, 0.0030185634, 0.009420797, 0.0093728015, 0.013205571, 0.024683312, 0.0076792524, 0.018457633, 0.03206088, -0.0056668767, -0.013692381, 0.015193949, 0.002668883, -0.0024426193, 0.015509347, -0.0031488363, 0.012965594, -0.012396507, 0.023915386, 0.015742468, 0.01635955, -0.0069421814, -4.2103045E-4, -0.009564783, -8.8105706E-4, 0.035982784, -0.03540684, 0.014384885, -0.0029362855, -0.01631841, 0.021803591, -0.005495465, -0.03085414, 0.01886902, -0.023654839, 0.0057491544, -0.045938384, 0.013610103, 1.6841218E-4, -0.012602202, -0.02863264, 0.015495635, -0.008172919, -0.014124339, 0.010750953, 0.020857397, -0.019595807, 0.016044153, -0.035708524, -0.009221959, -0.020322593, -0.014713996, -0.018718177, 0.024518756, 0.03661358, -0.0063388115, 0.017593715, -0.024038803, -0.016469253, -0.01385008, 0.002278064, 0.002569464, 0.010682388, -0.013829511, 0.0076792524, -0.0035516543, -0.0365313, -0.008981982, -0.012279947, -0.009365945, -0.026918523, 0.013390697, -0.011957693, -0.027713872, -0.014933404, 0.0012993021, 0.023778256, 0.014494589, -0.0045492714, 0.017525151, 0.010099588, 0.008248339, -0.02412108, -0.005392618, 0.007315859, 0.025108412, -0.007473558, -0.04684344, 0.01873189, 0.022571517, -0.009544213, 0.045801256, 0.0056017404, -0.007919229, 0.010223005, -0.0019986625, 0.015619051, 0.0070553133, -0.0052829143, -0.012753044, 0.013644386, 0.028248679, -0.013568965, 0.038752798, -0.0068324776, -0.039822407, 0.005162926, 3.2825375E-4, 0.016647521, 0.0030939844, -0.011601157, -0.025382672, -0.035050303, 0.002915716, -0.016140142, 0.011498309, -0.005392618, 0.010524689, -0.005279486, -0.015646476, 0.012732475, 0.008680298, -0.018800456, -0.05655221, -2.3247737E-4, -0.0098116165, 0.0167298, 0.0054406133, 9.016265E-4, 0.016839504, -0.022009285, 0.004528702, -0.010702958, -0.015468208, 0.016798364, -0.0065410775, -0.001023329, -0.01640069, 6.085122E-4, 0.016784651, 0.0012710191, 0.017648568, 0.004562984, 0.027151642, -0.0107578095, 0.024738163, 0.008646015, -0.011738285, 0.008783145, 0.014035205, 0.033212766, 0.01528994, -0.024313062, 0.01552306, -0.023120034, 0.004401857, 0.0077272477, 0.0072815767, -0.01585217, 0.0016352694, -0.007425563, 0.0081454925, -0.013116437, -0.0083031915, 0.014988255, -0.008995696, 0.0076518264, -0.021200221, 0.01134061, 0.011134916, 0.011704003, -0.00435729, -0.0069901766, 0.0059068534, -0.04750166, 0.038725372, -5.8065774E-4, -0.020089474, 0.036970116, 0.005478324, 0.015221375, 0.013390697, 0.038999632, 0.038643096, 0.036915265, -0.017497726, -0.010168153, -0.017511439, -0.024532469, -0.0076586828, 0.0039219037, 0.0031522645, -0.009420797, 5.395189E-4, -0.00256775, 0.0021752168, 0.016277272, -0.022365823, -0.021995572, -0.017319458, 0.013980353, 0.0025128983, 0.04462194, -0.026191736, -3.4732334E-4, -0.004559556, -0.031238101, -0.040316075, -0.010325852, -0.016016725, -0.0014801417, 0.0064108046, 0.026603125, -0.0030391328, -0.00328768, 0.0032996787, 0.008385469, -2.4254782E-4, 0.0030836998, -0.01859476, -0.0013241568, -0.017771984, 0.021309925, 0.04549957, 0.012218239, -0.015015681, -0.014947116, -0.0028762915, 0.03044275, -0.015646476, -0.0077409605, -0.032088306, -0.031814046, -0.0014809987, -0.0035447977, -0.014851126, -0.016839504, -0.037710615, -0.02983938, 0.03658615, 0.010380704, 0.010181866, 0.0065822164, -0.013089011, -0.027946994, 0.03378871, -0.012444503, 0.02231097, 0.010867514, -0.008522599, -0.01914328, -0.031073546, 0.015838457, -0.014864839, 0.014330033, 0.017634854, -0.009557927, -0.004988086, 0.02295548, 0.008961413, -0.030086214, 0.0052829143, -0.009612778, -0.0015281369, -0.0051526413, -0.022393249, -0.027617883, 9.1533945E-4, 0.025533514, -0.025204403, 0.024683312, -0.026575698, 0.006678207, 0.023901673, 0.02513584, 0.014165478, -0.0012075967, 0.0067707696, 0.0043504336, -0.014988255, -0.0115943, -0.020624278, 0.0069147553, 0.008899705, 0.032417417, 0.020487148, -0.0048235306, -0.015358505, 0.016304698, -0.006033698, -0.0075009842, -0.01134061, 0.017209753, 0.014192904, 0.016661234, -0.013795229, -0.0029654256, -0.025149552, 0.008200345, -0.007692965, 0.0013472975, 0.012684479, -0.0056600203, 0.011189768, 0.03170434, -0.039986964, 0.020733982, -0.011333753, -0.0154407825, 0.0059754183, 0.0021272216, 0.0020757979, 0.0061502582, 8.8362827E-4, 0.07267864, -0.007069026, -0.006307957, 0.014631718, -0.00857745, -0.009756764, -0.012238809, 9.6847716E-4, 0.023517711, -0.01960952, 0.0053137685, -0.0062256795, -0.01387065, 0.008008363, -0.009125968, -5.51732E-5, -0.017634854, -0.01840278, -0.020322593, 0.0029585692, -0.005639451, -0.010435555, -0.010942935, -0.015495635, -0.028193826, -0.042784408, -0.01729203, -3.4839465E-4, -0.027782438, -0.010339565, -0.009167108, 0.0372718, 0.04410085, 0.010188722, -0.011998832, -4.670974E-4, 0.021515619, -0.011176054, 0.003232828, 0.007734104, -0.009537357, -0.023901673, -0.0029208586, 0.0059514204, -0.028358381, -0.0026140313, 0.007932942, -3.717495E-4, -0.038588244, 0.01184799, -0.012972452, 0.0048440997, -0.026054606, 0.0033116776, 0.003980184, 0.0083649, -0.011779425, -0.021460768, 0.02546495, 0.0063148136, 0.008241483, 0.0065547903, -0.016565245, 0.015468208, -0.008803714, -0.009036834, -0.0148785515, -0.011971406, 9.1791066E-4, 0.004336721, 0.021433342, -0.010579541, -0.012396507, -0.020254029, -0.01301359, -0.016332123, 0.011635439, -0.00490238, -6.34224E-4, 0.027110504, 0.0053171967, -9.8776094E-5, 0.031759195, -0.004048749, -0.018347928, 0.0067124893, -0.0020089473, -0.036503874, -0.030223344, 0.0048132455, 0.04396372, 0.010435555, -0.001616414, 0.0013173004, -0.010545259, -0.044649366, -0.028468085, -2.939714E-4, 0.041714795, 0.026178023, -0.0045355586, -0.005406331, 0.008097498, 0.01919813, 0.0342001, -0.03057988, -3.3553876E-4, 0.009077974, 0.009605922, 0.0055160346, 0.014713996, -0.03406297, -0.009311094, 0.013980353, 0.039383594, -3.1689773E-4, -0.0015238516, 0.015207662, -0.012129105, 0.010051593, -0.029126307, 0.01830679, 0.011155485, 0.008028933, -0.049476326, -0.02616431, -0.011443458, -0.006201682, -0.0064588, 0.00908483, -0.02388796, -0.006595929, 0.001298445, 0.0016052723, -0.02579406, -0.0054748957, -0.0134935435, 0.016386976, 0.01515281, -0.003231114, 0.03856082, 0.0142477555, -0.010716671, 0.002871149, 0.011505166, -0.02155676, -0.018759316, 0.022064138, -0.036887836, -0.005005227, -0.006781054, 0.008543168, 0.019061001, -0.005207493, 0.0035276567, -0.030552454, -0.0066850632, 0.016386976, 0.008042646, -0.028742345, -0.0118274195, 0.012561062, -0.015344792, 0.0047823917, 0.01038756, -0.011875415, -0.035022877, 0.01001731, 0.0025180406, -0.022626368, -0.016057866, 0.021131657, -0.010510976, -0.005553745, -0.0018049672, 0.16828533, 0.0061125476, -0.013226141, 0.02719278, 0.016140142, -0.016606383, 6.993605E-4, 0.019774076, -0.010510976, -0.018114807, 0.013198715, 0.024409052, -0.016085291, 8.844853E-4, 0.02188587, -0.027398475, -0.058362316, -0.015481921, -0.012999877, 0.0049812295, 0.007267864, -0.0058897124, 0.0076655396, -0.045088183, 0.026068319, 0.0023260592, -0.013754089, -0.016784651, 0.010579541, 0.023929099, 0.01431632, -0.02369598, 5.519463E-4, 1.4918191E-5, -0.021186508, -2.7211636E-4, 0.013431835, -0.003217401, -0.017525151, 0.037984874, 0.014741422, -0.024148507, 0.029016603, -0.009167108, -0.0069216117, 3.481804E-4, -0.01435746, 0.011080064, -0.038588244, -0.016770938, -0.028989177, 0.019828927, 0.006390235, 0.042098757, -0.0023689123, -0.017017772, 0.009235673, -0.008803714, 0.0030699868, 5.8922835E-4, 4.1974484E-4, 0.030662159, 0.016428115, 0.027864715, -0.026370004, 0.010366991, -0.022406962, -0.016085291, 0.03499545, -0.0014989969, -0.014809987, -0.0047103986, 0.006705633, -0.006726202, -0.020075759, -0.02797442, 0.028495511, 0.0029105737, 0.017319458, 0.016921781, 0.01396664, -0.028330956, 0.017991392, 0.004209876, 0.009736195, -0.059185095, 0.009071117, 0.008371756, 0.018375354, -0.012341656, 0.0051320717, 0.029949084, -0.0061776843, -0.009468792, -5.1123596E-4, 0.0077066785, -0.017141188, 0.027124217, -0.011834277, -0.0089477, -0.027617883, 0.049256917, -0.018923871, 4.3024382E-4, -0.03979498, -0.006640496, 0.0013190145, 0.011052638, 0.012629627, -0.032554545, -0.005790293, -0.044813924, -0.009235673, 0.0026346007, 0.010133871, -0.005790293, 0.009249385, -0.018827882, -0.007734104, -0.02513584, 0.021021953, -0.015769893, 0.010092732, -0.0010301854, 0.028495511, -0.019746648, -0.0021426484, 0.022228694, 0.0017046912, -0.013568965, 0.009036834, -0.0023449145, 0.010696102, -0.010483551, -0.035543967, 0.01278047, -0.014727709, -0.0048201024, -0.005005227, 2.9054313E-4, 0.0063799503, 0.014055775, 0.0073432853, -0.010510976, 0.009797904, -0.020185463, -0.0042133043, 0.010490407, -0.02997651, -0.013918645, -0.03132038, -0.006935325, 0.014700283, -0.009173964, 0.028797196, 0.017388022, -0.020528287, -0.049640883, -0.021117944, 0.0038327698, -0.038368836, -0.031539787, 0.015358505, 0.011621726, -0.014851126, -0.002914002, -0.17278318, -0.0032962505, 0.021995572, -0.009482506, -0.008995696, 0.018855307, 0.028934326, 8.639159E-4, -0.025684357, -0.0039287605, 0.01515281, 0.00478582, -0.054083876, -0.020391157, -0.003387099, 0.0038464826, 0.011580586, -0.0068119084, 0.029236011, 0.015797319, -0.0075215534, -0.02876977, 0.012828466, -0.01612643, -0.014700283, 0.01797768, 0.009585353, 0.03485832, 0.0365313, 0.008604877, -0.012602202, -0.040178947, 0.01552306, -0.027055651, 0.0052589164, 0.012307373, -0.019115854, 0.008207201, 0.012087966, 0.043716885, 0.005337766, 5.253774E-4, 0.028550364, 0.02495757, 0.020048333, 0.035351988, -0.013973497, -0.0051115025, 0.0054269, -0.0060199853, 0.05010712, -0.017470298, 0.03230771, -0.0043230075, 0.022365823, -4.0624617E-4, 0.0033990976, 0.007555836, 0.035543967, -0.032417417, -0.035818227, -0.023531424, 0.007960368, -1.5116385E-4, -0.0123005165, -0.04434768, -0.03090899, 0.029455418, -0.018951299, -0.0041310266, -0.022790924, -0.013925501, 0.0023174887, -0.0021855016, 0.03425495, 0.014823699, -0.015344792, 0.0019592377, 0.02793328, 0.010579541, -0.0076381136, 0.052218918, 0.0018203942, 0.024710737, -0.0024751876, 0.0074049933, -0.0064279456, 0.015715042, -0.006551362, -0.018293075, -0.011614869, -0.039054483, 0.02184473, -0.0016549818, 0.025876338, -9.2819537E-4, 0.007974081, -0.009743052, 0.0089339875, 0.013774659, -0.0054200436, -0.014727709, -0.050765343, 0.007267864, 0.041851927, -0.003390527, 0.01087437, 0.023133747, 0.027083078, 0.00799465, -0.008803714, 0.017388022, 0.011690291, 0.038697947, 0.004497848, 0.016085291, -0.0142477555, -0.030497603, 0.0058245757, -0.01422033, 0.017963964, -0.015961874, -0.004518417, 0.0063799503, 0.0019129566, -0.03647645, -0.08918903, -0.0033339611, 0.016620096, 0.03206088, -0.017045198, 0.0032482552, -0.010613824, 0.011971406, 0.005540032, 0.037710615, -0.01710005, -0.02402509, -0.0013224427, 0.023037758, 0.010586398, 0.0074529885, 0.0055023213, -0.00752841, -0.047254827, 0.041248556, -0.017278317, -0.032444842, 0.008049502, 0.0023860533, -0.0047926763, 0.0044395677, -0.014590579, 0.0319786, 0.038780224, 0.0017381165, -0.0029757102, -0.03085414, -0.0012101679, 0.016716087, -0.029565122, -0.01873189, 0.004446424, -0.008803714, 0.01313015, -0.03085414, -0.012609058, -0.0051526413, -0.0017029771, -0.0072335815, -0.019732935, -0.006955894, -0.027124217, 0.031896323, 0.0011193196, -0.0036476448, -0.0024306206, -0.009914463, 0.009585353, -0.010099588, -0.0018341071, -0.036311895, -0.0018992437, -0.0010464696, -0.010744097, 3.6403598E-4, -0.017497726, 0.0053549074, 0.005786865, 0.008611733, 0.0033716718, -0.027768726, 8.536312E-4, -8.724865E-4, 0.033761285, -0.013054729, 0.004381288, 0.014055775, -0.010209292, 0.016620096, -0.032006025, 0.013726664, -0.021817304, -0.016880643, 0.0064005195, -0.007734104, -0.015111672, -0.008063215, 0.001342155, -0.028797196, 0.008083784, 0.044375107, 0.005413187, -0.006287388, 0.0042167325, -0.02672654, 0.023449145, 0.018896446, 0.054029025, 0.004203019, -0.009359089, -0.011155485, -0.006935325, -0.008707724, -0.02811155, -0.013939214, -0.056168247, -0.0055366037, -0.07904145, 0.023202313, 0.02198186, -0.0015281369, -0.014412311, 0.011923411, 0.016551532, -0.0036373602, 0.016880643, 0.012046827, -0.0045218454, 0.00752841, 0.0051526413, 0.02087111, -0.019499816, -3.293251E-4, 0.0011364608, -0.008467747, 0.013095868, 0.03968528, 9.7447657E-4, 0.0039733276, -0.008207201, 0.025492376, -0.023106322, 0.0048372434, -0.01923927, 0.010545259, -8.137779E-4, -0.007857521, 0.024984997, -0.02141963, 0.010284713, 0.03894478, -0.0032379704, -0.0072335815, -0.0029945655, 0.010552116, -0.02295548, -0.022749785, -0.032938506, -0.024381626, -0.013486687, 0.0048680976, -0.010929221, 0.008412895, 0.02575292, 0.012252522, 0.011649151, 0.02672654, 0.0029191445, 0.004271584, 0.002092939, -0.03880765, 0.01840278, -0.027631596, -0.023901673, 0.0013867221, 0.0064245174, -0.00955107, 0.059404504, 0.014823699, 0.008447178, -0.006976464, -0.0062051103, -0.020199176, -0.013664955, -0.002915716, 0.010812662, -0.023120034, -0.0028351524, 4.8343507E-5, 0.021021953, 0.015139097, -0.011443458, 0.0038430544, -7.4649876E-4, -0.005941136, -0.019801501, 0.018183373, 0.015303653, -0.0036510732, -0.009962459, 0.0025746066, -6.395806E-5, -0.0055777426, -0.014974542, 0.023737118, -0.0150019685, 0.024148507, -0.038972206, 0.031676915, -0.011971406, -0.0018118236, 0.013911788, 0.010750953, -0.012170244, 0.004600695, 0.035982784, 0.021817304, -0.020542, 0.0060371268, -0.009420797, -0.01256792, -0.003273967, 0.022790924, -0.01136118, -0.020829972, 0.005032653, 0.003736779, -0.013424979, -0.010819518, -0.004514989, 0.004631549, -0.015111672, 0.003620219, -0.0034590918, -0.020555712, -0.026219161, 0.044210553, 0.045993235, 0.011786281, -0.0023774828, 0.0071924427, 0.021529332, -0.020624278, 0.010936079, -0.009249385, 0.005036081, -0.011347467, 0.009647061, 0.014892264, 0.0024169076, -0.017675994, -0.005793722, 0.008927131, -0.008220914, 0.0112309065, 0.020542, 0.08853081, 0.016181283, -0.018320503, -0.0020226603, 6.042269E-4, 0.03888993, 0.007967224, -0.01313015, -0.020487148, -0.024532469, 0.022667507, 6.2093954E-4, -0.026671689, -0.009928176, -0.037546057, 0.03491317, 0.024436478, 0.016304698, 0.01515281, -0.008783145, 0.02649342, -0.01705891, 0.00764497, -0.017141188, 0.012931312, 0.009283667, 0.0334596, 0.04089202, -0.0107578095, -0.053837046, 0.020459723, 0.010188722, -0.01110749, -0.0014321463, 0.005049794, -0.010949791, -0.010147584, -0.0069421814, 0.03099127, -0.0076381136, 0.0029122878, 0.0035447977, -0.00955107, -0.0147551345, 0.0042818687, -0.013322132, -0.0011193196, -0.035324562, -0.0729529 ], - "id" : "a1aa558a-0658-4754-9c57-db3e11463f8d", - "metadata" : { - "name" : "VeloCore X9 eMTB" - }, - "text" : "9 | 75.9 | 78.6 | 78.6 |\n| M — Frame reach | 43.6 | 45.6 | 47.6 | 49.6 |\n| N — Frame stack | 60.5 | 61.5 | 62.4 | 63.4 |\ntags: [bicycle, touring bike]" - }, - "23ef324e-294d-47ab-8801-0fe3a7062481" : { - "embedding" : [ 0.0018576959, -0.008474777, -0.020975417, -0.021398474, -0.010740178, 0.0101328865, 0.008659012, -0.0066801994, -0.012548403, -0.021384826, -0.0069463155, -2.111018E-4, -0.018942015, 0.017017791, 0.015107213, -0.012862284, 0.021562237, 0.011709114, -0.0020538713, -0.0087136, 0.0026458092, 0.018259667, -0.032288767, -0.004370447, -0.019023897, -0.020293066, 0.040231314, -0.0020555772, -2.2091057E-4, -0.02330905, -0.002152812, 0.0038245677, -0.017072378, -0.021193767, -0.014629568, -0.032752763, 0.018969309, -0.0063799657, 0.025205981, -0.0023575167, 0.022299174, 0.006601729, 0.013865337, -0.0077924286, -0.037911326, 0.007089609, 0.015939679, 0.008222309, -0.01314887, 3.030057E-4, -0.007799252, 0.028685963, -0.017167907, -0.00196346, -0.00869313, -0.035727806, -0.018068608, 0.0031643948, 0.025669979, -0.020989062, -0.016649323, -0.0049845614, -0.039548963, 0.009996417, -0.008925129, -0.0017724022, -0.032397944, 0.023527402, 0.008044898, -0.0056430283, 0.01670391, 0.04590846, 0.023732107, 0.002284164, 0.0048480914, -0.016608382, -0.003885979, -0.006707493, 0.0069872565, 0.018450724, 0.030378189, -0.0064447885, -0.013114752, 0.012384639, 0.005670322, 0.016894968, 0.0030978657, 0.019515188, -0.0063663186, -0.00263728, 0.018518958, 0.01770014, -0.0095528895, 0.031224301, 0.028958902, 0.019719893, -0.022340115, 0.023186227, -0.01013971, -0.010405826, 0.012937342, -0.0022312822, -0.016540146, -0.022626702, -0.022626702, 7.0537854E-4, 0.01643097, -0.012691696, 0.008454307, 0.004384094, -0.0038928024, 0.034417696, 0.011183704, -0.006803022, 0.029231843, -0.01330581, 0.019228602, -0.011142763, 0.0013211988, -0.02158953, 0.011074528, 0.031933945, 0.038648263, -0.002570751, 0.014097336, 0.0086658355, -0.004773033, 0.005554323, 0.02584739, 0.008065368, -0.0016819909, 0.037556503, 0.010126063, 0.009587007, -0.014588627, 0.0086658355, -0.009996417, 0.023745755, -0.025997506, 0.0019156955, -0.0056157345, 0.029395606, -0.01883284, -0.008563483, -0.021480355, 0.035236515, 0.010317121, 0.023595637, -0.0065027885, 0.019883657, 0.0012538168, -0.011122293, 0.008959246, 0.0029545722, -0.0054929117, 0.016717557, 0.0043670353, 0.02639327, 0.006830316, 0.0048515033, -0.0051960894, 0.010685589, 0.032971118, -0.0073352545, 0.02706197, 0.011784172, 0.009709829, 0.0024223397, 0.0035652749, -0.017590964, -0.02606574, 0.0023745755, -0.020606948, 0.02090718, -0.005414441, 0.017659198, 0.012848636, -0.0036642156, -0.009402772, -0.017413553, 0.0098463, 0.003913273, -0.002811279, 0.029504782, 0.0027583968, -7.168932E-4, 0.008959246, -0.027416794, 0.015025331, -0.026638916, 0.02295423, 0.010931235, -0.0010695824, -5.1560014E-4, -0.61618865, -0.031251594, -0.017113319, -0.010071475, -0.016171677, 0.016280854, 0.0010388767, 0.0034765694, -0.009982769, 0.009266303, -0.022271879, 0.019064838, -0.02996878, 9.0464586E-5, -0.026529739, -0.016499205, 0.005823851, -0.029532075, 0.02027942, -0.013885807, -0.01860084, 0.0053735003, -0.020470478, 0.004936797, 0.0021784, 0.024005046, 0.020784358, 0.0050357375, -0.023104345, 0.008017603, -0.024250692, 0.039057672, -0.003374217, -0.005097149, 0.0352911, -0.018518958, 0.015202741, 0.014588627, 0.008058544, 0.03580969, -0.03177018, -0.01950154, -0.0045376224, -0.022285527, 0.010985823, 0.02629774, 0.036901448, -0.02471469, 4.8958557E-4, -0.025069512, 0.007055491, -0.0075672534, 0.030432777, 0.026461504, 0.006611964, -0.021466708, 0.022394702, -0.0077924286, -0.001587315, 0.00914348, 0.0019174014, 0.005284795, 0.0039235083, -0.027771614, -0.018982956, 0.014056395, -0.061193082, -0.030705716, 0.020784358, 0.0037188034, -0.007369372, -0.0067211404, -0.03739274, 0.008379249, -0.015666738, 0.022490231, 0.02901349, -8.9217164E-4, 0.01215264, 0.02561539, 0.021207415, 0.016376382, 0.0020879887, -0.025055865, 0.024673749, 0.020265773, 0.011340644, -0.012207228, 0.028303847, 0.014615921, 0.012746284, 0.010958529, -0.0194606, -0.007867487, -0.008195015, 0.042060006, 0.008918305, 0.008297367, -0.0019583423, -0.032698177, -0.02000648, -0.006376554, 0.010774295, -0.009825829, 0.0055679698, 0.008481601, -0.01982907, -0.03479981, 0.03679227, -0.01760461, -0.006025144, -0.011729584, -0.041759774, -0.018846486, -0.0021715765, -0.015912384, 0.012357345, 0.014943449, 0.014916155, 0.00728749, 0.0023387522, -0.020497771, -0.0038006853, 0.010078299, -0.042387534, 0.018682722, 0.03520922, 0.009218538, -0.0014201393, 0.003457805, 0.03720168, -0.008720423, 0.050439257, -0.013469574, 0.0070691383, 0.007908428, 0.029313724, 0.01457498, 0.007901604, -0.04241483, -0.002633868, -0.007826546, 0.00828372, -0.012814519, -0.0126029905, -0.0070827855, -0.01172276, -0.010030534, -0.0014423158, 0.009259479, -0.016280854, -0.028822433, -0.036819566, -0.009832653, -0.0045956224, -0.02395046, -0.03149724, -0.019160368, -0.020224832, -0.024100576, 0.015994266, -4.8915914E-4, -0.032943822, 0.008290543, -0.019446954, 0.026038447, 0.013756161, 0.0075740768, -0.01828696, -0.05780863, -0.0027481616, 0.0067586694, 0.0026799268, 0.03842991, 0.013073811, 0.0151890945, -0.020989062, -0.024086928, -0.0058443216, -0.008925129, -0.0030074543, 0.036328275, -0.03146995, 0.021521296, 0.017509082, -0.008338308, 0.024373515, 0.014479451, -0.018887427, 0.025519863, 0.014615921, 0.014342981, -6.1923196E-4, -0.0010388767, -0.029777722, -0.012207228, 0.013189811, 0.0063151424, -9.0070104E-4, 0.0036028042, 0.022531172, -0.008618071, 0.012159464, -0.034335814, 0.0026116918, -0.028030908, 0.022080822, 0.0017826374, 0.021084592, 0.026870914, 0.0018321078, -0.016758498, -0.021057298, -0.015120859, -0.0031422183, 0.0086658355, 0.0057624397, 0.016321795, 0.022572113, -0.013899454, -0.006400436, 1.6045869E-4, 0.016553793, 0.0020760477, -0.022558466, 0.032015827, -0.008133603, 0.006335613, -0.017495435, -0.026966443, 0.008447484, 0.0118797, 0.018942015, 0.0012333463, 0.024823867, 0.010869823, 0.020252125, -0.0024530457, 0.049784202, 0.01011924, 0.0067996103, 0.009825829, 0.04047696, -0.01574862, -0.017167907, 0.014916155, 0.02860408, 0.0018576959, 0.012896401, 0.005376912, -0.007785605, 0.008338308, -0.0054417355, -0.00677914, 0.008522542, 0.0019276367, 0.017318023, 4.1196836E-4, 0.0010721412, -0.0057931454, 0.0028863375, 0.016117088, 0.009682536, 0.013483222, 0.008638541, 0.003991743, 0.010869823, -0.039276022, -0.0025605157, -0.035100047, 0.0018730487, 0.016758498, 1.9319014E-4, -0.017058732, 0.03308029, -3.6185834E-4, 0.025888331, -0.002553692, 0.012507462, 0.017072378, -0.02612033, -0.02027942, 0.0046058577, 0.031715594, -0.014793332, 0.0041452716, 0.0035584513, 0.0035072751, 0.012548403, 0.025547156, 0.003698333, 0.015994266, 0.026748091, 0.010501355, -0.009914535, -0.028494906, 0.021084592, -0.0038962143, -0.01525733, -0.011490761, -0.024509985, 0.013496868, -0.035509456, -0.0016325206, 0.018982956, -0.00400539, -0.01787755, -0.011490761, 0.0046775043, 0.0017911668, 0.03436311, -0.04145954, -0.0061343196, -0.022640347, 0.017208848, 0.005018679, 0.043452002, -0.012739461, -0.011681819, -0.0027208677, 6.8490807E-4, -0.0016726087, -0.00392692, 0.0066733756, 0.048583265, 0.023158934, 0.024905749, 0.01918766, -0.02860408, -0.012145816, -0.03398099, -0.011811466, 0.010262533, 0.012459697, 2.3029288E-5, 0.024318928, -0.012596168, -4.9043854E-4, 0.0013467869, -0.0031098067, 0.0045649167, -0.013353575, 0.017509082, -0.0049947966, 0.0077378405, 0.002391634, 0.009812183, 0.016717557, 0.01430204, -0.01584415, 0.05355077, 0.014588627, 0.012357345, 0.0035720984, -0.007881134, -0.011900171, 0.013530985, 0.0019788127, -0.043069884, 0.014629568, -0.023841282, 0.0043772706, 0.04956585, 0.00486515, 0.0129509885, 0.02680268, 0.004247624, -0.0023182817, 0.0014056395, 0.0018576959, 0.013797102, 0.005629381, 0.0023575167, -0.03149724, 0.050630316, 0.010521825, -0.020361302, 0.0073352545, 0.0096688885, 0.014110982, -0.012200405, -0.023186227, -0.013367222, -0.025246922, -0.0020248715, -0.0371198, 0.007840193, 0.002662868, -0.014097336, 0.0019685775, 0.011811466, -0.004019037, -0.022149056, -0.018327901, -0.016581086, -0.03477252, -0.04055884, 0.016608382, -0.004387506, -0.015653092, 0.008133603, -0.008174544, 0.031197008, 0.022026233, 0.012125346, -0.008256426, 0.0037188034, -0.025724567, -1.5566092E-4, 0.0052472656, 0.009703007, 0.021603178, 0.005810204, -6.895992E-4, 0.017672846, -0.02846761, 0.0060558496, -0.017086025, 0.00492315, 0.012384639, 0.027635144, -4.439535E-4, -0.019023897, -0.00392692, 0.018409783, -0.030623835, 0.012671226, 0.0061786724, 0.0071169026, 0.0030466893, -0.005496323, -0.015066272, 0.003671039, -0.004261271, 0.016035207, 0.014970743, -0.020334007, 0.0070759617, -0.028931608, 0.011238292, -0.02457822, -0.004489858, 0.0021613413, -0.022790466, -0.005660087, -0.03965814, 0.02027942, 8.8023057E-4, -0.017577317, 0.025820095, 0.0040088017, -0.017045084, -0.0029494546, 0.03286194, 0.026816325, 0.023827637, -0.0013595809, -0.0020692241, -0.03340782, -0.035236515, -0.02258576, 0.009286773, 0.021603178, -0.034281228, -0.016785791, 0.011333821, -0.0067620813, 0.013387692, 0.0015241976, -0.01760461, -0.0069736093, -0.015625797, -0.0048924442, 0.04413435, 0.003643745, 0.008563483, -0.03046007, -0.01570768, -0.021917058, -0.014465804, -0.013844866, -0.006308319, 0.014779685, 0.033708055, 0.021917058, 0.016799439, -8.213779E-4, 0.011163234, 0.0071169026, 0.0073830187, -0.028030908, 0.0037631562, -0.01688132, 0.035836983, 0.026052095, -0.005069855, -0.009102539, -0.03217959, -0.021384826, 0.018628135, -1.9830775E-4, -0.017045084, -0.031933945, -0.021603178, -0.022940582, -0.035372984, 0.017004143, -0.005175619, -0.04831033, -0.009914535, 0.040722605, -0.01824602, 0.0011591408, -0.006267378, -0.0067313756, -0.031333476, 0.02928643, 0.010508179, 0.033817228, 0.018778251, -0.029313724, -0.04001296, -0.009020657, 0.012364169, 5.24556E-4, -0.01602156, 1.18238335E-4, -0.021698706, -0.014888861, 0.007908428, -0.007922075, -0.013674279, 0.030187132, -0.0011045529, -0.016007913, -0.026925502, -0.035591338, -0.03780215, 0.009853124, 0.009737124, 0.0064174947, 0.002836867, -0.012507462, 0.012043464, 0.027949026, -6.635847E-4, 0.022872347, -0.0024496338, 0.0196926, 0.010876647, 0.0124869915, -0.007178314, -0.03870285, -0.012241346, -0.00828372, 0.016990496, 0.018805545, -1.7005423E-4, -0.010542296, 0.006267378, 5.1986484E-4, -0.0067996103, -0.008222309, -0.008502072, 0.03471793, 0.012991929, -0.0022398115, -0.027826203, 0.0019020486, -0.007021374, -0.00349704, -0.005179031, -0.003548216, 0.011054058, 0.019160368, 0.030050661, -0.032916527, 0.0024649866, 0.02575186, -0.017099673, 0.011286057, -0.018314254, -0.014615921, -0.022653995, 0.014288394, 0.045608222, 0.0026151035, 0.0030330424, 0.02561539, 0.009068422, -0.021357533, -0.004885621, 0.0076081944, 0.027485028, 0.0165265, 0.010221592, -0.0073216073, -0.019092131, -0.021603178, -0.032316063, -0.008290543, 0.0022722231, -0.001706726, 0.0016657851, 0.0038382146, -0.0010312003, -0.03889391, -0.013674279, -0.004732092, -0.017577317, -0.010781119, -0.015666738, 0.020852594, -0.032261472, -0.011893348, -0.014847919, 0.0045035053, -0.010351238, 0.0060524377, -0.008242779, -0.002662868, 0.04328824, -0.036655802, -0.0034339225, -0.005322324, 0.01000324, -0.02055236, 0.017454494, 0.007369372, -0.014165571, -0.004448917, -3.3072615E-4, -0.028822433, -0.008188191, -0.0045376224, -0.01918766, -0.0055304407, -0.0031422183, -0.014588627, 0.018764604, -0.001815049, -0.011402056, -0.009935006, -0.010030534, -0.014411217, -0.006028556, 0.020293066, -0.035018165, -0.004431858, -0.01342181, 0.018136844, 0.010808412, 0.0032889235, -0.031442653, -0.011477115, 0.01656744, -0.01398816, -7.945104E-4, -0.039740022, -0.008154074, -0.013360399, 0.013769808, -0.024632808, 0.011579467, 0.0011983758, -0.013817572, -0.018136844, 0.0049913847, -0.011934289, -0.003643745, 0.009355009, -0.00162655, -0.022026233, -0.0076150177, -0.018641781, 0.053741828, -0.0036642156, -0.019624365, -0.034253933, 0.004527387, -0.03190665, -0.013496868, -0.03376264, 0.022244586, 0.006478906, 0.02584739, -0.012016171, 0.0028215142, 0.014656862, 0.011627232, -0.004523976, -0.0023319286, 0.005445147, 0.009355009, -0.0040565664, 0.011402056, -0.03739274, -0.015871443, 0.026980089, 0.022162704, 0.02313164, 0.010207945, -0.025506215, 0.020265773, 0.0339537, 7.514371E-4, 0.0014704627, 0.005257501, -0.0049060914, -0.02385493, -0.012671226, -0.019160368, 0.022885993, -0.00621279, -0.00896607, -0.0051722075, -0.03398099, 2.1035549E-4, -0.0029375136, -0.013298987, -0.031169714, 0.018136844, 0.029313724, -0.0037324505, -0.032889236, 0.03368076, 0.011511232, -0.04132307, -0.006748434, 0.019842716, -0.005376912, -0.0061411434, 0.017550023, -0.015694033, -0.008017603, -0.004970914, 0.019719893, 0.02068883, 0.004520564, -0.020388596, -0.00274475, -0.026011154, 0.024769278, 0.009825829, -0.014643215, -0.014588627, -0.011552173, -0.0019822246, 0.009355009, -0.0010149946, -0.0075740768, -0.029777722, 0.0014747273, -0.011013117, 0.0054792645, -0.027839849, 0.012302757, -0.0050903256, -0.013742514, 0.005185854, 0.19728082, -0.011463468, -0.0017536376, 0.040395077, 0.011756877, 0.019678952, -0.011804642, -0.019392366, -0.0099759465, -0.010637825, 0.009477831, 0.019678952, -0.0011898465, -0.00828372, 0.009286773, 0.012057112, -0.0294229, -0.012309581, -0.01770014, 0.009457361, -0.0028198082, 0.0017399905, 0.005513382, -0.021111885, 0.01764555, -0.018054962, 0.009266303, -0.006748434, 0.03136077, 0.0044113877, -0.023227168, 0.021821529, -0.0063117305, -0.0067552575, -0.03780215, 0.0069360803, 0.01584415, -0.017550023, 0.0054417355, 0.01824602, 0.007771958, 0.0371198, 0.0045922105, -0.020743417, -0.007867487, 0.0015395505, -0.010972176, -0.0029409253, -0.0139131015, 0.0013476398, 0.009170774, 0.0019105779, 0.02244929, 0.02326811, -0.0017502259, -0.01959707, -0.0026594563, -0.01525733, -6.934374E-4, -0.0047389157, -0.013947219, 0.04140495, 0.006611964, 0.010692413, -0.015066272, 0.020770712, -0.022026233, -0.03051466, 0.006253731, -0.001895225, -0.015871443, 0.0011719349, -0.004742327, -0.0017945785, -0.029259136, -0.017140614, 0.03657392, 0.017918492, -0.0048617385, 0.02145306, -0.007997133, -0.010876647, 0.008229132, -0.014629568, 0.028685963, -0.026338682, 0.023800341, 0.010057828, 0.018396135, -0.0059227915, 0.0036778625, 0.011797818, -0.023677519, 0.012323228, 0.0023455755, -0.013060165, -0.019747188, 0.003589157, -0.010603707, 0.020989062, -0.007533136, 0.07494924, 0.010972176, -0.023868578, -0.031333476, 0.014356628, -0.0060524377, 0.02389587, 0.012159464, -0.032616295, 0.0058682035, -0.021016357, 0.01525733, -0.016280854, 0.017086025, -0.011654525, -0.013769808, -0.023186227, -0.008775012, -0.0069463155, 0.019774482, -0.0044693877, -0.008829599, -0.015994266, 0.00842019, -0.01901025, -0.038539086, 0.03987649, -0.015516622, -0.037228975, 7.0623145E-4, 0.02661162, 0.021425767, 1.6088516E-4, -0.011988876, 0.0033690995, -0.002447928, -0.010828882, 0.005015267, -0.0042305654, -9.5699483E-4, 0.020306714, -0.009894065, 0.012098053, 0.034062874, -0.03190665, 0.013742514, 0.0049947966, -0.0024240457, -0.015202741, 0.0038143324, 0.006826904, 0.0018474606, -0.03409017, 0.018723663, -0.019801775, -0.024782926, -0.030924069, 0.015543916, -0.011647702, -0.017522728, -0.027949026, 0.020088362, 0.003186571, -0.031852063, 5.5270287E-4, -0.17348048, 0.0051278546, 0.033653464, 0.026734443, 0.007744664, 0.0010678766, 0.023172582, 0.009259479, -0.007983486, 0.0013894336, 0.013101106, -0.0060012615, -0.027184794, -1.9681512E-4, 0.023186227, -0.020893535, -0.023377286, 0.015598504, 0.022203645, -0.0085976, 0.016130736, -0.015516622, 0.018341549, 0.008727247, -0.0011216116, 0.011913818, -0.016785791, 0.035782397, 0.01258252, 0.005970556, 2.073702E-4, -0.009675712, 0.020347655, 0.0029562782, 0.01828696, -0.023554696, 0.011347468, 0.0077651343, 0.013094282, 0.03720168, -0.008413366, 0.024673749, 0.024796572, -0.019105779, 0.008706776, 0.025956566, -0.0011761995, -0.012377815, 0.018887427, -0.00842019, 0.053851005, -0.016867673, -0.0036028042, 0.003817744, -0.0034680401, 0.010214768, -0.021084592, 0.0021971646, 0.014888861, -0.0086658355, -0.040749896, -0.021821529, -6.1582023E-4, -0.00699408, -0.0042851535, -0.03471793, 0.0055986755, 0.013442281, 0.014643215, 0.0187919, -7.1177556E-4, -0.025970213, 0.015543916, -0.0023233993, 0.02123471, -0.018860133, -0.026447857, -0.008406543, 0.034908988, -0.004871974, 0.005578205, 0.044325408, -0.014479451, 0.0073830187, -0.01770014, -2.7805733E-4, 0.0151618, 0.01793214, -0.02123471, 0.014370276, 0.005407618, -0.014602274, -0.018095903, 0.022462938, 0.0174272, 0.011074528, 0.005820439, -0.018518958, -0.002018048, -0.0032599235, 0.01639003, 0.018846486, -0.024550926, 0.007963016, 0.023868578, 0.011593114, 0.022804111, 0.0037631562, 0.008181368, 1.6578955E-4, 6.1667315E-4, 0.02100271, 0.017768374, 0.025192335, -0.005701028, -0.0050357375, -0.006089967, -0.019938245, 0.017618258, -0.02213541, 0.034908988, -0.02430528, -0.009921358, 0.042660475, -0.014902508, -0.018450724, -0.07276572, -0.017058732, 0.021698706, 0.03073301, -0.017590964, -0.012739461, -0.007635488, 0.028713256, -0.011538526, 0.038129676, -0.025724567, -0.0031763357, -0.024032341, 0.027184794, 0.016171677, 8.559218E-4, 0.00558844, -0.004387506, -0.032507118, -0.0045376224, -0.013919924, -0.023609284, 0.0037119798, -0.015475681, -0.008454307, 0.010126063, -0.024469044, 0.019214954, 0.02575186, -7.7148114E-4, 0.0021971646, -0.008215485, -0.007819722, -0.008563483, -0.025588097, -0.0051824427, -0.027635144, -0.011934289, 0.015462034, -0.021316592, 0.0028044553, 0.001774108, 0.008133603, 6.699817E-4, -0.030050661, -0.034226637, -0.00607632, 0.0069429036, -0.012814519, -0.04159601, -0.002110165, -0.0034868047, 0.009355009, -0.0071305498, 0.011852407, -0.025956566, 0.008611248, 0.02788079, -0.021616824, -0.004936797, -0.015407446, 0.013769808, -0.033571582, 0.01873731, 0.015175448, -0.0069565508, 0.020620594, 0.016458264, 0.029368311, -5.126149E-4, -0.0014508452, 0.020306714, -0.0054315003, 0.001895225, -0.032206886, -0.020443184, 0.017058732, -0.00844066, 0.034936283, -0.018710017, -0.026516093, -0.02023848, 0.012985107, -0.033162173, 0.002528104, 0.0010371709, 0.006533494, 0.01129288, 0.014342981, -0.020320361, 0.0119069945, 0.033162173, 0.034963574, 0.023459168, -0.026693502, -0.004206683, 0.0073079607, 0.010426297, -0.015298271, 0.010207945, -0.04290612, -0.01443851, -0.08313743, 0.036246393, 0.017236141, 0.007451254, -0.0047218567, 0.018450724, 0.008802305, -0.0010610531, 0.03010525, 8.9899515E-4, -0.005189266, 0.010515002, 3.8302183E-5, 0.0023967517, 0.009129833, -0.01643097, 0.006659729, -0.008338308, -0.011183704, 0.016676616, 0.0040940954, -0.009921358, -0.01633544, 0.034636047, -0.008297367, -0.009969123, 0.0032189826, 0.006949727, 7.987751E-4, 0.02430528, 0.012118523, -0.019419659, 0.024414456, 0.019719893, -0.008815953, 0.0043329177, -0.03594616, 0.007219255, -0.024196105, -0.040722605, -0.016731204, -0.006130908, -0.003014278, -0.01774108, -0.022817759, -0.0036642156, 0.017986726, 0.005632793, 0.008467955, 0.019870011, -0.004251036, 0.014697803, 0.0014551098, -0.050766785, 0.001975401, -0.0058374978, 0.014138277, -0.009041128, 0.006659729, 0.011483938, 0.03747462, 0.012916871, 0.026406916, 0.0022568703, 9.220244E-4, 0.0038825672, -0.009068422, -0.017577317, -0.003831391, -0.028522199, -0.01142935, -0.015052625, 0.005629381, 0.008474777, 0.0034868047, -0.018123196, -0.0049026795, -0.0056669107, -0.018914722, 0.0049402085, 0.015530269, 0.014998036, -0.039494377, 0.011927465, 0.028085496, -0.008536189, -0.014547686, 0.012985107, -0.013101106, 0.015939679, -0.035700515, 0.0348544, -0.017959433, -0.0066290232, 0.04380682, 0.018164137, -0.014697803, -0.008126779, -7.910987E-4, 0.0121389935, 0.015584857, 0.022176351, -0.019228602, 0.017904844, 0.009314068, -0.011797818, -0.03217959, -0.03389911, -0.004742327, 0.006226437, -0.009054774, -0.004339741, -0.006359495, 0.018068608, -0.019897304, -3.5450175E-5, 0.006079732, -0.0044284468, -0.0149570955, 0.013073811, 0.014165571, 0.0032104533, -5.826623E-5, 0.0021562236, 0.014861567, -0.006867845, 0.008345132, -0.007499018, 0.01959707, -0.0140700415, -0.007096432, 0.026311388, -0.028030908, -0.024155164, -7.7958405E-4, -0.020197539, 5.258354E-4, 0.020606948, -0.009982769, 0.08772282, -0.012343698, 0.0029562782, 0.008079016, 0.009095715, 0.006202555, 0.020293066, -0.018518958, -0.045881163, -0.02154859, 0.003080807, 0.009962299, -0.017891198, 0.013292164, -0.039139554, 0.008181368, 0.011593114, -0.001022671, -0.027621498, -0.0031592771, 0.023609284, -0.04667269, 0.0035959806, -0.023513755, -0.009075245, 0.010767471, 0.043015298, 0.02914996, 0.014383922, -0.041623306, 0.00885007, 0.018396135, -0.02670715, -0.027908085, -2.5716037E-4, -0.014970743, -0.030241719, 0.015175448, -0.014083689, -0.010528649, 0.0015088448, 0.0393852, -0.024878453, -0.023008818, 0.009102539, 0.0021067534, -0.012841813, -0.020661535, -0.035345692 ], - "id" : "23ef324e-294d-47ab-8801-0fe3a7062481", - "metadata" : { - "name" : "CycleCharge Pro Tubeless Tire Inflator" - }, - "text" : "price: 129.99\nname: CycleCharge Pro Tubeless Tire Inflator\nshortDescription: \ndescription: ## Overview\nThe CycleCharge Pro is a versatile bike accessory that combines the functionality of a floor pump and a tubeless tire inflator in one compact design. With its innovative features, it simplifies the process of setting up tubeless tires and provides a convenient solution for daily tire inflation.\n\n## Product Details\n- Dual-functionality: The CycleCharge Pro can be used as a traditional floor pump for regular tire inflation and as a tubeless tire inflator for hassle-free setup.\n- Tubeless ready: The pump features a specialized mode called \"Tubeless Charge\" which pressurizes a chamber to quickly seat tubeless tires without the need for an air compressor.\n- Digital pressure gauge: A clear and easy-to-read digital gauge displays accurate pressure readings up to a maximum of 150 PSI, ensuring precise inflation for your bike tires.\n- Compatible with Presta and Schrader valves: The CycleCharge Pro supports both valve types, allowing for seamless use with various bike models.\n- Convenient storage: The pump is designed with integrated storage compartments in the handle, providing a convenient space to store small attachments like needles and adaptors for inflating sports balls and other items.\n- Sturdy construction: Built with durable materials, the CycleCharge Pro is designed to withstand regular use and provide long-lasting performance.\n\n## Features\n1. Dual-functionality: Combines the functionality of a floor pump and a tubeless tire inflator for versatile use.\n2. Tubeless Charge mode: Allows for quick and efficient tubeless tire setup without the need for an air compressor.\n3. Digital pressure gauge: Provides accurate pressure readings up to a maximum of 150 PSI.\n4. Presta and Schrader valve compatibility: Ensures compatibility with a wide range of bike models.\n5. Integrated storage compartments: Conveniently stores small attachments for inflating various items.\n6. Sturdy construction: Made with durable materials for long-lasting performance.\n\n## Specifications\n- Pump type: Floor\n- Valve compatibility: Presta/Schrader\n- Gauge type: Digital\n- Max pressure: 150 PSI\n- Frame mounted: No\ntags: [pump]" - }, - "c5a48b96-3f7c-4cfc-8ae4-1e54c78b0810" : { - "embedding" : [ 0.009819953, 0.011895062, -0.025664417, 0.0019713538, -0.013220455, 0.025878621, -0.0019311905, -0.036575474, 0.015570014, -0.031407785, 0.02034946, 0.010743711, -0.029131858, -0.013514986, -0.0020232317, -0.0033887874, 0.008514642, -0.0068478608, 0.007905497, -0.005361815, 0.0083339065, 0.010194811, 0.011346162, -0.011292611, -0.0018408227, 0.016239405, 0.041100554, -5.547571E-4, -0.0040933206, 0.00507063, 0.008414234, 0.029774472, -0.014057192, 0.008775705, -0.024339024, -0.022732489, 0.018327901, -0.013461435, 0.024325637, 0.02266555, 0.039145935, -0.009813259, -0.019211495, 0.013053107, -0.020496726, 1.1254121E-4, -0.0057299794, -0.0026675195, 0.020670766, 0.0042807497, -0.025316333, 0.0030440516, -0.004133484, 0.0039560953, 0.0031109906, -0.019412313, 0.011038243, 0.005258059, 0.036655802, 0.018006593, -0.002056701, 0.0024382535, -0.035959635, 0.004307525, -0.01839484, -0.012209675, -0.007530639, 0.007905497, 0.0013596987, 0.00279303, 0.019144557, 0.0265614, 0.019037455, 0.026507849, -1.1201825E-4, -0.03641482, -8.8192144E-4, 0.008561499, 2.587611E-4, 0.0062755323, 0.030309984, -0.023495592, 4.3850283E-5, 0.013568537, 0.01815386, 0.012290003, 0.0144186625, -0.005914062, -0.019479252, -0.0049568336, 0.0048865476, 0.017163163, 0.0060546333, 0.018850025, 0.002774622, 0.0030089086, -0.011453264, -0.0078117824, -0.022437956, -0.025932172, 0.0064596147, 0.015114829, 0.006382635, -0.015810994, -0.0343531, -0.02417837, 0.0012935963, 0.018809862, 0.013240537, 0.00621194, -0.016453609, 0.031407785, -0.0013053108, -0.022237139, 0.01937215, -0.0029202143, 0.034942165, 0.01918472, 0.026829155, -0.008173253, 0.009097012, 0.024633557, 0.0034741347, -0.028275039, 0.009813259, 0.001457597, -0.017685287, -0.009525421, 0.023843676, -0.009398237, 0.012236451, -0.0027880098, 0.009819953, 0.0070821475, -0.032853667, 0.012644779, -3.528941E-4, 0.019947825, -0.044929463, -0.021099176, 0.013287393, 0.0077983947, -0.014887236, -0.011165427, -0.00574002, -0.009813259, -0.0065901456, 0.0046355263, 0.033951465, -0.0050304667, 0.024352413, 0.0041000145, 0.032371707, 0.03234493, -0.016172465, -0.018368065, -0.0037854011, 0.016721364, -0.034058567, -0.007490475, -0.011741103, -0.0013513312, 0.003408869, 0.0022022934, 0.00577349, 0.01949264, 0.0062454096, -0.022036321, -0.019358762, -0.02553054, -0.025169069, 0.02204971, -0.027926955, 0.013186985, 0.010382241, 0.017765613, 0.020376235, 0.004056504, -0.009873504, 0.01820741, 0.025302947, -0.0036983804, 0.024513066, 0.016600875, -0.023160897, -9.873504E-4, 0.0053183045, -0.029587043, 0.0052078553, -0.01206241, -9.313936E-5, 0.0029637248, 0.0013036373, 0.001355515, -0.6061997, -0.01894374, -0.0027528668, -0.0076712104, 1.9046241E-4, 0.009893586, -0.0056496523, 0.001993109, -0.00813309, 0.017310428, -0.020469949, 0.01324723, -0.00534508, -0.012771963, -0.03167554, -0.024901312, 0.0028616427, -0.008835949, 0.005703204, -0.0058002654, -0.014298173, -0.002235763, -0.018555494, 0.003186297, 0.00730974, 0.013086577, 0.008327213, -0.010127872, 0.007831864, 0.017511245, -0.021594524, 0.053470884, -0.0021671504, -0.0101144845, 0.036227394, -0.033121422, 0.008829256, 0.024834372, 0.0011304326, 0.034942165, -0.020188807, 0.0075507206, -0.0027444994, -0.003855687, 0.014525766, 0.026775604, 0.017042672, 0.0078050885, 0.0019830682, -0.03783393, 0.01693557, -3.623074E-4, 0.023803512, -0.024258697, 0.010442486, -7.308903E-4, 0.032987546, -0.0061215726, -0.011178815, 0.006707289, 0.009398237, 0.013173597, -0.0227191, -0.02637397, -0.008367376, 0.011620612, -0.027766302, -0.018260961, 0.02692287, -0.020068316, 0.012095879, 0.021085788, 0.0016199241, 0.029533492, 8.96146E-4, 0.013099965, 0.030470638, 0.0026876014, -0.007932273, 0.02034946, 0.0078117824, 0.0010099424, -0.0031394395, -0.03713776, 0.029399613, -0.008929664, -0.0018993944, -0.016252792, 0.019867498, 0.012805433, 0.02412482, 0.0013990253, -0.014231234, -0.014780134, 0.007021902, 0.015476299, -0.011265836, 0.013883151, 0.021781955, -0.02479421, -0.022317465, 0.003355318, 0.004354383, 0.011962001, 0.023442041, 0.013260618, -0.032612685, -0.044126198, 0.01309327, -0.03253236, -0.014673031, -0.02637397, -0.011573755, -0.013033025, -0.008487866, -0.023120735, 0.031193579, 0.012330166, 0.0058571636, -0.032371707, -0.013856376, -0.01638667, 0.0049769157, -0.010716936, -0.0025169067, 0.014164295, 0.019787172, -0.0049601807, -0.010388934, 0.011714327, 0.022156812, -6.6886714E-5, 0.02345543, -0.00928444, 0.022973469, 0.009498646, 0.009311216, -0.0033436036, 0.015784219, -0.041796718, -0.043778114, 0.021005461, 0.016252792, -0.013735885, -0.012785351, -0.016908795, -0.004612098, 0.010971304, -0.013374414, -0.018234186, 0.0020901705, -0.009558891, 0.0073365155, 0.006780922, 0.004930058, -0.01827435, -0.009404931, -0.02144726, -0.025784908, -0.023616083, 0.02192922, -0.0016190873, -0.011573755, -0.0054488354, 0.003728503, -1.5218166E-4, 0.0025972335, 0.015623565, -0.010683466, -0.03927981, -0.012303391, 0.0069884327, -0.007925579, 0.013869763, -0.023120735, -0.010824038, -0.010475955, -0.022759264, 0.008775705, -0.011506816, 0.024084656, 0.027150463, -0.032559134, 0.014191071, 0.031059701, 0.013213761, 0.0127318, 0.018381452, 0.01242388, 0.0210724, -0.022156812, 0.015583402, -0.010971304, 0.020389622, -0.012008859, -0.025932172, 0.020804645, 0.008735541, 0.016453609, 0.018060146, 0.009719544, -0.0067842687, 0.004384505, 0.014043804, 0.010583058, -0.015985036, 0.010321995, -1.1505142E-4, 0.023268, 0.032452032, 0.011192203, -0.020095091, -0.015810994, -2.8789003E-5, -0.012651473, -0.015047889, 0.024138207, 0.045036566, -0.02259861, -0.028890878, -0.00809962, 0.01014126, 0.025597477, 0.007041984, 0.008420927, 0.019171333, 0.030095778, 0.03713776, -7.087168E-4, -0.025985723, 0.008260274, 0.030658066, 0.0062454096, -0.010830732, 0.027632423, 0.03239848, 0.007892109, -0.015918097, 0.041502185, -0.033415955, 0.030443862, 0.028435692, 0.01577083, -0.02028252, 0.0064730025, 0.020737706, 0.012189594, 0.01276527, 0.009953831, 0.013615395, -0.035986412, 0.0028013976, 0.0103621585, -2.8637346E-4, 0.01755141, -0.017270265, 0.01081065, 0.017122999, -0.008728847, 0.005211202, 0.008963133, 1.1787542E-4, 0.04075247, 0.00482965, 0.015449524, 1.676613E-4, -0.030899048, -0.013602007, -0.009331298, -0.033978242, 0.020469949, -0.008688684, 0.0015504748, -0.0052011614, 0.032559134, -0.010402323, -0.008775705, -0.003285032, 0.0083339065, 0.044019092, -0.022103261, -0.038771074, -0.0071892496, 0.0053651617, -0.007972436, 0.0024600087, -0.0029101735, 0.006693901, 0.0067441054, 0.05853147, 0.0073365155, 0.014820297, -0.011741103, -0.0090032965, -0.011881675, -0.008775705, 0.018769698, -0.0046924246, -0.0018876801, 0.010007382, -0.01619924, 4.8865477E-4, -0.009799872, -0.016025199, 0.023723185, -0.016400058, 0.0017153121, -0.03175587, 0.024272086, -0.0172301, 0.021246443, -0.037619725, -0.016533935, -0.0344602, -0.0141375195, 0.0027712751, -0.014847073, -0.019947825, 0.023522368, -0.022893142, -0.020336071, -0.011493429, -0.019706845, -0.012115961, 0.060298663, 0.026842544, -0.009900279, 0.034379877, -0.010014076, 0.017136388, -0.006161736, -0.016159078, 0.010984692, 0.039065607, -0.0046221386, 0.00837407, -0.019519415, -0.00828705, -0.005532509, -0.008427622, 0.0015245359, -0.016828468, -0.0032365012, -0.008514642, -0.01276527, 0.011259141, 0.016038587, -0.008943052, 0.014003641, 4.0623613E-4, 0.018890189, 0.01827435, 0.0096593, -0.0075708022, -0.025343109, -0.023174286, 0.014847073, -0.007537333, -0.027016586, 0.0075507206, -0.0015011074, -0.016654426, 0.0020115173, -0.010917753, 0.005462223, 0.047981884, -0.00785864, -0.004712506, 0.009150563, -0.015021114, -0.0015546585, -0.002372988, 0.0036347883, -0.016989121, 0.031193579, -0.0029704187, -0.005766796, -0.0030122555, 0.002739479, 0.011888368, -0.0033636852, -0.0126380855, -0.01257784, -0.032505583, -0.015636953, -0.017578185, 0.005328345, -0.0085815815, -0.01662765, 0.009786484, 0.033335626, 0.006037899, -0.01498095, -0.01595826, -0.03100615, -0.0090032965, -0.030309984, 0.017390756, 0.0031227048, 0.019265048, 0.00825358, -0.011071713, 0.035959635, 0.012845596, -0.0032933992, -0.009739626, -0.0029520104, -0.034995716, 0.009605748, -0.010188118, 0.018903576, 0.01123906, 0.030711617, 0.010094403, 0.018742923, -0.0014617806, 0.02510213, 0.0044748727, 0.0053551206, 0.0018508637, 0.015221931, 0.008715459, 0.0029587043, 0.012986168, 0.019452477, -0.017444307, -0.0036180536, -0.0035009102, 0.0035979718, 0.01242388, 0.0069415756, -0.009083624, 0.0054655704, -0.016922181, -0.009880198, -0.02144726, -0.023575919, 0.008266968, -0.040163405, 0.0045819753, 0.007503863, 3.7213907E-4, -0.012022247, -0.010737018, 0.012738494, -0.045839835, 0.028435692, -0.012497514, -0.016493773, 0.02131338, -0.0030842149, 0.0067240237, -0.002506866, 0.03735197, 0.014994338, 0.032505583, 0.008092927, 0.014994338, -0.010730323, -0.031032925, -0.024285473, -0.004033075, 0.0077381497, -0.009645912, -0.0238169, 0.027444994, 0.01099808, 0.0070821475, -0.0155298505, -0.022585222, -0.035049267, 0.021085788, -0.0044045867, 0.022933304, -0.0074034547, -0.0131133525, -0.00852803, -0.028837325, -0.02175518, -0.04452783, 0.011111876, -0.027739527, 0.012042328, 0.039788548, 0.004538465, -0.008548112, -0.006228675, 0.023669634, -0.012524289, -0.003214746, -0.025289558, 0.005552591, -0.04476881, 0.025543926, 0.021848893, -0.0138296, -0.042225126, -0.046268243, -0.0018090268, 0.009090317, -0.012069103, -0.008681989, -0.015596789, -0.03373726, 0.0014910664, -0.025450211, -0.009190726, 0.0013103312, -0.040886346, -0.008467785, 0.05007038, 0.0027327852, 0.015315645, 0.016774917, -0.0056463056, -0.035531227, 0.05633587, -0.005626224, 0.026280256, 0.013936702, -0.01276527, -0.03191652, -0.024017718, -0.003859034, 0.0048463843, 0.021340156, 0.0044983015, -0.004541812, 2.8658265E-4, 0.013207067, 0.010716936, -0.01686863, -0.0027562138, -0.023843676, -0.020603828, -0.0276592, 0.011700939, -0.028087609, 8.665464E-5, 0.006489737, -0.00664035, 0.01906423, -0.023897227, 0.008153171, 0.025236007, 0.012992862, 0.040725693, 0.00479618, 0.02235763, 0.02881055, -0.02582507, -0.009304523, -0.036280945, -0.009578972, 0.009498646, 0.011948613, 0.02589201, 0.008293743, 0.009960525, 0.0031210314, -3.51639E-4, -0.007376679, 1.2415095E-4, 0.011814736, 0.007383373, 0.04466171, -0.0030540924, -0.011828124, -0.002746173, 0.009311216, -0.0065265535, 0.020510113, -0.0029905003, -0.0076645166, 0.008447703, 0.011540285, -0.003792095, 0.0064395326, 0.009190726, -0.001081065, -0.0010157995, 0.004689078, -0.025329722, 0.0062521035, -0.008561499, 0.04940099, -0.0020901705, 0.0023261306, 0.018863413, -0.0070152082, -0.008320519, -0.013963478, 0.0072227195, 0.023535756, -0.0141375195, -0.014217846, -0.02589201, -0.0161323, -0.008400846, -0.008193335, -0.012089185, 0.01099808, 0.013320863, -0.001195698, -0.0011647388, -0.016948957, -0.0332553, -0.024044493, -0.0131133525, -0.03282689, -0.011419795, -0.0015630259, 0.003405522, -0.036388047, -0.0040899734, -0.013749273, 0.019198108, 0.023602696, 0.023067184, -0.0081397835, -0.021648075, 0.020992074, -0.027552096, -0.0041000145, 0.022130037, -0.00959236, -0.009364768, 0.022063099, 0.0033185014, -0.02443274, 0.0027411524, -0.015797606, -0.027766302, -0.053310227, 0.0023964166, -0.002640744, 0.0131669035, -0.020844808, 0.013441353, 0.0017169856, 0.011386326, -0.018756311, -0.009431707, -0.011674164, 0.0032549093, -0.0056529995, 0.015690504, -0.03593286, 0.0040297285, -0.009244277, -0.003112664, 0.007791701, -0.013628783, -0.03855687, -0.00688133, -0.002433233, -0.014124131, -0.009297828, -0.005274794, -0.020536888, -0.022491507, 0.012249839, -0.0018609045, 0.014351724, 0.008655214, -0.014445439, -0.004672343, 0.025932172, -0.0074168425, -0.014512378, 0.010562976, -0.021969384, -0.042439334, -0.030122556, 0.0010576363, 0.040002752, 0.010027464, -0.02582507, -3.5833288E-4, -0.010824038, -0.056817833, -0.019907663, -0.029640594, 0.022330854, 0.025597477, 0.012618003, -8.333907E-4, -0.0065265535, 0.021848893, 0.05170369, -0.018742923, -0.02175518, -0.0040866267, 0.014231234, -0.010014076, -0.0016098832, -0.047071513, -0.0029285818, 0.02814116, 0.014525766, 0.0075641084, 0.0052513652, -0.0020884972, 0.0057299794, 0.0061952053, -0.025731355, 0.017203325, 0.019760396, 0.013300781, -0.039547566, -0.021366931, -0.0070687598, 0.013535068, 0.0056663873, -0.007938967, 0.0036414822, -0.017256876, 0.0022123342, -0.014914012, 0.0020516806, -0.010355465, 0.012986168, 0.02071093, 0.023053795, -0.007102229, 0.026829155, 0.025329722, -0.026119603, -0.014579317, 0.039574344, -0.0034942164, -0.01151351, 0.011218978, -0.026159765, 5.6103256E-4, -0.012437268, 0.014445439, 0.011587143, -0.027605647, -0.0126380855, -0.004789486, -0.02168824, 0.03502249, 0.02235763, -0.03368371, -0.04147541, 0.019773783, -0.0070821475, 0.020389622, 0.0079456605, -0.008153171, -0.048410293, 0.0015345769, -0.013628783, -0.014191071, -0.050579116, 0.029024756, 0.0039025443, -0.0029587043, 0.010977997, 0.19546191, 0.0040899734, -0.012290003, 0.026788993, 0.021273218, 7.735639E-4, -0.0074168425, -0.0058337348, -0.011111876, -0.010957916, 0.0011572081, 0.016159078, -0.014391887, -0.0077515375, 0.020777868, -0.014258009, -0.048624497, -0.008521336, -0.012323472, -0.014177683, 0.007396761, -0.01257784, 0.007771619, -0.023308164, 0.011988777, -0.013568537, -0.035665106, -0.01820741, 8.3213556E-4, 0.003348624, 0.001897721, 0.0033000933, 0.0127251055, 0.0016835161, -0.047178615, 0.011212285, 0.019760396, 0.0046221386, 0.004970222, 0.039922427, 0.012022247, 9.940444E-4, 0.01081065, 9.2302624E-5, -0.004605404, -0.017698674, -0.034005016, 0.008608357, -0.019840723, -0.00683782, -0.0354509, 0.023227837, -0.0125845345, 0.03210395, -0.0012885759, -0.025798295, 0.010449179, -0.015395973, 0.010703548, -0.018113697, -0.019706845, 0.036254168, -0.0040966673, 0.042921294, 0.003464094, 0.010047546, -0.0067273704, -0.0069415756, 0.029212184, 0.012022247, -0.01705606, -1.0783456E-4, 0.0036381353, -0.0012007185, -0.018783087, -0.01796643, 0.026574787, 0.0024750698, 0.008313825, 0.0071423925, 0.014244622, 0.0042974846, 0.00806615, 0.001658414, 0.0012099226, -0.037378743, 0.03440665, 0.009210808, 0.0054321005, -0.0030490719, 0.0020550275, -9.001466E-6, 0.005626224, -0.003351971, 0.012785351, 0.005351774, -0.015436136, 0.030684842, -0.016922181, 0.015007726, -0.015650341, 0.069563024, -0.01870276, -0.0022842938, -0.022933304, 0.011580449, 0.017163163, 0.03443343, 6.8863505E-4, -0.03175587, -9.605748E-4, -0.037673276, 0.0016224342, -0.0020784563, 0.02412482, -0.0054588765, 0.005271447, -0.014887236, 0.0116674695, -0.027926955, 0.013896539, -0.004110055, 0.023013633, -0.014954175, 0.01906423, -0.033951465, -0.020777868, 0.021875668, -2.8684412E-5, -0.0265614, 0.016333118, 0.012256533, 0.006225328, -0.019572968, -0.02441935, -0.011486734, 0.0013036373, -0.0048263026, 0.010636609, -0.005877245, 9.421666E-4, 0.019880887, 0.020054927, 0.014726582, 0.019747008, -0.025811683, 0.02028252, 0.0011153712, -0.02558409, -0.018957129, -0.024218533, 0.009177338, 0.015114829, -6.677166E-4, 0.011834817, 0.0049267113, -0.027766302, -0.022089874, -4.4347096E-4, 0.009224196, -0.030711617, -0.0112792235, 0.003584584, -0.016694589, -0.015918097, -0.0037586254, -0.1685792, 0.00828705, 0.013320863, -0.014177683, 0.010549588, 0.014592704, 0.034513753, -0.0155298505, 0.0033921343, 0.003939361, 0.023348328, -0.0114733465, -0.0331482, -0.0050438545, 0.019653294, 0.0043878523, -0.03282689, 0.009217502, 0.035397347, 0.012919229, -0.0043577296, -0.034620855, 0.004923364, 0.01221637, 0.02637397, 0.014699806, 0.0066202683, 0.033844363, -0.0014726582, -0.0021152727, -0.002274253, -0.014592704, 0.053979617, -0.003584584, 0.0034574, -0.023883838, -0.008702071, -0.0045284242, -0.0073432093, 0.050525565, 0.0069951266, -0.014860461, 0.024981638, -0.009652605, 0.01791288, 0.005264753, -0.023522368, 0.004970222, -6.150022E-4, -0.007865334, 0.052239206, -0.017564796, 0.007651129, -0.018368065, 0.021607913, 0.013160209, -0.008233499, -0.015663728, 0.003862381, -0.023160897, 0.004946793, -0.002274253, 0.0029285818, -0.01367564, 0.014860461, -0.041073777, 0.0026876014, 0.03593286, -0.027632423, 0.005274794, 0.015342421, 0.0161323, 0.004307525, 0.0027629077, 0.035397347, 0.0061885114, -0.032184277, -0.011111876, 0.049079683, -0.016962346, -4.9325684E-4, 0.028649896, -0.017765613, 0.0054321005, -0.0070955353, -0.002366294, 0.0070486777, -0.0079456605, 0.0013697395, -0.0033971549, -0.0041937293, -0.014833685, -9.145542E-4, 0.0161323, 0.004853078, 0.006546635, -0.0125309825, -0.007303046, -0.004679037, 0.0025871927, 0.0060814093, 0.008340601, -0.0420377, 0.005478958, 0.026574787, 6.229512E-4, 0.008735541, 0.042733863, 0.026829155, -0.005947531, -0.011540285, 0.03429955, 0.018930351, 0.0497223, 0.008487866, 0.01961313, -0.011982083, -0.019465864, 0.02296008, -0.0086686015, 0.027793078, -0.015570014, -0.023776736, 0.012798739, -0.023589307, -0.034808286, -0.071437314, -0.005562632, 0.023401879, 0.00499365, -0.016908795, -0.0101144845, -8.459418E-4, 0.019211495, -0.016359894, 0.03502249, 0.011533592, -0.038530096, -0.0040832795, 0.010201505, 0.034727957, -0.0045150365, 0.014110743, -0.032130726, -0.017283652, 0.029131858, -0.011787959, -0.0057801837, -0.0038188705, -2.1179921E-4, 0.0055760196, -0.0116139185, -0.020764481, 0.020483337, 0.021902444, 0.0127251055, 0.020764481, -0.020871583, 0.01992105, -0.008789092, -0.04343003, -0.022223752, -0.008414234, -0.021005461, 0.020376235, -0.022397794, 0.004187035, 0.0131669035, 0.024954863, -0.03148811, -0.027190626, -0.012939311, -0.015784219, 0.025664417, -0.0022508241, -0.0010224934, -0.0088091735, -0.010670078, 0.0052379775, -0.0069951266, 0.029774472, -0.016159078, 0.0053818966, 0.001667618, -0.014565929, -0.010449179, -0.014753358, 0.009177338, 0.0051074466, -0.0047024656, -0.0028532753, 0.005150957, 0.004484914, -0.004946793, 0.02486115, -0.026815768, -0.0125309825, 0.030818721, -0.009344686, 0.016480384, -0.036762904, 0.010576364, -0.021032237, -0.01968007, 0.040457938, 0.013006249, -0.014324948, -0.0193186, 0.025128905, -0.032130726, 0.020188807, 0.026333807, 0.029453164, -0.011004773, 0.007162474, -0.04950809, -6.898902E-4, -7.564108E-4, 0.026574787, -0.010489343, -0.02692287, -0.017926266, -0.006921494, -0.0039828713, -0.021634689, 0.002024905, -0.027552096, -0.0067340643, -0.08064812, 0.030952599, 0.013193679, -0.022558447, -9.821208E-5, 0.0155298505, 0.024499677, -0.01864921, 0.01276527, -0.0013638823, 0.0026708664, 0.009425012, -0.007169168, 0.0035912779, -0.006981739, -0.0143651115, 0.018234186, -0.03673613, 0.034085345, 0.011921838, 0.0022340894, 0.0055425502, -0.01367564, 0.03320175, -0.04185027, -0.007436924, -0.02028252, 0.016279567, 0.015034501, -0.016493773, 0.024272086, -0.015677117, 0.016801693, 0.05499709, -0.004344342, -0.019760396, 0.0038121766, -0.00644288, 0.006576758, -0.017953042, -0.018046757, -0.0050672833, -0.0074168425, -0.013066495, -0.0032917259, 5.0371606E-4, 0.014177683, 0.012966086, 0.011379632, 0.02095191, 0.0014642909, -0.009786484, 0.005549244, -0.050284583, 0.0055693258, -0.01815386, 0.016426833, -0.017658511, 0.0092509715, -0.0031176845, 0.03320175, 0.016038587, 0.014967563, -0.021273218, 0.011111876, -0.0151416045, -0.034567304, 0.0047694044, -0.011982083, -0.01309327, -0.017377367, -0.008266968, 0.0076712104, 0.026106214, -0.0025102128, 6.451247E-4, 0.011814736, -0.008414234, -0.020751093, 0.006037899, 4.4765463E-4, -0.001859231, -0.009451788, -0.0066905543, -4.4399392E-5, -0.014565929, -0.007590884, -0.0076578227, -0.016279567, 0.025490375, -0.029265735, 0.038396217, -0.013468129, 0.001760496, 0.029640594, 0.0018090268, -0.01968007, -0.02374996, 0.023268, 0.025343109, -0.007396761, 0.0127786575, 0.016654426, -0.026333807, -0.004150219, -0.0062052463, -0.02283959, -0.033335626, -0.009826647, 0.0039427076, 2.4461502E-5, -2.57506E-4, -0.009893586, 0.010188118, -0.0031729091, 0.023227837, -0.013180291, -0.03124713, -0.02649446, 0.037057437, 0.020670766, 0.0131133525, 3.8343502E-4, -0.011794654, 0.02412482, -0.009498646, 0.008594969, 0.00404981, 0.0036682577, -0.016694589, 0.02229069, 0.0095856665, -0.0069549633, -0.01069016, -0.0033034403, -0.013990253, -0.01998799, 0.01650716, 0.0077582314, 0.0975703, 0.020081703, 0.0056663873, 0.009210808, -0.017564796, 0.013936702, 0.007952355, -0.0051040994, 0.004327607, -0.03703066, 7.258699E-4, -0.0068545546, -0.0172301, 0.028382141, -0.043644235, 0.017136388, 0.00593749, 0.0016759855, 0.005197814, -0.029506717, 0.032371707, -0.014940787, 0.017953042, -0.013568537, -0.012310084, 0.014673031, 0.046402123, 0.024339024, 0.012618003, -0.029533492, 0.010455874, 0.007256189, -0.008320519, -0.025343109, -0.0060010822, -0.008594969, -0.0066671255, 0.0020366195, -0.0036113597, -0.0051241815, 0.0050204257, 0.00861505, -0.0034908694, -0.01864921, 0.03861042, -0.00644288, -0.0029085, -0.0193186, -0.054675784 ], - "id" : "c5a48b96-3f7c-4cfc-8ae4-1e54c78b0810", - "metadata" : { - "name" : "Zephyr 8.8 GX Eagle AXS Gen 3" - }, - "text" : "price: 1499.99\nname: Zephyr 8.8 GX Eagle AXS Gen 3\nshortDescription: Zephyr 8.8 GX Eagle AXS is a light and nimble full-suspension mountain bike. It's designed to handle technical terrain with ease and has a smooth and efficient ride feel. The sleek and powerful Bosch Performance Line CX motor and removable Powertube battery provide a boost to your pedaling and give you long-lasting riding time. The bike also features high-end components and advanced technology for an ultimate mountain biking experience.\ndescription: ## Overview\nIt's right for you if...\nYou're an avid mountain biker looking for a high-performance e-MTB that can tackle challenging trails. You want a bike with a powerful motor, efficient suspension, and advanced technology to enhance your riding experience. You also need a bike that's reliable and durable for long-lasting use.\n\nThe tech you get\nA lightweight, full carbon frame with 150mm of rear travel and a 160mm RockShox Pike Ultimate fork with Charger 2.1 RCT3 damper, remote lockout, and DebonAir spring. A Bosch Performance Line CX motor and removable Powertube 625Wh battery that can assist up to 20mph when it's on and gives zero drag when it's off, plus an easy-to-use handlebar-mounted Bosch Purion controller. A SRAM GX Eagle AXS wireless electronic drivetrain, a RockShox Reverb Stealth dropper, and DT Swiss HX1501 Spline One wheels.\n\nThe final word\nZephyr 8.8 GX Eagle AXS is a high-performance e-MTB that's designed to handle technical terrain with ease. With a powerful Bosch motor and long-lasting battery, you can conquer challenging climbs and enjoy long rides. The bike also features high-end components and advanced technology for an ultimate mountain biking experience.\n\n## Features\nPowerful motor\n\nThe Bosch Performance Line CX motor provides a boost to your pedaling and can assist up to 20mph. It has four power modes and a walk-assist function for easy navigation on steep climbs. The motor is also reliable and durable for long-lasting use.\n\nEfficient suspension\n\nZephyr 8.8 has a 150mm of rear travel and a 160mm RockShox Pike Ultimate fork with Charger 2.1 RCT3 damper, remote lockout, and DebonAir spring. The suspension is efficient and responsive, allowing you to handle technical terrain with ease.\n\nRemovable battery\n\nThe Powertube 625Wh battery is removable for easy charging and storage. It provides long-lasting riding time and can be replaced with a spare battery for even longer rides. The battery is also durable and weather-resistant for all-season riding.\n\nAdvanced technology\n\nZephyr 8.8 is equipped with advanced technology, including a Bosch Purion controller for easy motor control, a SRAM GX Eagle AXS wireless electronic drivetrain for precise shifting, and a RockShox Reverb Stealth dropper for adjustable saddle height. The bike also has DT Swiss HX1501 Spline One wheels for reliable performance on any terrain.\n\nCarbon frame\n\nThe full carbon frame is lightweight and durable, providing a smooth and efficient ride. It's also designed with a tapered head tube, internal cable routing, and Boost148 spacing for enhanced stiffness and responsiveness.\n\n## Specs\nFrameset\nFrame\tCarbon main frame & stays, tapered head tube, internal routing, Boost148, 150mm travel\nFork\tRockShox Pike Ultimate, Charger 2.1 RCT3 damper, DebonAir spring, remote lockout, tapered steerer, Boost110, 15mm Maxle Stealth, 160mm travel\nShock\tRockShox Deluxe RT3, DebonAir spring, 205mm x 57.5mm\nMax compatible fork travel\t170mm" - }, - "116c3625-bfe1-4c26-90b7-c23f2a54ca4c" : { - "embedding" : [ 0.019335655, -0.0052228495, -0.02440816, 0.0011161471, -0.008399702, 0.0082297465, -0.014773016, -0.03210843, 9.3066733E-4, -0.029153828, -0.005771935, -1.3042825E-4, -0.020982912, -0.013674845, -0.0068897163, 0.0010752926, 0.012903511, -0.014707649, -0.008131696, -0.020878324, -0.0062131644, -0.0037063274, -0.012851217, -0.0025117395, -0.007386508, 0.012459013, 0.02863089, -0.023819854, -0.014315445, -0.0055889064, 0.003791305, 0.007857153, -0.017766839, 0.0033860276, -0.03663185, 0.016041143, 0.022316406, -0.007360361, 0.025807021, 0.016433347, 0.02398981, 1.5698372E-4, -0.0074714855, -0.0063667777, -0.011249717, 0.0072492366, 0.0053470475, -0.011955684, 4.0732016E-4, 0.008085938, -0.027375836, 0.018708128, -0.016119583, -0.011236643, -0.0044580516, -0.01026267, 0.004833914, 0.025323303, 0.048711732, 0.016917065, 0.016577154, 0.005968037, -0.053967267, 0.015792746, -0.020041622, -0.003487347, -0.022015715, 0.01248516, 0.0041540936, 0.015701232, 0.008465069, 0.035559826, 0.024904951, 0.005788277, -0.01376636, -0.035664413, -0.0014299103, 0.007732955, 0.009497873, -0.013315325, 0.021675806, -0.023754487, 0.01120396, 0.0011063421, 0.025114127, 0.0127204815, 0.010550287, -0.007138112, -0.022159524, 0.0067851287, -0.0045364928, 0.0063831196, 3.4787675E-4, 0.021035206, 0.009445579, 0.012910048, -0.010171156, 0.020185431, -0.014812237, -0.015021412, 0.023859074, 0.02214645, -0.003918771, -0.012302131, -0.034278627, 0.0010499627, -0.0061968225, 0.0056183217, 0.006758982, -0.007072745, -0.011570017, 0.030095117, 0.015413616, -0.012347888, 0.01516522, -0.001356372, 0.019139554, 0.00988354, 0.030042823, -0.007190406, 0.013053855, 0.021715026, -0.005559491, -0.026094638, -7.055586E-4, 0.0033108552, 0.011354305, -0.0017502102, 0.007752565, -0.014929898, -0.012785849, 1.0280034E-4, 0.014132416, 0.0049613803, -0.021231309, 0.026905192, -0.017596884, 0.020799885, -0.04293326, -0.024486601, 0.010308428, 0.0055464176, -0.021126721, -0.012413256, -0.026016196, -0.0046083964, -0.031480905, 0.022224892, 0.043351613, 0.003292879, 0.035481386, -0.007236163, 0.019884741, 0.041808944, 0.0041050683, -0.046646126, -4.6369949E-4, 0.005451635, -0.023493018, -0.02052534, -0.0050528944, -0.016472567, 0.003984139, -0.014406959, 0.030801084, 0.022800123, -1.5708586E-4, -0.009229867, -0.006575953, -0.006857033, -0.022983152, 0.004948307, -0.016655596, 9.0125203E-4, 0.005977842, 0.0013171517, 5.523539E-4, -0.012511306, -0.03644882, -0.0014871067, 0.043639228, -0.00478162, 0.023453796, 0.0148514565, -0.0099423705, -0.0049385014, -0.0071577225, -0.024734996, 0.025663212, -0.012890437, 0.0020394607, 0.0021669269, -0.001311432, 0.015962701, -0.61623085, -0.020747589, 0.0012566869, -0.008778832, 0.003086972, 0.009648218, -0.005023479, 2.337648E-5, 0.0061216503, 0.002318906, -0.03613506, 0.0038762826, -0.010393405, -0.0041442886, -0.023937516, -0.030722644, 0.008406239, -0.005252265, 0.02670909, -0.009955444, -0.012687799, -0.01882579, -0.020276945, -0.0072492366, -9.4782625E-4, -0.0051509454, 0.0046083964, -0.014642281, -0.0026326692, 0.020891398, -0.019217994, 0.047587413, -0.0026424741, 0.0038239886, 0.03101026, -0.03595203, -0.010537214, 0.018721202, 0.008621951, 0.047404386, -0.012517843, -0.013596404, 0.0016399028, -0.007857153, 0.0070008407, 0.008105549, 0.033938717, -0.0139886085, -7.468217E-4, -0.03950801, 0.023270769, 0.016302612, 0.011726898, -0.00594189, 0.0023532237, -0.005905938, 0.04421446, 9.6743647E-4, -0.016969359, 0.025074907, 0.013478743, 0.0011627213, -0.026081564, -0.009890077, -0.0037520847, 0.005647737, -0.04549566, -0.028212538, 0.032474488, -9.5599715E-4, 0.026303813, 0.009275624, -0.0014617769, 0.02565014, 0.006618442, 0.004840451, 0.032239165, 0.0068701063, -0.010419552, 0.017073946, 0.01346567, -0.015047559, -0.0073734345, -0.05553608, 0.028474009, -0.0076022204, 0.014969118, -0.012609358, 0.012106029, 0.022787051, 0.01848588, 0.0022715146, -0.003791305, -5.282497E-4, 0.0022943933, 0.02516642, -0.0072492366, 0.020499194, 7.153637E-4, -0.032579076, -0.013491817, -0.0024512748, 0.0030281416, 0.014080122, 0.019048039, 0.010216913, -0.009635144, -0.03908966, 0.01746615, -0.03051347, -0.0058928644, -0.017243901, -0.016250318, 0.007412655, -0.005307827, -0.020904472, 0.002604888, 0.025872389, 0.02568936, -0.009491336, 0.009177573, 0.014197784, 0.014773016, -0.027741894, -0.019309508, 0.014276224, 0.008314724, -0.0046803006, -0.019074187, 0.005327437, 0.029493738, 0.027715746, 0.026696017, -0.010060032, 0.019937035, 0.00960246, 0.020276945, -0.007360361, 0.026852898, -0.028892359, -0.0362135, 0.0016832087, 0.019754006, -0.026290739, -0.016760183, -0.026146932, -0.0011463795, 0.010720242, -0.03346807, -0.01694321, -0.037730023, -0.010942491, -0.0035036888, -0.0013277738, -0.016014995, -0.018198265, -0.030618057, 0.006010526, -0.007634904, -0.00494177, 0.010811756, 0.0049286964, -0.034775417, 0.0056444686, 0.013040782, -0.0021375115, 0.002765038, 0.027872628, -0.02006777, -0.03346807, -0.016668668, 0.014759943, -0.0071511855, 0.02550633, -0.01972786, 0.0039808704, -0.014969118, -0.023623751, 0.020381533, -0.005128067, 0.001337579, 0.029023094, -0.025205642, 0.013034245, 0.025179494, 0.026800605, -0.006255653, 0.025480185, 0.0035984714, 0.0042521446, -0.018498953, 0.011654994, 0.0011496479, 0.016917065, -0.004494004, -4.8330968E-4, 0.023937516, 0.006791665, 0.0094848, 0.034435507, -0.0064419503, -0.012249838, -0.0075303162, -6.5898435E-4, 0.005912475, -0.016668668, 0.00988354, -0.014067049, 0.036762584, 0.011968758, 0.022251038, -0.0498622, -0.01682555, -0.0101580825, -0.015831966, -4.8739513E-4, -6.879911E-4, 0.051744778, -0.014289298, -0.012511306, -0.01826363, 0.029781355, 0.0022257576, -0.012367498, 0.009164499, 9.36387E-4, 0.01942717, 0.028003363, -1.9569344E-4, -0.013792506, 0.007824469, 0.023950588, 0.0323699, -0.016982432, 0.010020811, 0.021375116, 0.01938795, -0.0040102857, 0.04839797, -0.0015614621, 0.03229146, 0.05579755, 0.013831726, -0.009014155, 0.034304775, 0.011400062, 0.00996198, 0.023061594, 0.023323063, 0.025297156, -0.017976016, -0.0061935545, 0.0066021, -0.0010540482, 0.011877243, 0.0025117395, 0.0055170027, 0.029441444, -0.0037095959, -0.0027356227, 0.010131936, 0.012249838, 0.021858834, 0.015662013, 0.008275503, -0.0050823097, -0.020041622, -4.03439E-4, 0.0067655183, -0.03984792, -0.0018221142, -0.0047489363, -0.0071511855, -0.008876883, 0.02546711, 0.009576313, -0.013661771, 0.010497993, 0.013060392, 0.033023573, -0.021113647, -0.03681488, 0.0164072, 0.009399822, -0.0067720553, -0.005415683, 0.010445699, 0.006157602, -0.0041540936, 0.04233188, -0.015387469, 0.020839104, -0.005696763, -0.0017567469, -0.022303332, -0.008000961, 0.03467083, -0.0042227292, 0.0178845, 0.008053254, -0.01826363, -0.013648698, -0.020969838, -0.016211098, 0.02844786, -0.020590708, 0.015178294, -0.011707288, 0.0223687, -0.01516522, -0.004163899, -0.045574103, -0.0062491167, -0.020773737, -0.010367258, 0.024107471, -0.0034971521, -0.02565014, 0.019675566, -0.008857273, 0.003363149, -0.028421715, -0.005409146, -0.016263392, 0.047901176, 0.02180654, 0.0016766719, 0.035559826, -0.025663212, 0.0013008098, -0.0055791014, -0.0077460282, -0.0029023094, 0.040161688, -0.00984432, 0.011236643, -0.009033765, -0.021440484, 0.0069289366, -0.028996946, 0.024525821, -0.024617335, -0.01388402, -0.0067655183, 0.0030395808, -0.015688159, 0.0022780513, 0.018342072, 0.0030608252, -0.0157666, 0.042907115, 0.012883901, 0.007138112, 8.9308113E-4, 0.00856312, -0.002488861, 0.025061833, -0.012877364, -0.021492777, 0.006513854, 0.022198744, 0.00854351, 0.010798682, 0.0077852486, 0.021911127, 0.03799149, 0.0014021292, -0.009981591, -0.0031000455, -0.016616374, 0.004807767, 0.005386268, 0.007386508, -0.0055529545, 0.029702913, 0.012374035, -0.025702434, 0.0031343633, 0.006798202, 0.028840065, -0.007196943, -0.0047783516, -0.022277186, -0.031794667, -0.0052980217, -0.009530556, 0.020342313, -0.0010736583, -0.034696978, 0.007092355, 0.011733435, 0.010942491, -6.144529E-4, 2.1428228E-4, -0.023728339, -0.018172117, -0.022643242, 0.010060032, 0.0035755928, 0.025663212, 0.001596597, -0.019884741, 0.014799163, 0.03312816, -0.008046718, 0.009059912, 0.0016603301, -0.027977217, 0.0050169425, -0.0053829993, 0.02776804, 0.0041704355, 0.014550767, 0.0029595057, 0.01848588, -0.015269808, 0.03485386, -0.0138448, -0.021571219, 0.011158203, 0.010413015, 0.018276704, 0.0013163346, -1.3665856E-4, 0.016289538, -0.025009539, -0.008889956, -0.002666987, 0.032056138, -4.0691163E-4, -0.002024753, -0.017714545, 0.016642522, -0.019597124, -0.019623272, -0.004592055, -0.026003122, 0.0010769267, -0.03942957, 0.016328758, 0.009628607, 0.009471726, -0.0050888467, 0.0058830595, 0.014629208, -0.045861717, 0.039168105, 0.0066870777, -0.013792506, 0.03312816, 0.0042031193, 0.01154387, 0.012733555, 0.009046838, 0.024212059, 0.03014741, -0.012354425, -0.0048862076, -0.020943692, -0.02610771, -0.023793707, 0.014040902, 0.011772656, -0.025807021, 8.1014633E-4, 0.030801084, 1.8261997E-4, 0.00882459, -0.0109947845, -0.013413375, -0.027872628, 0.011570017, 0.01154387, 0.034095597, -0.0034906154, -0.0012959073, -0.025035687, -0.016799403, 0.009393285, -0.034566242, -0.0049025496, -0.032683663, 0.028134098, 0.026225371, 0.015518203, -0.007798322, 0.0044417097, 0.02836942, -0.002158756, -0.007366898, -0.04458052, 0.0020999254, -0.03806993, 0.010929417, 0.034906153, -0.002586912, -0.025950829, -0.03715479, -0.010275744, 0.025702434, -0.0052751433, -0.018851938, -0.030408882, -0.02376756, -0.0049090865, -0.0387759, -0.010798682, -0.004451515, -0.04465896, -0.0039906753, 0.06735449, 0.0061216503, 0.02693134, 0.011916464, -0.0027160125, -0.03093182, 0.03799149, -0.01938795, 0.005507197, 0.01124318, -0.006778592, -0.036605705, -0.028578596, 0.010092716, -0.008791906, 0.010046958, 0.025140274, -0.01802831, -0.0010017543, 0.014276224, 0.004771815, -0.005226118, -0.003585398, -0.0028091609, -0.012870827, -0.034775417, 0.0040887264, -0.035036888, 0.0029823843, 0.01742693, -0.0065007806, 0.024878806, -0.019361803, 0.023401503, 0.02844786, 0.00954363, 0.021937275, 0.01938795, 0.011661531, 0.012079882, -0.02014621, -0.004085458, -0.04131215, 0.0044809305, 0.007020451, 0.013897094, 0.014890677, -0.0029644084, -0.01674711, 0.019061113, -0.016720962, -8.8654435E-4, -0.0073080673, 0.010491456, 0.014053975, 0.03341578, -0.005020211, -0.015008339, 0.006670736, 0.015230588, -0.004150825, 0.0127204815, 0.0013400302, -0.005683689, 0.015910408, 0.0037716948, -0.01818519, 0.020773737, -0.0029758476, -0.020917544, 0.008680781, -0.02006777, -0.008478142, -3.625844E-4, 0.003899161, 0.051901657, -0.024761144, -0.006330826, 0.02716666, 0.0054973923, -0.008608877, -0.00830165, 0.0047424, 0.029127682, -0.00223066, 0.0016341832, -0.010831366, -0.01874735, -0.01358333, -8.8082475E-4, -0.015648939, 0.009347528, -0.022930859, -0.005203239, -0.017766839, -0.0013792507, -0.025454037, -0.011831487, -0.02516642, -0.0070596715, -3.7667924E-4, -0.009857393, 0.008628488, -0.023179254, -0.023963662, -0.0099358335, 0.011086299, 0.027663453, 0.025610918, 0.0035036888, 0.0017779913, 0.028212538, -0.017217753, 0.0025346181, 0.021675806, -0.012001442, 0.006915863, 0.009765878, 0.008092475, -0.021440484, -0.0073211407, -0.008079402, -0.024983393, -0.035769, -2.3961211E-4, -0.017766839, -0.0011161471, 1.4687222E-4, 0.026238445, 0.0070531345, 0.019963183, -0.009419432, -0.01588426, 0.012700872, 0.0026261325, 0.005575833, 0.009027228, -0.027846482, 0.005752325, -0.0072165527, 0.009027228, 0.003506957, -0.023741413, -0.006693614, 0.010511066, 0.015191367, -0.0010507798, -0.0077198814, -0.018904231, 0.01218447, -0.022499435, 0.02010699, -0.013714066, -0.001391507, 0.008458532, -0.010661411, -0.0031621445, 0.014040902, -0.018328998, -0.018564321, 0.015596644, -0.0043273172, -0.015073705, -0.030487321, 0.007366898, 0.027977217, -0.0070792814, -0.024617335, 0.006690346, -0.015204441, -0.06186364, -0.009674365, 0.0034906154, 0.019296436, 0.03678873, 0.016106509, 0.009027228, -0.004343659, 0.027401984, 0.023074666, -0.030644203, 0.0074388017, -0.0017698203, 0.03085338, -0.00148057, -0.0016962822, -0.06092235, -0.018015236, 0.013635624, 0.015413616, 0.01188378, 0.006683809, -0.03495845, -0.0052326545, 0.016093437, -0.020237725, 0.0012950902, 0.033729542, 2.057028E-4, -0.03051347, -0.025859315, -0.02965062, 0.001988801, -0.0019838985, -0.0031229241, -0.0064909756, 0.010720242, 0.0127204815, -0.02010699, -0.006974694, -0.023309989, -0.0034612, 0.036657996, 0.023074666, -0.003408906, 0.04115527, -0.003987407, -0.040841505, -0.010197303, 0.014707649, 0.00428156, -0.014132416, 0.013714066, -0.035742857, 0.0046508852, -0.0043207803, 0.0031817546, -0.0033958326, -0.007778712, -0.0020394607, 0.0032945133, -0.020695295, 0.015204441, 0.015962701, -0.020852178, -0.036082763, 0.018590467, -0.0034938836, 4.6083966E-4, -0.010733315, 0.013805579, -0.035899736, 0.021558145, -0.011230106, -0.0078833, -0.010988248, 0.032866694, -0.0023973468, -0.013269568, 0.018538173, 0.18972214, 0.0032095357, -0.017374637, 0.03388642, 0.023479944, 0.025323303, 0.009046838, -0.009667828, -0.005144409, -0.0023254426, -0.006157602, 0.026957486, -0.0148514565, -0.001810675, 0.007824469, -0.011341231, -0.037207082, -0.0041540936, -0.009948907, -5.0087715E-4, -0.0013604575, 0.0023679314, -7.104611E-4, -0.019636346, 0.012609358, -0.0034285164, -0.033023573, -0.020368459, 0.005530076, 0.015217514, -0.025009539, -9.976688E-4, 0.0063177524, 0.008497752, -0.0223687, -0.016890917, -0.009321381, 0.013531037, -0.018119823, 0.038200665, 0.008478142, 0.00626219, -0.017060872, -0.02214645, -0.009922761, -0.005111725, -0.022211818, 0.0049090865, -0.017897574, -0.0067851287, -0.025584772, 0.005615053, 0.025532478, 0.03093182, 4.1018E-4, -0.029702913, 0.015609718, -0.0019871667, 0.0052751433, -0.018655835, -0.038906634, 0.03979563, 0.004497272, 0.050725047, -0.017100092, 0.032265313, -0.013910167, -0.005105188, 0.014067049, 0.017858354, -0.028003363, -0.006432145, 8.117805E-4, -0.006732835, -0.010654874, -0.032003842, 0.011896853, 0.011341231, 0.013217274, 0.0070596715, 0.008746148, -0.008791906, 0.006183749, 0.018512027, 0.009778952, -0.04021398, 0.0070792814, 0.008628488, 0.029101534, -0.009896614, -0.008981471, 0.017596884, 0.0029039434, -0.010367258, 0.016995504, 0.0031082164, -0.0038632092, 0.013857873, -0.025793947, 0.0024774217, -0.004494004, 0.035324503, -0.006726298, -0.0023336136, -0.027924923, 0.015975775, 0.013478743, 0.019531757, 1.1970392E-4, -0.035193767, 0.019531757, -0.028500155, -0.007092355, -0.015897334, 0.00984432, -0.00922333, 0.0036769123, -0.03467083, 0.0011831486, -0.032526784, 0.018498953, -0.021113647, 0.015910408, -0.016917065, 0.017792987, -0.014237004, -0.009981591, 0.023885222, 8.4487273E-4, -0.026486842, 0.023976736, 0.006026868, -2.8997176E-6, 0.022381773, 0.0041050683, 0.0021080964, 0.00594189, -0.021061353, -0.001124318, 0.0036769123, -0.004239071, 0.021231309, 0.015374395, -0.0012150152, 0.0049385014, -0.03697176, 0.014995265, -0.012655115, -0.018629689, -0.011426209, -0.0038109152, 0.0075237793, 0.016694816, -0.01976708, 0.013622551, 0.023440724, -0.036684144, -0.013374155, 1.308368E-4, 0.007948667, -0.032265313, -0.0016366345, 0.015256735, -0.014197784, -0.022852417, -9.233135E-4, -0.16315685, -0.007386508, 0.010118863, -0.025532478, 0.0070335246, 0.008471605, 0.019335655, -0.0033925644, -0.015047559, -0.010497993, 0.025284082, 0.007915983, -0.03074879, -2.6555476E-4, 0.016158804, 2.737257E-5, -0.029258415, -3.2949218E-4, 0.02248636, -0.003247122, 0.00498099, -0.02663065, 0.0116353845, -0.010707168, 0.008811516, 0.0033566123, 0.01058297, 0.034461655, 0.0013187858, -0.010596043, -0.0057425196, -0.02206801, 0.030565763, -0.013263031, 0.010707168, -0.009537093, -0.02290471, -0.009157962, 0.009576313, 0.048110355, -0.0040560425, -0.011360842, 0.023362283, 0.007366898, 0.025532478, 0.02274783, -0.016315686, 0.0022519045, -0.015335175, -0.030304292, 0.032056138, -0.0230093, 0.01848588, -7.108697E-5, 0.026199225, 0.012060272, -0.0064190715, 0.0016333661, 0.016773256, -0.021283602, -0.017518444, -0.016028069, -0.0031588762, -0.004069116, 0.0110078575, -0.055274613, -0.016237244, 0.028160244, -0.024695776, 0.0022322943, -0.007111965, -0.011112446, 0.0010712071, 0.009622071, 0.023192327, -0.005615053, -0.02534945, -0.011373915, 0.010955564, 0.0072427, -0.009190646, 0.03312816, -0.017178534, 0.027218955, -0.022551728, -0.011766119, -0.008706928, 0.0032454878, -0.003899161, -0.012112566, 0.003523299, -0.039272692, -0.018054456, 0.009118742, 0.0020149478, 0.001658696, -0.006968157, -0.0037324745, -0.011792266, -0.0026735237, -0.0042848284, -0.0032487563, -0.025022613, -9.0778875E-4, 0.030173559, -0.005863449, 0.005085578, 0.027820334, 0.021610439, 0.0027143783, -0.012877364, 0.023061594, 0.018590467, 0.029363004, 0.0065694163, -0.005255533, -0.010844439, -0.030801084, 0.021636585, 8.796502E-6, 0.006389656, -0.008099012, -0.029624473, -0.0015541082, -0.019649418, -0.05433332, -0.075773805, -0.009948907, 0.020473046, 0.007948667, -0.033258896, -0.011118982, 0.008857273, 0.020721443, -0.028134098, 0.012733555, -0.0012615895, -0.038096078, 0.0075629996, 0.016655596, 0.029441444, 0.011988368, 0.011988368, -0.018708128, -0.022943933, 0.029441444, -0.015622791, -0.032213017, 0.019570978, 0.0011455624, -0.0055431495, -0.010105789, -0.016381051, 0.042148855, 0.028317126, 0.014210857, 0.024473527, -0.022800123, 0.010484919, 0.021362042, -0.028735477, -0.017309269, -0.026539136, -0.00830165, 0.020080844, -0.036291942, 0.0026637185, 0.0038435988, 0.017374637, -0.0014135685, -0.015269808, -0.019937035, -0.010909807, 0.023780635, -0.010733315, -0.02602927, -0.0045822496, -0.015073705, 0.0018449929, -0.001970825, -0.003807647, -0.010354185, 0.017374637, -0.0042161928, -0.015348248, -0.012432866, -0.00123054, 3.264281E-4, -2.0335367E-4, 0.011347768, 0.012419792, -0.009785489, 0.008857273, 0.008092475, 0.025519405, -0.0039220396, -0.016864771, 0.016237244, -0.0034317847, 0.02006777, -0.021270528, -0.008177453, -0.026617575, -0.030591909, 0.024852658, 0.03422633, -0.035899736, -0.015740452, 0.015439763, -0.033624955, 0.024342792, 0.014250077, -0.003095143, -0.013171516, 0.0112170335, -0.04361308, 0.023597606, 0.014929898, 0.04175665, -0.01478609, -0.02308774, -0.0030265073, 0.009811636, 0.0099292975, -0.0058111553, -0.019453317, -0.030278146, -0.012753165, -0.086284876, 0.027585013, 0.03014741, -0.02014621, -0.011929537, 0.026774457, 0.0236499, -0.025414817, 0.033964865, 0.010426089, -0.009661291, -0.01310615, 0.008720001, -0.014969118, -0.011249717, 0.013263031, 0.012615894, -0.015152146, 0.014446179, 0.011726898, 0.002062339, 0.0101515455, -0.014014755, 0.024826512, -0.018002162, -0.0024267621, 0.0027519644, 0.0019495805, -0.007772175, 0.013753286, 0.01802831, -0.012262911, -7.8971905E-4, 0.05375809, -0.0025035685, -0.03304972, 0.011066688, 0.009831246, 0.0018776765, 0.0035625193, -0.029179975, -0.026852898, 0.0055431495, -0.021623513, -0.016982432, 0.015753526, 0.01050453, 0.015622791, 0.005696763, 0.016616374, 0.001614573, 0.00856312, 0.00478162, -0.056372784, -0.0025640335, -0.011328158, -0.0027078416, 0.002524813, 0.0046966425, -0.0033059525, 0.037076347, 0.00462147, 0.019584052, -6.728749E-4, 0.011877243, -0.015217514, -0.015531277, -6.504049E-4, 0.0045266873, 0.002452909, -0.02290471, -0.028500155, 7.758285E-4, 0.020224651, 0.002408786, 0.0033533438, 0.012955804, -0.004454783, -0.015112926, -0.008772295, 0.007713345, 0.0012991757, -0.029885942, 0.004520151, 0.012079882, -0.007955204, -0.0053633894, 0.0107921455, -0.009772415, 0.021701952, -0.041364446, 0.0088703465, -0.02142741, -0.0013522865, 0.01118435, 0.005209776, 0.002157122, -0.024617335, 0.00986393, 0.017976016, -0.005203239, 0.018119823, 0.0019920694, -0.008948787, -0.010896734, 0.012347888, -0.03757314, -0.026774457, -0.0030232389, 0.003569056, -0.018080603, -0.008818053, 0.009406358, 0.020812957, -0.02531023, 0.01912648, -0.0073538246, -0.032866694, -0.028866211, 0.004477662, 0.0110078575, 0.003229146, 0.0010450601, 0.0031245584, 0.020682223, 0.0011496479, 0.023100814, -0.019832447, 0.02474807, -0.0025297157, 0.0122759845, 0.009877003, 0.0025215447, -0.018655835, -0.013001561, -0.010321501, -0.003523299, 0.0019577516, 0.017557664, 0.09773723, 0.020276945, -0.0030706301, 0.010354185, 8.285309E-4, 0.013328398, 0.013740213, -0.002712744, -0.0032144384, -0.022499435, 0.012877364, -0.01598885, -0.03312816, 0.012798923, -0.041181415, 0.038226813, 0.02248636, 0.019780153, -2.7127442E-4, -0.039141957, 0.029284563, 0.0033141235, 0.010733315, 0.00478162, -0.015217514, 0.006611905, 0.03731167, 0.02232948, 0.010726779, -0.043247025, -0.0064615603, -0.0041377516, -0.011720362, -0.020852178, 0.006798202, -0.00922333, -0.006553075, -0.023741413, 0.036997907, 8.775564E-4, 0.0044384417, 0.02538867, -2.729086E-4, -0.024107471, 0.017322341, 0.008831126, -0.0127074085, -0.017008578, -0.043430053 ], - "id" : "116c3625-bfe1-4c26-90b7-c23f2a54ca4c", - "metadata" : { - "name" : "AURORA 11S E-MTB" - }, - "text" : "price: 1999.99\nname: AURORA 11S E-MTB\nshortDescription: The AURORA 11S is a powerful and stylish electric mountain bike designed to take you on thrilling off-road adventures. With its sturdy frame and premium components, this bike is built to handle any terrain. It features a high-performance motor, long-lasting battery, and advanced suspension system that guarantee a smooth and comfortable ride.\ndescription: ## Overview\nIt's right for you if...\nYou want a top-of-the-line e-MTB that is both powerful and stylish. You also want a bike that can handle any terrain, from steep climbs to rocky descents. With its advanced features and premium components, the AURORA 11S is designed for serious off-road riders who demand the best.\n\nThe tech you get\nA sturdy aluminum frame with advanced suspension system that provides 120mm of travel. A 750W brushless motor that delivers up to 28mph, and a 48V/14Ah lithium-ion battery that provides up to 60 miles of range on a single charge. An advanced 11-speed Shimano drivetrain with hydraulic disc brakes for precise shifting and reliable stopping power. \n\nThe final word\nThe AURORA 11S is a top-of-the-line e-MTB that delivers exceptional performance and style. Whether you're tackling steep climbs or hitting rocky descents, this bike is built to handle any terrain with ease. With its advanced features and premium components, the AURORA 11S is the perfect choice for serious off-road riders who demand the best.\n\n## Features\nPowerful and efficient\n\nThe AURORA 11S is equipped with a high-performance 750W brushless motor that delivers up to 28mph. The motor is powered by a long-lasting 48V/14Ah lithium-ion battery that provides up to 60 miles of range on a single charge.\n\nAdvanced suspension system\n\nThe bike's advanced suspension system provides 120mm of travel, ensuring a smooth and comfortable ride on any terrain. The front suspension is a Suntour XCR32 Air fork, while the rear suspension is a KS-281 hydraulic shock absorber.\n\nPremium components\n\nThe AURORA 11S features an advanced 11-speed Shimano drivetrain with hydraulic disc brakes. The bike is also equipped with a Tektro HD-E725 hydraulic disc brake system that provides reliable stopping power.\n\nSleek and stylish design\n\nWith its sleek and stylish design, the AURORA 11S is sure to turn heads on the trail. The bike's sturdy aluminum frame is available in a range of colors, including black, blue, and red.\n\n## Specs\nFrameset\nFrame Material: Aluminum\nFrame Size: S, M, L\nFork: Suntour XCR32 Air, 120mm Travel\nShock Absorber: KS-281 Hydraulic Shock Absorber\n\nWheels\nWheel Size: 27.5 inches\nTires: Kenda K1151 Nevegal, 27.5x2.35\nRims: Alloy Double Wall\nSpokes: 32H, Stainless Steel\n\nDrivetrain\nShifters: Shimano SL-M7000\nRear Derailleur: Shimano RD-M8000\nCrankset: Prowheel 42T, Alloy Crank Arm\nCassette: Shimano CS-M7000, 11-42T\nChain: KMC X11EPT\n\nBrakes\nBrake System: Tektro HD-E725 Hydraulic Disc Brake\nBrake Rotors: 180mm Front, 160mm Rear\n\nE-bike system\nMotor: 750W Brushless\nBattery: 48V/14Ah Lithium-Ion\nCharger: 48V/3A Smart Charger\nController: Intelligent Sinusoidal Wave\n\nWeight\nWeight: 59." - }, - "9850fec4-1576-4bd7-a0cb-4e1886c2f017" : { - "embedding" : [ 0.0035441427, -0.006023134, -0.028158847, -8.452685E-4, 0.014558221, 0.00536739, -0.019401709, -0.028811121, -8.387631E-4, -0.02575792, 0.0045346986, 0.0075497353, -0.0138434945, 0.013461844, 0.003688129, 0.017597545, 0.0160987, -0.021580584, -1.4593784E-4, -0.047352385, 0.0077926037, -0.0021632628, -0.0043889773, -0.012691604, -0.021455681, 6.401315E-4, 0.046519693, -0.01648729, 0.01909639, -0.011990756, 0.0037852763, 0.026687758, -0.013670017, 0.0051765647, -0.011581349, 0.005436781, 0.024744812, -0.004246726, 0.04177335, 0.016528923, 0.031142658, -3.3155864E-4, -0.013746346, -0.014738637, -0.012809569, 0.02277411, 0.017306102, -3.7753012E-4, 0.011706253, -0.0040663094, -0.002076524, 0.023856608, -0.016390141, 0.022135712, 0.0045034727, -0.019901324, 0.011470323, 0.02674327, 0.035056308, 0.016764853, -0.005412494, 0.001993255, -0.035306115, -0.015654597, -0.041801106, -0.02775638, 0.0018631469, 0.027686989, -6.6268357E-4, 0.015835015, 0.023579044, 0.028533557, 0.022427155, 0.0049024704, 0.014960689, -0.025036255, -0.0021025457, 0.0062972284, 0.012899777, 0.0016610458, 0.033196628, 0.0058288397, -0.0034227085, 0.00383385, 0.022871256, 0.011338481, 0.004708176, -0.010214347, -0.0034452605, -8.712901E-4, 0.0012525066, 0.029227467, 0.006737861, 0.03153125, -0.0068523563, -0.013663078, -0.014294535, 0.011886669, -0.008222828, -0.008625295, -0.0017694691, 0.014932932, 0.0040350836, -0.023329237, -0.030087914, -0.027936796, -0.019401709, -0.010818048, 0.012351588, -0.013899007, -0.023495775, 0.024564395, 0.007605248, 2.2248473E-4, 0.0015890527, -0.018180428, 0.03344644, 0.030476505, 0.017583666, -0.028172726, 0.012129538, 0.020345425, 0.0027010427, -0.020206643, 0.004531229, -0.004031614, 0.0030237106, -0.002000194, 0.008653051, -0.018249819, -0.0065990794, 0.01602931, 0.014599855, 0.0043820385, -0.044410206, 0.0079868985, -0.013427149, 0.013170402, -0.039608352, -0.028783366, -0.0026229778, 0.018943729, -0.014016972, -0.01134542, -0.006002317, -0.0028849286, -0.0072027803, 0.026104875, 0.013815737, -0.0077232127, 0.028727852, -0.010325373, 0.005773327, 0.022441033, 0.009312266, -0.027881283, -0.010852744, 0.008299157, -0.01647341, -0.01801389, -0.014502708, 0.010082505, 0.019484978, 0.003962223, 0.024064781, 0.007875873, -0.0031104493, -0.030309966, -0.006415193, -0.0065713227, -0.031392466, 0.027187373, -0.016973026, 0.023121065, 0.0028484985, 0.02321821, 0.033085603, -0.020137252, -0.023967633, 0.0042120307, 0.031836566, 0.008111802, 0.030004647, 0.018527383, -0.01287896, 0.004836549, 0.0058982307, -0.037776433, 0.017528154, -0.02321821, 0.021691611, 0.016515046, 0.006855826, 2.0741388E-4, -0.59420854, -0.034223616, -0.019845812, 0.0011562266, 0.0063874368, 0.013905946, -0.0014285862, 0.022191225, 0.0019117206, -0.004232848, -0.015460303, 0.025494235, -0.01594604, -0.021191996, -0.03694374, -0.024203563, 0.008597539, -0.0087293815, -0.013732469, -0.012420979, -0.02752045, -0.0064498885, -0.00911797, 0.013829616, 0.024439491, -0.0026646124, 0.023565166, -0.00804935, 0.0039240583, 0.03225291, -0.015835015, 0.046325397, -0.001901312, -0.013080194, 0.03241945, -0.019207414, 0.019318439, 0.015515816, 0.022441033, 0.026437951, -0.024120294, 0.004392447, -0.008902859, -0.0055235196, -0.015737867, 0.020511964, 0.038137265, -0.002138976, 0.0113801155, -0.030781824, 0.012899777, 0.0067725563, 0.0059815, 0.0071195113, -0.0045902114, -0.04293912, 0.04643642, -0.008750198, -0.0136353215, 0.02452276, 0.01955437, 0.02338475, 0.01648729, -0.015973797, -0.0086599905, 0.009513499, -0.040357776, -0.0143084135, 0.016570559, -0.0020348895, 0.008833468, 0.030448748, 0.0013531235, 0.019887445, 0.02430071, 0.0129136555, 0.045964565, 0.007910568, 0.010006174, 0.019818055, 0.03580573, 0.014252901, 0.0054992326, -0.026354682, 0.029754838, -0.0013357757, -0.016528923, -0.015751746, 0.025272183, 0.006692757, 0.024758691, -0.0011527571, -7.056192E-4, -0.03716579, -0.007181963, 0.04804629, -0.0015430812, 0.024286833, 0.010262921, -0.033141118, -0.021941418, 0.0016454329, 0.013170402, 0.013593687, 0.027909039, 0.015432547, -0.010630693, -0.02130302, 0.019290684, -0.026562855, 0.021525072, -0.03205862, -0.01701466, -0.0026437952, -0.015918283, -0.031614516, 0.021316899, 0.0040454925, 0.010783353, -0.022954525, -6.7049003E-4, -0.020178888, 0.018249819, -0.011775644, -0.015418668, 0.011435628, 0.004586742, -9.1249094E-4, -0.028811121, -0.01173401, 0.030365478, 0.03602778, 0.042883605, -0.010936013, 0.046519693, 0.015696233, -9.185627E-4, 0.004305708, 0.008229766, -0.037831943, -0.02384273, 0.0051765647, 0.0063527413, -0.043882836, 2.083897E-4, -0.016695462, -0.0030237106, 0.02285738, -0.026646124, -0.010547424, -0.018541262, -0.021136483, -0.016001552, -0.00659214, -0.008618356, -0.021872027, -6.3752936E-4, -0.028838878, -0.022787988, -0.018416358, 0.01938783, -0.0099853575, -0.0041738655, -0.0015248661, 0.014474952, 0.0071195113, 0.010609876, 0.00958289, -0.011595228, -0.047935266, -0.007598309, -0.0062382463, -0.0032162704, 0.010415581, -0.012636092, 0.015321521, -0.023676192, -8.986128E-4, 0.004728993, -0.024342345, 0.0046630716, 0.021025456, -0.03580573, 0.016959148, 0.027326155, 0.023440262, 0.013302245, 0.029921377, -0.002246532, 0.0151688615, 0.0069946074, -0.014808028, -0.017569788, -0.0028120682, -0.009770245, -0.009353899, 0.019221293, -0.0049336962, 0.011886669, 0.017431006, 0.0369715, 0.004354282, 0.008111802, 0.004947575, 0.0074248314, -0.0012611805, -0.0015213966, 0.0050690086, 0.025660772, 0.022413276, 0.020498086, -0.018291455, -0.011074795, -0.010290678, -0.010082505, -0.0030427931, -0.0018267167, 0.03971938, -0.009312266, -0.014322292, -0.013274488, 0.0034903646, 0.033057846, -0.010089444, -0.0134479655, 0.016959148, 0.015515816, 0.0395806, -0.013621443, -0.030781824, -0.00942329, 0.032558233, 0.02997689, -0.019901324, 0.0010842335, 0.020525843, 0.016126456, -0.012476493, 0.03280804, -0.020359304, 0.04171784, 0.045270655, 0.008035472, -0.022746352, 0.018277576, 0.041107196, 0.028478045, 0.014350048, -8.5350865E-4, 0.022760231, 0.0033706652, -0.0045624548, -0.0072929887, 0.0056380145, -0.0049649226, -0.011560532, 0.0092636915, 0.0028068637, -0.003771398, 4.308744E-4, 0.013503479, 0.031031633, 0.015585207, 0.020373182, -0.0072721713, -0.010672328, -0.032308426, -0.0023159229, -0.016070943, -0.019873567, 0.010096383, -0.01955437, 0.01716732, 0.0036742508, 0.0106584495, -0.0063111065, -0.009471864, -0.010151896, 0.014252901, 0.04138476, 0.0014806293, -0.025202792, 0.0038199716, 0.026007727, -0.013003863, -0.0072791106, 0.022246737, -0.0067656175, 0.007750969, 0.036888227, 0.011963, 0.022829622, -0.009187361, 0.017722448, -0.03955284, 0.0077717863, 0.036888227, -0.0029577892, 0.0068419473, 0.017819595, -0.02040094, 0.010110261, 0.007681578, -0.028949903, 0.02491135, -0.016806487, 0.024272954, -0.037360087, 0.020581355, -0.0066407137, -0.0045659244, -0.033224385, -0.01625136, -0.027020834, -0.0026351213, 0.011685436, 0.013059377, -0.0036013902, 0.01725059, -0.04715809, 0.005572093, -0.01602931, -0.0074525876, -0.025119523, 0.04851815, 0.0157795, -0.0077856644, 0.028380897, -0.024009269, -0.011227455, -0.029643813, -0.014502708, 0.014419439, 0.01195606, 0.0025345043, -0.0022760232, -0.010720901, -0.0055408673, -0.018707799, -0.019290684, 0.015751746, -0.029616056, 0.007820359, 0.008653051, -0.013045498, -0.012677726, 0.009915967, -3.161625E-4, 0.020567477, 3.7059103E-4, 0.00897225, 0.018263698, -0.0010642837, -0.016334629, -0.0067552086, -0.010977648, 0.01264997, 0.0077926037, -0.022482667, 0.005932926, -0.008965311, 0.0018197777, 0.019665394, 0.011137247, 0.0051071737, 0.011463385, -0.009700854, 0.013503479, 0.0021285673, -8.045013E-4, 0.017833473, 0.012615275, 0.027839648, -0.0121225985, 0.03153125, 0.0013557257, -0.03472323, -0.007639943, 4.13093E-4, 0.019040877, -0.0043577515, -0.029116442, -0.013565931, -0.031281438, -0.0027912508, -0.029255224, 0.018888216, -0.030420993, 0.004812262, 0.0028623766, 0.01708405, 0.008743259, -0.0048990007, -0.0123099545, -0.04293912, -0.007945264, -0.023523532, 0.009631463, -2.9328517E-5, 0.0032995397, 0.0087987725, -0.040218994, 3.2337266E-5, 0.015224374, -0.026424073, 0.005856596, -0.0041044746, -0.025341574, -0.00628682, 4.545107E-4, 0.01708405, 0.0048018536, 0.04260604, -0.0021025457, 0.019207414, -0.002244797, 0.024481127, -0.011643801, 9.905557E-4, -0.0031382057, 0.013434088, 0.015432547, 0.019498857, -0.021219753, 0.0054402505, -0.009652281, 0.016223604, 0.02138629, 0.015696233, -0.0011354093, 7.795639E-5, -0.0036499638, 0.016889757, -0.022510424, -0.014204327, -0.019457221, -0.013135706, 0.007181963, -0.039830405, -3.2527006E-4, 0.01249731, 0.025161158, 0.0068488866, -0.0073485016, 0.0136353215, -0.04124598, 0.01938783, -0.002704512, -0.012677726, 0.037526626, 0.011130308, -0.0016237482, 0.0075844307, 0.016820366, 0.06139711, 0.030920606, -0.01142869, -0.007827299, -0.017389372, -0.031003876, -0.011713192, -0.00981188, 0.010006174, -0.009131849, -0.03241945, 0.01586277, 0.028533557, 0.025050132, 0.0051488085, -0.027173495, -0.02108097, 0.0115188975, -0.008632234, 0.038109507, -0.018444113, -0.012858143, -0.020761771, -0.0151688615, -0.027340034, -0.031170415, -0.010075565, -0.01663995, 0.009596768, 0.027201252, 0.0077232127, 0.01448883, 0.003847728, 0.01823594, 0.003944875, 0.001641096, -0.023412505, -0.0054541286, -0.029255224, 0.028144969, 0.053514298, 0.0038963018, -0.013017742, -0.0063874368, 0.004156518, 0.022552058, -0.0034383214, -0.013871251, -0.024342345, -0.022496546, -0.0050690086, -0.024550518, -0.01234465, -0.029310737, -0.035472654, -0.009693915, 0.035500407, 6.2712067E-4, 0.018069403, 0.028811121, 0.0052945293, 0.0035979208, 0.028006187, 0.0038650758, 0.017847352, 0.009097153, -0.011477263, -0.031059388, -0.020067861, 0.029949132, -0.019179659, 0.007910568, 0.015807258, -0.018291455, -0.018194307, 0.013420209, -0.0014832316, 0.0085905995, 0.0068627647, -3.1312666E-4, -0.01985969, -0.0363331, -0.014766394, -0.029005416, -0.011282968, 0.029921377, -0.016084822, 0.014849663, -0.036000025, -0.004947575, 0.029171955, 0.024966864, 0.020539721, -7.9712854E-4, 0.01172707, 0.015918283, -0.0087987725, -0.023093307, -0.04246726, -0.0141696315, 0.0026177736, 0.013295306, 0.020012349, -0.00988821, -0.0038893626, 0.014932932, -0.00789669, -0.016112579, -0.026562855, 0.009909027, 0.011935243, 0.032391693, -0.016986905, -4.6925628E-4, -0.01777796, 0.024189685, -0.006345802, 0.012393223, 0.022649206, -0.016168091, 1.7087521E-4, 0.028700097, -0.02743718, 0.008993067, -0.002076524, -0.054097183, 0.00521473, 0.0016697197, -0.021191996, 0.012011573, 0.008653051, 0.037471112, -1.0278534E-4, 0.009513499, 0.033918295, -5.8288395E-4, -0.0017391107, 0.0061202818, 0.00881265, 0.03272477, -0.020428695, 0.002661143, -0.0043438734, -0.01916578, -0.016917514, 0.0036395553, -0.010880501, -0.027256764, 0.006248655, -5.2953965E-4, -0.011234394, -2.8558713E-4, -0.010630693, 0.0025119523, -0.009083275, -0.01725059, -0.023717826, 0.003944875, 0.013781042, -0.026632246, -0.028727852, -0.01884658, 0.014905175, 0.021899784, 0.012587518, -0.019304562, -0.0053569814, 0.030920606, -0.040357776, -0.010144956, 0.016043188, 0.0028415592, -0.020137252, 0.023176577, -0.0022187755, -0.01525213, 0.013156524, 0.0010816314, -0.015890528, -0.0073623797, 0.0051765647, -0.020900553, 0.0061653857, -0.01387819, 0.0072097196, 0.0042432565, 0.016168091, -0.02919971, -0.010929074, -0.011393994, -0.0036673115, -0.018416358, -0.013073254, -0.03902547, 0.018041646, -0.0025934866, -0.005353512, 0.0026958382, -0.01187973, -0.038137265, -0.003374135, 0.011171943, -0.011171943, -0.016667705, -0.029394006, -0.013288367, -0.015765624, -0.0067343917, -0.012781813, -0.01448883, 0.0040975353, 0.003802624, -0.027506571, 0.021108726, -0.014752516, -0.027104104, -0.0024512352, -0.009624524, -0.031559, -0.033557463, -0.008673868, 0.0348065, 0.016889757, -0.015279886, 0.004767158, -0.0045798025, -0.057455704, -0.018735556, 0.0065262187, 0.017847352, 0.007813421, 0.007376258, 0.016737096, -0.0031989226, 0.024272954, 0.037082523, -0.0049024704, -0.015488059, -0.01648729, 0.024397857, 0.008431001, 0.009166544, -0.05065539, -0.03136471, 0.024161927, 0.007105633, 0.014280657, -0.005818431, 0.0029387067, 0.013302245, 0.010568242, -0.015654597, 0.018943729, 0.019262927, 0.013330001, -0.047852, -0.023273723, -0.027464937, -0.0059606824, 0.0013166933, 0.0046873586, -0.030032402, -0.017292224, 0.0030098325, -0.009860454, -0.0035666947, -0.005932926, -0.007022364, 0.018985363, 0.01165074, -0.024578273, 0.049156547, 0.0064290715, -0.009395534, 0.016459532, 0.0311149, 0.01525213, -7.927916E-4, 0.0017547236, -0.02047033, 0.0016844652, 0.0069078687, 0.020331549, 0.016542802, -0.0075150398, 0.0029022763, -0.019151902, -0.016653828, 0.028394775, 0.015626842, -0.01892985, -0.011664619, -0.011081735, -0.0021129544, -0.011359299, 0.002668082, 0.0014181775, -0.033751756, 0.0036464944, -0.016875878, -0.029699326, -0.010110261, 0.02491135, 0.005801083, -0.007528918, 0.006578262, 0.19596003, 0.024411736, 0.0043126475, 0.034057077, 0.028117212, -0.010290678, 0.014502708, 1.4637153E-4, 0.0033619914, -0.014502708, 0.01831921, 0.013697773, -0.005311877, -0.0018423296, 0.0243701, -0.02506401, -0.05190443, -0.035222847, 0.0020452982, -0.011560532, -0.016515046, -0.02314882, -0.028700097, -0.03297458, -0.0013843494, 0.012226685, -0.026007727, -0.02453664, 0.026118753, 0.002007133, 0.013392453, -0.02262145, -0.0037575199, 0.028866634, -0.01816655, -0.006245185, 0.014502708, -0.01716732, -0.015821137, 0.04285585, -0.005700466, 0.002928298, 0.015848892, -0.018388601, -0.019068632, 0.01847187, -0.022593692, 0.010075565, -0.023107186, -0.018291455, -0.025244426, 0.0060370127, -0.0077301515, 0.036666177, -0.01733386, -0.007327684, 0.004316117, -0.0049718614, 0.0058288397, -0.012622213, -0.029255224, 0.019304562, -9.645342E-4, 0.0246893, 0.0048296098, 0.008313036, -0.029060928, -0.029865865, 0.024037024, 0.0031867793, -0.009228996, -0.0035909815, 0.0074525876, -0.0017573257, -0.015848892, -0.02314882, -0.0017989604, 0.0069946074, -0.007903629, 0.013961459, -0.0021424454, -0.0074317707, 0.012712422, -0.009284508, 0.0038095631, -0.012566701, 0.008139558, 0.0023506184, 0.008743259, 0.015515816, -0.012282197, -0.0099853575, -0.029255224, -9.211648E-4, 0.005433311, -1.1991623E-4, -0.03680496, 0.011782583, -0.0051071737, 0.0053639202, -0.024619909, 0.039802648, -0.003903241, -0.0025969562, -0.018360846, 0.003204127, 1.4702207E-4, 0.0179445, 0.017028539, -0.042661555, -0.018152673, -0.03341868, -4.7966492E-4, -0.0042883605, 0.017583666, -0.0026437952, -0.0033567871, -0.030254453, 0.008632234, -0.018346967, 0.010838866, 0.0042293784, 0.009534316, -2.9686315E-4, 0.018457992, -0.0053153466, -0.029699326, 0.024314588, -0.018818825, -0.014683125, 0.027159616, 0.019207414, 0.004545107, -0.004184274, -0.016750975, -0.0019255988, 2.3853139E-4, -0.006453358, -0.013045498, -0.01786123, -4.905073E-4, 0.012788752, 0.02214959, 0.00881265, 0.025855068, -0.01847187, 0.007334623, -0.0150300795, -0.02414805, -0.010242104, -0.010595998, -0.011442567, 0.006845417, -0.01701466, 0.019596003, 0.022954525, -0.02047033, -0.026021605, -0.032558233, 0.008680807, -0.031947594, 3.53677E-4, -2.2313527E-4, 0.013350818, -0.026812661, -0.01855514, -0.1766416, 0.021830393, 0.021594463, -0.02821436, 0.01349654, 0.0021597932, 0.025313817, 0.0043889773, -0.03050426, 0.006241716, 0.0051383995, -0.020706259, -0.033057846, -0.0072860494, 0.011789522, -7.229669E-4, -0.020539721, 0.009159605, 0.017722448, -0.0024963394, -0.0018353906, -0.014204327, 0.005030844, -0.0028346202, -0.023343114, -0.0013427149, -0.013739408, 0.02031767, 0.015432547, 0.0027340034, -0.0017486518, -0.030198941, 0.024023145, -0.008542025, 0.013024681, -0.003854667, -0.016043188, 0.012941412, 0.0014615469, 0.03877566, 0.027312277, 0.01380186, 0.026812661, 0.0078689335, 0.022704719, 0.017722448, 2.1261821E-4, 0.009555134, -0.0017850822, -0.009541255, 0.05434699, -0.025202792, 0.02989362, -0.009603707, 0.035278358, 0.0036395553, -0.02162222, 0.011997695, 0.028838878, -0.028158847, -0.049711674, -0.0072791106, -0.004614498, -0.01855514, -0.016126456, -0.04499309, -0.016168091, 0.027798014, -0.01892985, 0.0020990763, -0.0016020635, -0.028727852, -0.007258293, 0.010026992, 0.016112579, 0.01418351, -0.034306884, -0.013357758, 0.03999694, -0.014065545, -0.0011727071, 0.041107196, 0.004798384, 0.0027079817, -0.018249819, 0.017125687, 0.001793756, -8.4743695E-4, -0.002468583, 0.0033671958, -0.034223616, 0.0014311883, -0.0015196617, 0.0060161953, 0.0024651135, 0.013330001, 5.690058E-4, -0.008271401, 0.0061827335, -0.0066962265, 0.028478045, -0.02138629, -0.03941406, 0.023551287, 0.03555592, 0.010144956, 0.014599855, 0.024744812, 0.016737096, -0.0016723218, -0.031281438, 0.02062299, 0.027617598, 0.028949903, -0.0055373977, 0.024800325, -0.014932932, -0.0150994705, 0.025410965, -0.006397845, 0.017514275, -0.0060751773, -0.017458763, 0.018097159, -0.017486518, -0.038470343, -0.05590135, -0.0024217442, 0.03558368, 0.015821137, -0.015432547, 0.0068350085, -0.011539714, 0.024800325, 0.008777955, 0.014613734, -0.0023575574, -0.029060928, -0.0034626082, 0.017805718, 0.013239793, -6.605151E-4, 0.0150300795, -0.010679267, -0.035861243, 0.021747123, -0.030920606, -0.017902864, -0.017306102, -0.001414708, -0.028172726, -0.012858143, -0.024855837, 0.03203086, 0.010262921, 0.002975137, 0.003695068, -0.013739408, 0.005575563, 0.010894379, -0.013239793, -0.01663995, -0.011477263, -0.0069564427, 0.021094847, -0.031919837, 0.0024321526, -0.003802624, 0.008993067, -0.019151902, -0.016348507, -0.011609105, -0.017958377, 0.02214959, -0.003394952, -0.0034556692, -0.004874714, -0.008757138, 0.008465696, -0.025105646, 0.013475722, -0.016459532, 0.013711652, -0.005474946, -0.017056296, 0.019596003, -0.0110401, 0.030198941, -0.0020418286, 0.021261387, 0.010165774, -0.017680814, 0.016334629, 0.0040524313, 0.026562855, -0.011838096, -0.012830386, 0.019360075, -0.008576721, 0.016903635, -0.01410718, 0.008777955, -0.025161158, -0.0059225173, 0.0065886704, 0.015071714, -0.031253684, -0.011477263, -0.005284121, -0.039053224, 0.010332312, 0.045464948, 0.015377034, -0.0012082699, 0.02069238, -0.054929875, 0.016681584, 0.008250584, 0.05320898, 4.2675433E-4, 0.0034764865, -0.0029404415, -0.015154983, 4.154783E-4, -0.008222828, 3.7037418E-4, -0.03577797, -0.0075636134, -0.08160376, 0.021955296, 0.021344656, -0.025868945, -0.007112572, 0.013454905, 0.030420993, -0.021594463, 0.004500003, 0.010568242, -0.0069807293, -0.009020823, -0.011206638, -0.0021996931, -0.016445655, 0.011151126, 0.013066315, -0.007039712, 0.012337711, 0.009208179, 0.0014788946, 0.016834244, -0.009312266, 0.015307643, -0.027131861, 0.016945269, -0.027173495, 0.03228067, 0.009353899, 1.3661342E-4, 0.03089285, -0.027728623, 0.011178882, 0.048629176, 0.0045034727, -0.014697003, -0.020345425, -0.008597539, 0.0069182776, -0.04429918, -0.024758691, -0.019373953, -0.030032402, -0.017750204, -0.016806487, 0.0031937184, 0.018749435, 0.003702007, 0.008555904, 0.041273735, 0.013760225, 0.00942329, -0.019054754, -0.03733233, -0.0077856644, -0.027076349, -0.0017451823, 0.0051939124, 0.01042252, -0.007258293, 0.062673904, 0.0078689335, 0.019346196, -0.023745582, 0.0012525066, -0.044410206, -0.02767311, 0.021094847, 0.016348507, -0.0069356253, -0.004739402, -0.0037956848, 0.015765624, 0.016903635, -0.012532005, 0.013954519, 0.0050655394, -0.0027686988, -0.013038559, 0.01142175, 0.011858913, -0.0044410205, -0.0060057864, 0.0018596774, 0.017264469, -0.014044728, -0.009208179, 0.02552199, -0.002576139, 0.018333089, -0.030365478, 0.015474182, -0.015807258, -3.8186705E-4, 0.030837337, -0.016834244, -0.013316123, -0.014433317, 0.024730934, 0.03819278, -0.0015422138, 0.011636862, -0.0114495065, 0.0031885142, -0.0034400562, 0.010852744, -0.01985969, -0.020525843, -0.003903241, -0.0056796493, -0.0033168874, -0.0014381274, -0.0048192013, 0.0069564427, -0.02567465, 0.015890528, -0.018763313, -0.010998465, -0.037998483, 0.018305331, 0.014974566, 0.02407866, 0.012643031, -0.007320745, 0.018915972, -0.017833473, 0.0096592195, -0.0055165803, 0.029033173, -0.01126909, 0.009999235, -0.00490594, -0.006200081, 6.53576E-4, -0.005717814, -0.013066315, -0.0016940065, -0.004708176, 0.009791063, 0.09142952, 0.008555904, 0.003663842, 0.008326914, -0.0039518145, 0.0048955316, 0.021178117, 0.0074178926, -0.02155283, -0.045104116, 0.008382427, 0.0050932956, -0.004392447, 0.0011796461, -0.030393235, 0.03577797, 0.0054541286, 0.0067829653, -0.0065331575, -0.0077232127, 0.01433617, -0.013753286, -9.1335835E-4, -0.008694686, 0.005526989, -0.002584813, 0.025410965, 0.02346802, 0.007848117, -0.07488671, 0.003802624, 0.007959141, -0.014502708, -0.019845812, -0.010790292, -0.019887445, -0.016681584, 0.020553598, 0.009742489, 0.016195847, 0.009638403, 0.016528923, -0.021219753, -0.030226696, 0.011581349, -0.011553593, -0.016445655, -0.025896702, -0.043882836 ], - "id" : "9850fec4-1576-4bd7-a0cb-4e1886c2f017", - "metadata" : { - "name" : "Velocity V8" - }, - "text" : "price: 1899.99\nname: Velocity V8\nshortDescription: Velocity V8 is a high-performance road bike that is designed to deliver speed, agility, and control on the road. With its lightweight aluminum frame, carbon fiber fork, Shimano Tiagra groupset, and hydraulic disc brakes, this bike is perfect for experienced riders who are looking for a fast and responsive bike that can handle various road conditions.\ndescription: ## Overview\n\nIt's right for you if... \nYou are an experienced rider who is looking for a high-performance road bike that is lightweight, agile, and responsive. You want a bike that can handle long-distance rides, steep climbs, and fast descents with ease. You also appreciate the latest technology and reliable components that make your riding experience more enjoyable.\n\nThe tech you get \nVelocity V8 features a lightweight aluminum frame with a carbon fiber fork that ensures a comfortable ride without sacrificing stiffness and power transfer. It comes with a Shimano Tiagra groupset with 10-speed gearing for precise and efficient shifting. Hydraulic disc brakes offer superior stopping power in all weather conditions, while 28mm wide tires provide comfort and stability on various road surfaces. Internal cable routing enhances the bike's sleek appearance.\n\nThe final word \nIf you are looking for a high-performance road bike that is lightweight, fast, and responsive, Velocity V8 is the perfect choice. With its lightweight aluminum frame, reliable components, and advanced technology, this bike is designed to help you enjoy fast and comfortable rides on the road.\n\n## Features \n\nLightweight and responsive \nVelocity V8 comes with a lightweight aluminum frame that is not only lightweight but also responsive, providing excellent handling and control.\n\nHydraulic disc brakes \nThis bike is equipped with hydraulic disc brakes that provide superior stopping power in all weather conditions, ensuring your safety and confidence on the road.\n\nComfortable rides \nThe 28mm wide tires and carbon fork provide ample cushioning, ensuring a smooth and comfortable ride over long distances.\n\nSleek appearance \nThe bike's internal cable routing enhances its sleek appearance while also protecting the cables from the elements, ensuring smooth shifting for longer periods.\n\n## Specifications \n\nFrameset \nFrame\tVelocity V8 Aluminum Frame, Internal Cable Routing, Tapered Headtube, Press Fit Bottom Bracket, 12x142mm Thru-Axle \nFork\tVelocity V8 Carbon Fiber Fork, Internal Brake Routing, 12x100mm Thru-Axle \n\nWheels \nWheelset\tAlexRims CXD7 Wheelset \nTire\tSchwalbe Durano Plus 700x28mm \nInner Tubes\tSchwalbe SV15 700x18-28mm \nSkewers\tVelocity V8 Thru-Axle Skewers \n\nDrivetrain \nShifter\tShimano Tiagra Hydraulic Disc Shifters \nFront Derailleur\tShimano Tiagra \nRear Derailleur\tShimano Tiagra \nCrankset\tShimano Tiagra 50-34T \nBottom Bracket\tShimano BB-RS500-PB \nCassette\tShimano Tiagra 11-32T \nChain\tShimano HG54 10-Speed Chain \n\nComponents \nSaddle\tVelocity V8 Saddle \nSeatpost\tVelocity V8 Aluminum Seatpost \nHandlebar\tVelocity V8 Compact Handlebar \nStem\tVelocity V8 Aluminum Stem \nHeadset\tFSA Orbit IS-2 \n\nBrakes \nBrakes\tShimano Tiagra Hydraulic Disc Brakes \nRotors\tShimano SM-RT64 160mm Rotors \n\nAccessories \nPedals\tVelocity V8 Road Pedals \n\nWeight \nWeight\t9.4 kg / 20.7 lbs \nWeight Limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 120 kg (265 lbs).\n\n## Sizing" - }, - "ea22df15-da72-4045-8dbd-df6838f91fe4" : { - "embedding" : [ 0.02552226, 0.011436469, -0.025785806, -0.00646379, 0.0068313656, 0.012879032, -0.011949688, -0.029988656, -0.008454248, -0.015230131, 0.008107479, 0.0075595826, -0.018545251, 0.005205015, -0.0066059656, 0.028074486, 0.029073182, -0.017810099, 0.012254846, -0.016714307, 0.008031189, -0.009022951, -0.020501032, -0.0029267373, -0.018822666, -1.3989996E-4, 0.025120007, -0.007975706, 0.007927159, -0.007795386, 0.009993907, 0.009092305, -0.0026181121, 0.010735994, -0.011963559, -0.0033272565, 0.029461564, -0.0103753535, 0.030543488, 0.012511455, 0.031680893, 0.012483714, -0.02186037, 0.008634569, -0.01835106, 0.016936239, 9.77024E-4, -0.009064564, -4.3107825E-4, -0.01179711, -3.166442E-4, 0.019543948, -0.022817455, 0.0034434244, -0.0016072781, -0.017033335, 0.012379683, 0.019530077, 0.0336228, 0.032984745, -0.005874281, 0.022595523, -0.03076542, -0.010930185, -0.015313356, -0.04003111, 0.0034018122, 0.008412636, 0.012227104, 8.456849E-4, -0.0076289363, 0.0171443, 0.03162541, 0.009633266, 0.01468917, -0.009556977, -0.0060684723, 0.0023996471, 5.864745E-4, 0.011602919, 0.045329753, -0.008856501, 0.0112492135, 0.0070637013, 0.024759365, -0.0024655336, -0.00271174, -0.01267097, -0.010465514, -8.3181413E-4, 0.02937834, 0.02047329, 0.011963559, 0.034510534, 0.008343282, -4.5730273E-4, -0.014924973, 0.019682655, -0.02518936, -0.009841328, 0.012178557, 0.03129251, -0.01057648, -0.019086212, -0.025383553, -0.036813084, -0.02290068, -0.007656678, 0.028116098, -0.010735994, -0.015452064, 0.0064499187, -0.007056766, 0.008336347, 0.00558993, -0.016839143, 0.06036569, 0.009217142, 0.011901141, -0.027561266, 0.025300328, 0.025383553, 0.012351941, -0.022595523, 0.00882876, -0.002944076, -0.012206298, -0.002987422, 0.019169437, -0.013780633, -0.020001683, 0.009390527, 0.0155352885, 0.01973814, -0.021069735, -6.6103E-4, -0.0039913207, 0.026867727, -0.040641423, -0.03220798, 0.01074293, 0.008613762, -0.026812244, 0.016464632, -0.0033879413, 6.7966885E-4, -0.026812244, 0.0124629075, 0.0037971297, -0.0013454669, 0.028351901, -6.8357005E-4, 0.014841749, 0.03423312, 0.00760813, -0.020528775, -0.005021227, 0.020029426, -0.015063682, -0.023732927, -0.009959229, 0.013683538, -4.8894546E-4, -0.015757222, 0.026895469, 0.014453366, 0.011380986, -0.006550482, -0.01188727, -0.0047091343, -0.036480185, 0.015673997, -0.01973814, 0.017102689, -1.6991721E-4, -0.009133917, 0.036785346, -0.017061075, -0.014814007, 2.5452364E-5, 0.02165231, -0.0049969535, 0.021985207, 0.0029804867, 0.0032787088, 0.0065886267, 0.009217142, -0.023580348, 0.021430375, -0.019100083, 0.018087514, 0.013739021, 0.010195033, -0.008905049, -0.60676396, -0.031764116, -0.031958308, -0.008509732, -0.002059813, 0.022609394, 0.013967889, 0.011568242, -0.0033133856, -0.021222314, -0.013121771, 0.022970034, -0.00986907, -0.011824851, -0.048159394, -0.027491912, 0.014217563, -0.013073223, -0.036008578, -0.012275652, -0.021499729, -0.0120259775, -0.03548149, 0.014453366, 0.01959943, -0.009120046, 0.0036861633, -0.004265269, 0.00494147, 0.019335886, -0.035065364, 0.048242617, 2.2453346E-4, -0.015604642, 0.037478883, -0.026715148, 0.009244883, 0.007843934, 0.019627172, 0.03598084, -0.021999078, -0.008724729, 0.0020060635, -0.0057147667, -0.019710397, 0.010000842, 0.027824812, 0.0041889795, 0.017269138, -0.02219327, 0.022165528, 0.0012162952, 0.0018222755, -0.013094028, -0.017130429, -0.020182004, 0.042444628, -0.0043484936, -0.009272626, 0.020736836, 0.009029887, 0.021014253, -0.0124629075, -0.035259556, -0.02168005, 0.026201928, -0.050406463, -0.017393975, 0.008308605, 0.019363627, 0.022401331, 0.027727716, -0.0070498306, 0.036230512, 0.008606827, 0.014286917, 0.03745114, 4.3064478E-4, 0.015951412, 0.012386618, 0.017352363, 0.008794083, -0.005371465, -0.029988656, 0.018808795, 0.0059332317, -0.003804065, -0.0076774843, 0.01188727, 0.0038491453, 0.024759365, -0.009189401, 0.0049241316, -0.019266533, 9.4754854E-4, 0.042916235, 0.011568242, 0.018545251, -8.990008E-4, -0.031264767, -0.01957169, 0.0025418228, 0.0152440015, 0.005045501, 0.013246608, 0.0055829943, 0.001137405, -0.026964823, 0.011915011, -0.022595523, 0.00262158, -0.030099621, -0.022942292, 9.0767007E-4, -0.010930185, -0.029100925, 0.023316804, 0.017921066, 0.013919341, -0.05698122, -0.0072613605, -0.01853138, 0.030099621, -0.012650164, -0.014911103, 0.0101811625, 0.026340637, 0.008447313, -0.0043831705, -0.010070196, 0.016589468, 0.03220798, 0.031153802, -0.0069180583, 0.033012487, 0.013732085, 0.010611157, -0.016312053, 0.008266993, -0.0336228, -0.03270733, 0.0031330655, 0.0025886367, -0.03972595, -0.005804927, -0.0126570985, -0.027547395, 0.0040988196, -0.0102297105, -0.008031189, -0.0126570985, -0.013662731, -0.011172924, -0.002838311, -0.018281706, -0.023275191, -0.00839183, -0.015438193, -0.033816993, -0.0067516086, 0.016839143, -0.001943645, -0.011734691, -0.0028348435, 0.012580809, 0.003575197, -0.0056870254, 0.019446852, -0.012823548, -0.038033716, -0.01572948, 0.0033133856, -0.0070879753, 0.02222101, -0.0022037223, 8.9986774E-4, -0.015452064, 0.00961246, 0.012109202, -0.00796877, 0.009154724, 0.025924513, -0.038893703, 0.004528814, 0.020584257, -0.0019488465, 0.020029426, 0.017352363, -0.014869491, 0.026132574, -6.7750155E-4, 0.012948385, -0.023039388, -0.0022262624, -0.00927956, -0.012899837, 0.012608551, -0.020195875, -0.0021586423, 0.0076705487, 0.031015094, 0.002713474, 0.010597286, -0.0034572952, -9.2760933E-4, -0.011339374, 0.011159053, 0.005229289, 0.03553697, 0.0046189744, 0.014841749, -0.028823508, -0.011734691, -0.009529235, -0.0066371746, 0.0023632364, 0.0014520987, 0.023289062, -0.01249065, -0.018073644, -0.001954048, 0.013343703, 0.022304235, -0.011380986, -0.0035197139, 0.025258714, 0.004136964, 0.041529156, 0.0075457115, -0.02448195, -0.008031189, 0.026188057, 0.032013793, -0.02395486, -7.8586716E-4, 0.025286457, 0.018781055, -0.01732462, 0.028435126, -0.020667482, 0.035786647, 0.028546093, 0.0067793503, -0.023025516, -0.0057112994, 0.0034694322, 0.016700435, 0.018337188, 0.028379643, 0.026867727, -0.006737738, 0.004518411, -0.0020511437, 0.01589593, 0.006737738, 0.016492372, 0.0055240435, 0.0038005973, -0.001230166, 0.008488925, 0.018545251, 0.023358416, 0.0249813, 0.013073223, -0.0039601116, 0.01110357, -0.020195875, -0.0054997695, -0.017546553, -0.029406082, 0.011242278, -0.027061917, 0.019530077, 0.008481991, 0.00927956, 0.012046784, 0.005010824, -0.010403095, -9.414801E-4, 0.02410744, -0.0017667923, -0.030377038, -0.010396159, 0.031070577, -0.01765752, -6.1074836E-4, -0.012372748, 0.0025002104, 0.0075457115, 0.041418187, 0.012962257, 0.025217103, -0.020695224, 0.008766341, -0.016547857, 0.011415663, 0.028823508, -0.0048443745, 0.009335044, -8.5478765E-4, -0.0068348334, 0.0033064503, 0.015951412, -0.04385945, 0.021222314, -0.019197177, 0.012636293, -0.013530958, 0.02272036, -0.013232737, -0.0072405543, -0.031347994, -0.016825272, -0.016034637, 0.002219327, 0.017269138, 0.017602038, -0.01031987, 0.018170739, -0.037839524, -0.0015561297, -9.7268936E-4, -0.01589593, -0.028268676, 0.059366997, 0.013329833, -0.0059366995, 0.020209746, -0.011290826, -0.02252617, -0.028074486, 0.0020164666, 0.013121771, 0.010659705, -0.011457276, -0.010264387, 0.0038005973, -0.018142998, -0.021596825, -0.019696526, 0.01732462, -0.024606787, -0.0071573295, -0.0048478423, -0.0044351863, -0.035426006, 0.008703923, -0.0058257333, 0.012989998, 0.0062141153, 0.026618052, -0.0021777146, 0.011311632, -0.0063701617, -0.011554371, -0.0032804427, -0.0049171965, -0.014300788, -0.02446808, 0.019113954, -0.0024429935, -0.024953557, 0.0036861633, -0.0025296859, -2.9908898E-4, -0.0010602488, 0.0031347992, 0.009543106, 0.0020979575, -0.009688749, 0.0022800115, 0.008058931, 0.02586903, -0.021333281, 0.04005885, 0.007823127, -0.03930983, 0.0019523142, 0.0013775432, 0.017199785, -0.014037243, -0.03672986, -0.012130009, -0.026340637, 0.012622422, -0.029960914, 0.018240092, -0.015882058, -0.0033636673, 0.017463328, -0.00312613, 0.0042236564, -0.0056315423, -0.008586021, -0.029295115, -0.02568871, -0.008676182, 0.022470685, 0.004036401, 0.0097927805, 0.014099661, -0.032846037, 0.017754616, 0.013239672, -0.027561266, 0.015063682, -0.0029960913, -0.023899376, -0.003804065, 0.0053506587, 0.003289112, -0.02290068, 0.040003367, 0.0026718616, 0.0107151875, -0.021055864, 0.021818757, -0.0035127783, -0.011436469, 0.00310359, 0.026271282, 0.016339794, 0.018475898, -0.023316804, 0.022609394, -0.0016636283, 0.03481569, 0.025133878, 0.019654915, 0.0017563892, 0.0045218784, -0.004910261, 0.011186794, -0.025314197, -0.0046952637, -0.016381407, -0.003908096, 0.0122201685, -0.04322139, 0.01782397, 0.017810099, 0.0215136, 0.010611157, -0.006359759, 0.022137785, -0.04702199, 0.028712543, -0.018115256, -0.01084696, 0.038893703, 0.009376656, 0.0059575057, 0.002770691, 0.017699132, 0.042500112, 0.028019002, 0.001804937, -0.009563912, -0.0107151875, -0.01765752, -0.017532682, 0.0013419993, 0.0031920164, 0.003828339, -0.028962217, 0.015576901, 0.034371827, 0.03093187, 0.010195033, -0.028740283, -0.03986466, 0.0077190967, -0.008260057, 0.04444202, -0.0029284712, -0.005874281, -0.022956163, -0.024565175, -0.019419111, -0.0017520546, -0.016187215, -0.023649702, 0.016339794, 0.045745876, 0.015493676, 0.006848704, -0.0025851692, 0.022082303, -0.013135641, 0.00822538, -0.02796352, -0.030848645, -0.03711824, 0.020889414, 0.028906733, 0.015812704, -0.01145034, -0.022470685, -0.025161618, 0.041889794, -0.004390106, -0.030987352, -0.0058777486, -0.032429915, -0.0025002104, -0.018087514, -0.018337188, -0.013094028, -0.03598084, -0.010403095, 0.027755458, 0.016963981, 0.02082006, 0.029073182, 0.009418269, 0.011145183, 0.033927962, 0.01084696, 0.040114336, 0.0020962236, -0.015424322, -0.01855912, -0.019252662, 0.032596365, -0.014439496, 0.005617671, 0.014134338, -0.013128706, -0.021471988, -0.0046605864, -0.0013957486, -0.021166831, -0.0040051914, 3.1989516E-4, -0.027159013, -0.013856922, -0.021305539, -0.03254088, -0.019113954, 0.021582954, -0.050628394, 0.027339334, -0.023358416, -0.0033740704, 0.040807873, 0.0057147667, 0.015660126, -0.010971798, 0.019363627, 0.021749403, -0.010749864, -0.017380103, -0.028768025, 0.010638898, 0.0036618894, 0.04283301, 0.02604935, -0.008911985, -0.0022488025, -0.00708104, -0.0053957384, -0.015757222, -0.02080619, -0.006529676, 0.021791017, 0.029128665, -0.022956163, -0.0016298182, -0.0070845075, 0.011582113, -0.010028584, -2.38621E-4, 0.0069839447, -0.019100083, -0.007920223, 0.04061368, -0.029128665, 0.013537894, -0.008343282, -0.054096095, 0.004424783, -0.010306, -0.022581652, 0.014058049, 0.009085369, 0.039947886, -0.006872978, -0.006793221, 0.04286075, -8.04506E-4, -0.005045501, -0.0077052256, 0.0049796146, 0.025466777, -0.010354547, 0.006141294, 0.012317264, -0.0059713763, 0.010840025, -0.012164686, -0.021055864, -0.007070637, -0.00301343, -0.0019349756, -0.0123242, 0.012240975, -0.011658402, 0.0062245186, -0.011401792, -0.026479345, -0.018226223, 0.025120007, 0.012560003, -0.021291668, -0.0152440015, -0.0321525, 0.017338492, 0.013322897, 0.011276955, -0.030571228, -3.4980406E-4, 0.018073644, -0.030460263, -0.0013610716, 0.027200626, -0.011713885, -0.019294273, 0.018267835, -0.004792359, -0.0077399025, 0.022845197, -0.00760813, -0.015008198, -0.019141695, -0.0045114756, 0.0030845178, 0.010541803, -0.00899521, -0.018919762, 0.01101341, 0.01872557, -0.024204534, -0.028795768, -0.012532262, -0.0020528773, -0.010354547, 0.028768025, -0.019557819, 0.02796352, 0.0064083063, -0.009237949, 0.0060684723, 0.0022488025, -0.013024675, 0.010749864, 0.01922492, -0.0068313656, -0.008142156, -0.026312895, -0.025508389, -0.022886809, 0.017449457, -0.010333741, 2.2009049E-4, 0.0110064745, -0.028213194, -0.018240092, 0.032097016, -0.001908968, -0.019280402, -0.009799715, -0.022970034, -0.02535581, -0.023330674, 0.004119626, 0.04455299, 0.012178557, -0.025785806, -0.008364089, -7.9280254E-4, -0.036341477, -0.01593754, 0.00751797, 0.005999118, 0.01521626, 0.0040155947, 0.027422559, -0.0012977861, 0.0052466276, 0.024190664, -0.01276113, -0.009709556, 7.897683E-4, 0.021929724, 0.018045902, 0.011915011, -0.049352285, -0.035564713, 0.022096174, 0.014099661, 0.017061075, 0.01161679, -0.002068482, 0.004632845, 0.01855912, -0.014605945, 0.024190664, 0.024551304, 0.005232757, -0.04477492, 0.004497605, -0.007150394, 4.2847748E-4, 0.013121771, 0.0059921825, -0.014182886, -0.017449457, -3.7884605E-4, -0.002390978, -0.014841749, -0.013752892, -0.009654072, -0.008003448, 0.0026718616, -0.03828339, 0.044025898, 9.77024E-4, -0.0398924, 0.021569084, 0.028962217, 0.013669667, -0.014217563, 0.0013237938, -0.027408687, -0.009383592, -0.009619395, 0.008176832, 0.015632384, -0.014938844, 0.01267097, -0.011838722, -0.0020407406, 0.024495821, 0.014175951, -0.023982601, -0.019197177, 0.017976549, -7.4704517E-6, 0.0012206298, 0.015993025, 0.0066926577, -0.040003367, 0.01250452, -0.002552226, -0.03340087, -0.020514904, 0.029655756, 0.0055691237, -0.0041300287, 0.0057321056, 0.19374724, 0.018503638, 0.0034555614, 0.033650544, 0.04177883, 0.016963981, -0.008773277, -0.005312514, 0.003984385, 0.0052362243, 0.022831326, 0.0022453347, -0.014786266, -0.009806651, 0.016853014, -0.0072405543, -0.048353586, -0.015673997, 0.010188098, -0.013017739, 0.006377097, -0.012969192, -0.022054562, -0.038588546, 0.0054893666, 0.011041151, -0.027256109, -0.03165315, 0.023330674, -0.0020182005, 0.0028955282, -0.031347994, -0.008398766, 0.018489767, -0.023205837, 0.01267097, 0.019266533, -0.016214957, -0.003356732, 0.02849061, -0.007656678, 0.009737297, 0.029267374, -0.004032933, -0.012962257, -0.005139129, -0.02148586, 0.0038664837, -0.011672272, -0.022151656, -0.030293813, -0.0050385655, -0.007989577, 0.0328183, -0.028546093, -0.0146614285, -0.0047992943, 0.0011911544, 0.008752471, -0.001125268, -0.02849061, 0.025563871, 0.014703041, 0.024856461, -0.020043297, 0.016658822, -0.020695224, -0.014314659, 0.03980918, 0.005291708, -0.022512298, -0.013191124, 0.005426948, 0.0053090462, -0.028934475, -0.0104239015, 0.015105294, 0.0066926577, 0.020944897, 0.018614605, -3.931503E-4, 0.0110550225, -0.010625028, -0.0011087966, 0.009848263, -0.022803584, -0.007275231, 0.0014763726, 0.0058708135, 0.0041057547, -2.8998626E-4, -0.015798833, -0.0016879021, -0.014883361, 0.004116158, -0.019100083, -0.032457657, 0.008911985, -0.0066475775, 0.0043623643, -0.024592917, 0.05104452, -0.0044559925, -0.011221472, -0.033178937, -0.0043519614, -0.030515745, 0.023108741, 0.011228407, -0.029711239, -8.781946E-4, -0.042749785, -0.0109093785, -0.014058049, 0.018448155, 0.010430837, -0.001978322, -0.03903241, 0.009452946, -0.013260478, 0.019613301, -0.007746838, -0.006543547, 0.0071365233, 0.03445505, -0.013142576, -0.0049241316, 0.0019002986, -0.011075828, -0.015285614, 0.014980457, -0.001943645, -0.006325082, -0.011498888, -0.014453366, 0.0049484055, 0.0011547436, -0.020681353, -0.0149527155, -0.01643689, -0.011949688, 0.002460332, 0.013100964, 0.0054338835, 0.013614183, -0.019752009, -0.007781515, 0.0020043296, -0.03165315, -0.006682255, -0.0146614285, -0.005562188, 0.010479384, -0.026340637, 0.035564713, 0.013565636, -0.017172042, -0.012976127, -0.008648439, 0.021236185, -0.026326766, -0.021874242, 0.0051183226, 0.027561266, -0.012012107, -0.008717794, -0.17654745, 0.009876004, 0.01785171, -0.022123916, 0.007920223, -0.009120046, 0.017754616, 0.011700015, -0.03112606, -0.01521626, 0.006768947, 0.0017711269, -0.04197302, -0.027727716, 0.016298182, 0.010285193, -0.04039175, 0.016464632, -0.0022453347, -0.010104873, -0.018961374, -0.033983443, 0.0162427, -0.008065866, 0.0018708232, 0.0056003327, -0.00900908, 0.004712602, 0.004885987, 0.004358897, -0.007552647, -0.021139089, 0.033678286, -0.011935818, 0.012719518, 0.0040537394, -0.018753313, -0.012032913, -0.014002566, 0.03026607, 0.016381407, 0.01004939, 0.013080158, 0.006002586, 0.020071037, 0.020292971, -0.0032787088, 0.0038456775, 0.0055795265, -0.0101811625, 0.049768407, -0.011679208, 0.029960914, -0.017518813, 0.024162922, 0.0011920213, 0.0101326145, 0.034011185, 0.026354507, -0.024495821, -0.030460263, -6.909389E-4, 0.004792359, -0.009654072, 0.0016150805, -0.032013793, -0.001023838, 0.03814468, -0.014800137, 0.007663613, -9.6835475E-4, -0.009688749, -0.010874702, 0.008468119, 0.022872938, -0.004920664, -0.015868187, 0.0016974383, 0.032291207, -0.02186037, -0.0038248713, 0.04352655, 0.0020771513, -0.0018673555, -0.029267374, -0.014550462, 0.022304235, 0.015854318, -0.0046224417, 0.0023510994, -0.016173346, -0.010188098, -8.2054414E-4, 0.008592957, -0.017532682, 0.010514061, -0.02427389, -0.019211048, -0.0026631923, 0.011485017, 0.01119373, -0.0072613605, -0.015965283, -0.011852593, 0.040807873, 0.018281706, 0.0202791, 0.008530538, 0.02482872, -0.0045912326, -0.02535581, 0.023275191, 0.034205377, 0.025938384, 0.009258755, 0.01259468, -0.017033335, -0.016561728, 0.005943635, -0.02340003, 0.020237487, -0.019002987, -0.013246608, 0.008565214, -0.013135641, -0.033012487, -0.08133833, -0.0012292991, 0.032263465, 0.01768526, -0.022012949, 0.01205372, -0.0054893666, 0.0286848, -0.004560023, 0.022318106, -0.014155145, -0.022664877, -0.0058708135, 0.008156027, 0.0047056666, -0.004726473, 0.035758905, -0.005451222, -0.026035478, 0.0020771513, -0.022123916, -0.017754616, -0.027505783, -0.006078875, -0.018767184, -0.007226683, -0.020625869, 0.021222314, 0.015771093, 0.012740323, 0.0011061957, -0.011700015, -0.0038422097, -0.011332438, 6.354557E-4, -0.004046804, -0.01855912, -2.219327E-4, 0.024676142, -0.04213947, 0.005024695, 0.0037312433, 5.2492286E-4, -0.005947103, -0.008814889, -0.0066857226, -0.0013888131, 0.02534194, 0.01117986, -0.014356271, -0.020528775, -0.023469383, -5.665352E-4, -0.032402173, 0.013267414, -0.035786647, 0.0058465395, -0.021527471, -0.020015555, 0.004532282, -9.622863E-4, 0.009785845, -0.006332017, 0.022082303, 0.02256778, -0.028768025, 0.009293431, 0.015868187, 0.023178095, -0.009480687, -0.013017739, 0.028005132, -0.013295155, 0.034926657, -0.01869783, 0.024246147, -0.0039913207, -0.03553697, 0.015604642, 0.0011538767, -0.028740283, -0.0149527155, 0.015160777, -0.045856845, 0.01872557, 0.02954479, 0.0034347551, -0.008079737, 0.011623724, -0.046272967, 0.021222314, 0.025799675, 0.049907114, -0.012289523, 7.0871087E-4, -0.006574756, -0.008419571, 0.009335044, -0.017407846, 0.011471146, -0.026701277, -0.008412636, -0.07673323, 0.03093187, 0.013024675, -0.014092726, -0.0143424, 0.011325503, 0.03537052, -0.006928461, 0.006921526, 0.020403937, -0.0047576823, 0.0059366995, -0.01768526, 0.0020147327, -0.0058708135, 0.007413939, 0.036480185, -0.0099731, 0.016714307, 0.015868187, 0.0047646174, 0.010507126, -0.0030897192, 0.024634529, -0.034038927, 0.017962677, -0.029794464, 0.015854318, 0.010111809, 4.359005E-5, 0.035758905, -0.025785806, 0.0036306803, 0.026853856, 0.0031313316, 0.013045481, -0.00926569, -0.0010299064, -0.014182886, -0.03145896, -0.0060372627, -0.003297781, -0.011679208, -0.018462026, -0.016006896, 0.0054304157, 0.018226223, 0.008932791, 0.0071365233, 0.048852935, 0.012705646, 0.014397884, -0.012754194, -0.036119547, -0.0010047656, -0.025785806, -3.5522235E-4, -0.010396159, 0.006082343, -0.020126522, 0.030155106, 0.0107637355, -0.0018309447, -0.0020511437, 0.016700435, -0.009813586, -0.027658362, 0.013135641, -0.0061794384, -0.027353205, -0.019446852, 0.0069839447, 0.012518391, 0.0142730465, -0.004150835, 1.1345876E-4, -9.2760933E-4, 0.0012605083, -0.016312053, 0.018503638, 0.027006434, 0.009959229, -0.009799715, -0.003273507, 0.00463978, -0.0046224417, -0.008807953, 0.004230592, -0.020695224, 0.009473752, -0.01574335, 0.014009501, -0.0060511334, 0.012046784, 0.021582954, 0.0027568203, -0.024121309, -0.018475898, 0.01259468, 0.031209284, -0.011408728, 0.009633266, 0.014841749, 0.0036202772, -0.008648439, 0.0045947004, -0.04263882, -0.0018014692, -0.0025921045, -0.010201968, -0.012726453, -0.012039849, 0.008488925, 0.0138846645, -0.010937121, 0.018711701, 0.012830484, -0.0174772, -0.03686857, 0.022512298, 0.011672272, 0.015868187, 0.0072682956, 0.006921526, 0.033595063, -0.010507126, 0.012019043, -7.1347895E-4, 0.024884203, -0.013218866, 0.019668786, -0.0051634028, 0.0046536513, -0.0027342802, -0.010548739, -0.0150498105, 0.0055448497, 0.0014893764, 0.011415663, 0.08028415, 0.004449057, -0.014897232, 0.012310329, -0.0035890678, 0.0110064745, -8.999761E-5, -0.0013367977, -0.017879453, -0.031431217, 0.012983062, 0.0013688739, -3.8036317E-4, 0.016742047, -0.023497123, 0.03828339, 0.004036401, 0.0044594603, 0.019682655, -0.020459421, 0.023746798, -0.011367115, -5.7650486E-4, -0.022595523, 0.0025348875, -0.017393975, 0.023455512, 0.022872938, -0.0063875006, -0.046078775, 0.015410451, 0.015452064, -0.017296879, -0.020431679, -0.0012769799, -0.01922492, -0.010368418, 0.035009883, 0.018170739, 0.0072336188, 0.0035786647, 0.0122687165, -0.02340003, -0.005530979, 0.0064464514, -0.016700435, -0.0155352885, -0.021277796, -0.059477963 ], - "id" : "ea22df15-da72-4045-8dbd-df6838f91fe4", - "metadata" : { - "name" : "Celerity X5" - }, - "text" : "price: 399.99\nname: Celerity X5\nshortDescription: Celerity X5 is a versatile and reliable road bike that is designed for experienced and amateur riders alike. It's designed to provide smooth and comfortable rides over long distances. With an ultra-lightweight and responsive carbon fiber frame, Shimano 105 groupset, hydraulic disc brakes, and 28mm wide tires, this bike ensures efficient power transfer, precise handling, and superior stopping power.\ndescription: ## Overview\n\nIt's right for you if... \nYou are looking for a high-performance road bike that offers a perfect balance of speed, comfort, and control. You enjoy long-distance rides and need a bike that is designed to handle various road conditions with ease. You also appreciate the latest technology and reliable components that make your riding experience more enjoyable.\n\nThe tech you get \nCelerity X5 is equipped with a full carbon fiber frame that ensures maximum strength and durability while keeping the weight down. It features a Shimano 105 groupset with 11-speed gearing for precise and efficient shifting. Hydraulic disc brakes offer superior stopping power, and 28mm wide tires provide comfort and stability on various road surfaces. Internal cable routing enhances the bike's sleek appearance.\n\nThe final word \nIf you are looking for a high-performance road bike that offers comfort, speed, and control, Celerity X5 is the perfect choice. With its lightweight carbon fiber frame, reliable components, and advanced technology, this bike is designed to help you enjoy long-distance rides with ease.\n\n## Features \n\nLightweight and responsive \nCelerity X5 comes with a full carbon fiber frame that is not only lightweight but also responsive, providing excellent handling and control.\n\nHydraulic disc brakes \nThis bike is equipped with hydraulic disc brakes that provide superior stopping power in all weather conditions, ensuring your safety and confidence on the road.\n\nComfortable rides \nThe 28mm wide tires and carbon seat post provide ample cushioning, ensuring a smooth and comfortable ride over long distances.\n\nSleek appearance \nThe bike's internal cable routing enhances its sleek appearance while also protecting the cables from the elements, ensuring smooth shifting for longer periods.\n\n## Specifications \n\nFrameset \nFrame\tCelerity X5 Full Carbon Fiber Frame, Internal Cable Routing, Tapered Headtube, Press Fit Bottom Bracket, 12x142mm Thru-Axle \nFork\tCelerity X5 Full Carbon Fiber Fork, Internal Brake Routing, 12x100mm Thru-Axle \n\nWheels \nWheelset\tAlexRims CXD7 Wheelset \nTire\tSchwalbe Durano Plus 700x28mm \nInner Tubes\tSchwalbe SV15 700x18-28mm \nSkewers\tCelerity X5 Thru-Axle Skewers \n\nDrivetrain \nShifter\tShimano 105 R7025 Hydraulic Disc Shifters \nFront Derailleur\tShimano 105 R7000 \nRear Derailleur\tShimano 105 R7000 \nCrankset\tShimano 105 R7000 50-34T \nBottom Bracket\tShimano BB72-41B \nCassette\tShimano 105 R7000 11-30T \nChain\tShimano HG601 11-Speed Chain \n\nComponents \nSaddle\tSelle Royal Asphalt Saddle \nSeatpost\tCelerity X5 Carbon Seatpost \nHandlebar\tCelerity X5 Compact Handlebar \nStem\tCelerity X5 Aluminum Stem \nHeadset\tFSA Orbit IS-2 \n\nBrakes \nBrakes\tShimano 105 R7025 Hydraulic Disc Brakes \nRotors\tShimano SM-RT70 160mm Rotors \n\nAccessories \nPedals\tCelerity X5 Road Pedals \n\nWeight \nWeight\t8.2 kg / 18.1 lbs" - }, - "c674f5e5-efc5-4b0b-bb48-c730c9eaad04" : { - "embedding" : [ 0.003669584, -0.0026702005, 0.002996424, -0.0035970898, -0.0076015275, 0.007207988, -0.024302794, -0.04120428, -0.0287491, -0.04087288, 0.011481689, 0.02156873, -0.0046189115, 0.0038249283, 0.009085931, 0.021582538, 0.009072122, -0.012248056, 3.2838114E-4, -0.019787446, -6.7423855E-7, 0.024040435, -0.027464919, -4.9278745E-4, -0.034631483, 0.0022386878, 0.043330777, -0.012745159, 0.010508196, -0.0061620013, 0.017564293, 0.008554308, -0.011184809, 5.318394E-5, -0.019732213, -0.0077672284, -3.8836143E-4, -0.009168781, 0.029605223, 0.02174824, 0.017785227, 0.0028825046, -0.009148069, -0.020408824, -0.0035867335, 0.007988162, 0.024717046, -0.014664527, 0.007069904, 0.017522868, -0.011150287, 0.023957584, -0.003227715, 0.0034244847, 0.01190975, -0.012683021, 0.005992848, 0.02191394, 0.010093945, 0.009493279, -0.003205276, -0.0024026625, -0.025614593, 0.0021178643, -0.031068914, -0.0323669, 0.020312164, 0.0117923785, 0.0018658608, 0.02667784, 0.014125999, 0.024799896, 0.019621745, -0.009686597, 0.010860311, -0.020381207, -0.0024648004, -0.0025286644, 0.005944519, -0.01389816, 0.013801501, -0.027644427, 0.0059341625, 0.0024941433, 0.022190109, -6.010972E-4, -0.0061758095, 0.011378126, -0.022328192, 0.014305509, 0.0061620013, 0.03766933, 0.004694858, 0.02814153, -0.0042391806, 0.002725434, -0.011447168, 0.005609665, -0.0023750458, -0.0068489695, 0.010273454, -0.0059514227, -0.013732459, -0.016818639, -0.028611017, -0.01826852, -0.020671183, -0.006873134, 0.008188385, 9.389716E-4, -0.019497469, 0.015410181, 0.003952656, 0.01785427, 0.0035522124, -3.9030323E-4, 0.016680554, 0.023363823, 4.4661562E-4, -0.00931377, 0.021706814, 0.028638633, 0.011771666, -0.04310984, 0.006938724, 0.013753172, 0.0107705565, -0.0054681287, -0.01087412, -0.012676116, 0.013704843, 0.0064934026, 0.0036661318, -0.012109972, -0.007629144, 0.015437798, -0.0027340644, 0.0050159036, -0.020629758, 0.0039008746, -0.02156873, 0.009148069, -0.011882133, 0.011212425, 0.007042287, -0.005040068, -0.014153616, 0.019179875, 0.026539756, -0.014167424, 0.014098383, -0.010597952, 0.014940695, 0.009886819, 0.0034538275, -0.015534457, -0.014195041, -0.0015905558, -0.016045367, -0.023971392, -0.019966954, 0.017950928, 0.0038939705, -0.016777214, 0.03830452, 0.014816419, 0.01887609, -0.03750363, 0.008609541, -0.01524448, -0.017978543, 0.022631977, -0.050096896, 0.005992848, 0.004246085, 0.033057325, 0.013145602, -0.023032421, -0.03639896, -0.0047052144, -0.0019556154, 0.012620883, 0.03394106, 0.04305461, -0.01082579, 0.0053611137, 0.0052575506, -0.016694363, 0.012455182, 0.003990629, 0.024551345, 0.008340277, 8.2850433E-4, 0.0014162246, -0.60580236, -0.04366218, -0.022811485, 0.014485017, -0.011371222, 0.0051747, 0.012462086, 0.03592947, -0.011571444, 0.0024233751, -0.011806187, 0.019414619, -0.006065342, -0.0066521997, -0.013007518, -0.023391439, 0.01005252, -0.00905141, -7.719762E-4, -0.0053058797, -0.03656466, -0.0038767098, -0.031041296, 0.032173585, 0.014788803, -0.004456663, 0.0036350628, -0.0044394024, 0.005419799, 0.0060860547, -0.0205331, 0.045346804, 0.0028100107, -0.017384782, 0.03308494, -0.020726416, 0.013332016, 7.991615E-4, 0.0014671431, 0.039022554, -0.0125449365, 0.01077746, -0.020671183, -0.004522253, -0.011053629, 0.0026684743, 0.04849512, -0.0035522124, -0.0066832686, -0.045181103, 0.0048536547, 0.009500183, 0.006034273, 0.006441621, -0.009769447, -0.031593632, 0.027313028, 0.0016250768, -0.014008627, 0.010473676, 0.01594871, 0.014968311, 0.005640734, -0.012358523, -0.0045533217, 0.016528662, -0.024150902, -0.022977186, -0.019359386, -0.019884104, -0.002214523, 0.013138698, 0.0034434712, 0.022825295, 0.024661813, 8.2591525E-4, 0.035404753, -0.0020505483, 0.002243866, 0.027271602, 0.0055268146, 0.0152306715, -0.013414866, -0.029577605, 0.022093449, 0.002658118, -0.020974968, -0.01447121, 0.016528662, 0.010805078, 0.016721979, 0.0025459249, 0.010473676, -0.034631483, -0.019248918, 0.036426574, 0.0028462575, 0.011053629, 0.0014861297, -0.03916064, -0.013262974, 0.007850079, 0.016860064, 7.620514E-4, 0.023985201, 0.037227463, -0.008126247, 0.0010304523, 0.011426455, -0.028831951, 0.018917516, -0.025076065, -0.018751815, 0.0023405247, -0.043441243, -0.03932634, 0.007325359, 0.008989272, 0.0070250263, -0.01005252, 0.0016432003, 3.8749838E-4, 0.013842926, -0.0039388477, -0.017716184, 0.008823572, 0.010756748, -0.006969793, -0.0058375034, -0.010522005, 0.024012817, 0.027658237, 0.04112143, -0.00593071, 0.034355313, 0.0059963004, 0.02156873, 0.018227095, -0.004494636, -0.018655157, -0.023308588, 0.024192328, -0.0047846125, -0.0318698, -0.003300209, -0.011985696, 0.0023905803, 0.023446674, -0.015465414, -0.004953766, -0.03048896, -0.023681415, -0.017660951, -0.01121933, -0.036757976, -0.023101462, -0.023847116, -0.028555783, -6.8664456E-5, -0.011495498, -0.0021489332, 0.0044394024, -0.0020988777, -0.0132974945, 0.020726416, 0.0033191955, -0.0030861788, 0.024855131, -0.032449752, -0.0382769, -0.008754529, -0.0132422615, 0.0071044248, -0.0031448645, -0.027879171, 0.026360247, -0.019966954, 0.0037904074, -0.010038711, -0.02866625, -8.2548376E-4, 0.019442236, -0.044904936, 0.026084078, 0.019704595, 0.022728635, 0.041176666, 0.0110398205, -0.015410181, 0.010535814, -0.021610156, -6.602144E-4, -0.013235357, 0.0019953146, -0.005347305, 0.002514856, 0.011288372, -0.0050538764, 0.0120616425, 0.020118847, 0.03559807, 0.017343357, 0.015327331, 0.0066452953, 0.022507701, -0.015727773, 0.0028773264, 0.0027772156, 0.019262725, 0.03057181, 0.030930828, -0.025766484, -0.004971026, -0.005057329, -0.0049296007, -0.0013842927, -0.0062206867, 0.014360742, -0.013987915, 0.0062828246, 0.0033105654, -0.0014541977, 0.05117395, 0.019566512, -0.010784365, 0.035266668, 0.018075204, 0.025835527, -0.010646281, -0.014098383, -0.002514856, 0.010922449, 0.03568092, -0.03032326, 0.0013394153, -0.0038559972, 0.03231167, -0.0042840578, 0.038663536, -0.016086793, 0.050897785, 0.044739235, 0.021706814, -0.03405153, 0.018986559, 0.0016820364, 0.03316779, 0.030378493, 0.015437798, 0.016321536, 0.0035832813, 0.002380224, -0.016611513, 0.013173219, -0.0045878426, 0.00666946, -0.0030343973, 0.014871653, -0.012883242, 0.015783008, 0.01835137, 0.03620564, 0.0066729123, 0.024744663, 8.267783E-4, -0.023584757, -0.043772645, -3.5686098E-4, -0.008091725, -0.032698303, -7.7068165E-4, -0.002820367, 0.0026097887, -0.020132655, 0.016321536, 0.006199974, 0.0015767473, -0.0048467503, 0.021982983, 0.054626055, -0.0010848229, 0.0020678088, 0.004670693, 0.009935148, -0.010356304, -8.2850433E-4, 0.015189246, -0.0023267164, -0.0023543332, 0.03551522, 0.02357095, 0.023308588, -0.0020885214, 0.009479471, -0.0051436312, 7.970039E-4, 0.023598565, -0.010860311, -0.0048536547, 0.008954751, -0.030930828, 0.0043427437, 0.0036454191, -0.022935761, 0.038912088, -0.01186142, 2.8425899E-5, -0.03291924, 0.021858707, -0.011592156, -0.011122671, -0.027934404, -0.0088373795, -0.015658733, -0.012365428, 0.006693625, 0.030185174, -0.016086793, 0.024275178, -0.024413262, -0.0026287753, -0.003921587, -0.017122423, -0.011460977, -0.002040192, 0.01992553, 0.011530018, 0.01871039, -0.026981626, -0.008630253, -0.02720256, -0.0012280851, 0.002385402, 0.021900132, -0.006079151, 0.010377017, -0.007477252, -0.03291924, 1.06313935E-4, -0.014705952, -0.004608555, -0.016224876, 0.011730241, -0.004215016, -0.017205274, -0.010618664, -0.0012039203, 0.02357095, 0.023667607, 1.9137588E-4, 0.00849217, 0.01121933, 0.018461838, -0.011819995, 0.0027029954, 0.012324003, 0.0318698, -0.0022317837, -0.04004438, -0.0024699785, 0.01516163, -6.256934E-4, 0.03637134, 0.005347305, 0.013359632, 0.02017408, -0.009507087, 0.019787446, 0.022797678, -0.007311551, 0.0027996544, 0.018075204, 0.017136231, -0.006638391, 0.020049805, 0.0087821465, -0.023336206, 0.0065382803, -0.0072563174, 0.016873872, 0.0206988, -0.021803472, -0.035349518, -0.022659594, -0.014346934, -0.032946855, 0.014429784, -0.017370975, -0.0057270364, -0.008720009, -0.010653185, -0.00489508, -0.0040424108, -0.009548512, -0.02242485, -6.6539255E-4, -0.029826157, 0.011122671, 0.010929354, -0.001735544, 0.01818567, -0.033554427, -0.014526443, -3.8922444E-4, -0.031151764, 0.0026598442, 0.0029757114, -0.0059514227, -0.0069905054, -0.006393292, 0.025007023, 0.01005252, 0.017080998, -0.00714585, 0.022148684, -0.013822214, 0.035874236, -0.043358393, 0.027257793, -0.011005299, 0.013849831, 0.014402167, 0.013649609, -0.0020850692, 0.019525087, -0.016749596, 0.014540251, 0.008367894, 0.018144244, 0.0019245466, -0.005416347, -0.014084574, 0.0072287004, -0.013981011, -0.033223026, -0.0069939573, -0.027658237, 0.006393292, -0.004622364, -0.0026926391, 0.006952532, 4.323757E-4, -0.010363208, -0.0058720247, -0.009700405, -0.020809267, 0.02495179, -0.014132903, 0.0045705824, 0.014498826, 0.014940695, 0.012807297, -0.0018313398, 0.031566016, 0.05178152, 0.0125449365, -0.016763404, -0.0023060038, -0.01775761, -0.035100967, -0.0011288371, -0.007339168, 0.010232029, -0.012351619, -0.0023577854, 0.01982887, 0.0036937485, 0.00857502, -0.008091725, -0.013905064, -0.007235605, 0.004056219, -0.0023577854, 0.04004438, -0.008499074, 0.022590552, -0.021182094, -0.008160768, -0.023391439, -0.019856488, -0.018392796, -3.4952527E-4, 0.017591909, 0.026650224, 0.02779632, 0.013180124, -0.007718899, 0.005506102, 0.009997286, 0.007311551, -0.025697444, 0.016666746, -0.031151764, 0.016998148, 0.036067557, 0.009196398, 0.00619307, -0.00918259, -0.0017424482, 0.008892613, 0.009741831, -0.0033278258, -0.029467138, -0.039298724, -0.009085931, -0.009645171, -0.014250275, -0.011143384, -0.033305876, -0.03855307, 0.031068914, -0.0053507574, 0.0037696948, -0.0017648869, 6.748858E-4, -0.019870296, 0.016832447, -0.020629758, 0.0062034265, 0.003641967, -0.029411905, -0.022342, -0.033554427, 0.023847116, -0.0066729123, 0.023584757, 0.009072122, -0.014788803, -0.013649609, 0.025435083, -0.017260507, -0.011019108, 0.025366042, -0.005447416, 0.0038698057, -0.041259516, -0.035045736, -0.014429784, 0.0016138575, 0.013932682, 0.0017053381, 0.012365428, -0.04935124, 0.001258291, 0.009700405, -0.007076808, 0.018544689, -0.0046465285, 0.04625816, 0.029218586, -0.007995067, -0.017536676, -0.03551522, -0.010466771, 0.009037602, 0.011668103, 0.03283639, -0.01230329, -0.010418442, 0.013401058, -0.005374922, 0.0021592896, -0.016142026, 0.027533961, -6.7531737E-4, 0.0035970898, -0.04034816, -0.006186166, -0.027133517, 0.01715004, 0.006880038, 0.0032018241, 0.00647269, -0.0060687945, -0.016721979, 0.030544193, -0.0066280346, 0.017674759, 0.00801578, -0.018724198, -0.0027150777, 0.018558497, -0.015493032, -0.004832942, 0.0050814934, 0.06246923, -0.0025856239, 0.006569349, 0.0073322635, 0.0055751437, -0.02174824, -0.008733816, 8.085469E-5, 0.032725923, -0.013359632, -3.6009733E-4, -0.0036972007, -0.03283639, -0.0063104415, 0.017467633, -0.013773885, -0.012393044, -0.008664775, -0.012448278, 0.012938476, 0.0070008617, -0.018889898, -0.01407767, -0.015147821, -0.027161134, -0.034714334, -2.199636E-4, 0.01775761, -0.038138818, -0.015879666, -0.027589194, 0.005285167, 0.034161996, 0.009230919, -0.021113053, 0.019414619, 0.04926839, -0.029301437, 0.012765871, -0.013180124, 0.015120205, -0.035321902, 1.2902229E-4, -0.0031431383, -0.008968559, -0.0030085065, 4.1382067E-4, -0.017633334, -0.022659594, 0.009438045, -0.009258536, 0.009513992, -0.009113547, -0.006638391, 0.0017277767, 0.015921092, -0.022742445, -0.009686597, 0.012027121, -0.0032587838, -0.0042357286, 0.0052506463, -0.02227296, 0.020256931, -0.009424237, 0.0027081736, 0.0047224746, -0.012779679, -0.012468991, -0.0015862406, 5.380963E-4, -0.0025666375, -0.0015672541, -0.020395014, -0.015493032, -0.019083217, 0.016086793, -4.3367024E-4, -0.011902845, 0.009942052, 0.012089259, -0.037227463, 0.023322398, -0.01074294, -0.026015036, 0.009714213, -0.02191394, -0.0382769, -0.014595485, 0.0132974945, 0.0320355, 0.035266668, -0.005067685, -0.0047155707, -0.021941558, -0.044573534, -0.01792331, -0.0019918624, 0.042557508, 0.01447121, 0.0011530019, -0.011226234, 0.020905927, 0.009148069, 0.048025634, -0.029080503, -0.0045118965, 0.007387497, 0.02894242, -4.664652E-4, 0.013401058, -0.040569097, -0.011274563, 0.0077050906, 0.015548265, 0.019994572, -0.0020332877, 0.0043116747, 0.0124897035, 0.0068834904, -0.016432002, 0.022162491, 0.0011823447, -0.008374798, -0.05376993, -0.032643072, -0.00749106, -0.024178518, -0.024109477, -0.0016742692, -0.024371836, -0.026235972, -0.0033191955, -0.00852669, 0.00381112, -0.021955365, -0.002861792, 0.02580791, 0.0013497716, -0.0020557265, 0.033471577, 0.017288124, 0.012717541, 0.009341386, 0.03380298, -0.016570088, -0.009707309, 0.011661199, -0.028693868, 0.014581677, 0.013035135, 0.01749525, 0.003132782, -0.0023370727, -0.010701515, -0.032532603, -0.008795954, 0.01294538, 0.012324003, -0.029356671, -0.027437303, 0.010639377, -0.021168286, 7.957094E-4, 0.0018555046, 1.6149362E-4, -0.030986063, 0.011226234, -0.021223519, -0.015216863, -0.014485017, 0.02910812, -0.0027116258, -0.0025631853, 0.014498826, 0.18017209, 0.004964122, -0.006365675, 0.03871877, 0.010784365, -0.017219082, 0.008533595, 0.014567868, -0.0054612244, 2.3884227E-4, 0.020118847, 0.02321193, 0.009286153, -7.443594E-4, 0.015023545, -0.004290962, -0.041867085, -0.016611513, -0.028472932, 0.0014593758, 0.0010339044, -0.0042737015, -0.021347795, -0.028472932, 0.022190109, -0.0021730978, -0.030599426, -0.006558993, 0.007518677, 0.028914802, 0.005889285, -0.0142088495, 0.0021178643, 0.006545184, -0.016501045, -0.019773638, 0.02866625, -0.007932929, -0.0018572306, 0.05100825, 0.015106396, -0.01828233, -9.993834E-4, -0.035045736, -0.015548265, -0.0033071132, -0.016487237, 0.027506344, -0.01843422, -0.0056062127, -0.028307231, -0.0026632962, 0.03291924, 0.024330411, -0.009976573, -0.009403524, 0.040651947, -5.229934E-4, 0.006600418, 0.0017899146, -0.009479471, 0.037807416, -0.0059099975, 0.031648867, -0.022286767, -0.0011038095, -0.014119095, -0.028611017, 0.023350013, 0.0046051033, -0.011026012, -0.007691282, -0.0117923785, -0.0023595113, -0.031759333, -0.030820362, 0.0012185918, 0.013621992, 0.0026650224, 0.023060037, -0.004349648, -0.0061758095, 0.019911721, -0.0075324853, -0.001669954, -0.040624328, 0.0020936995, 0.019842679, -0.0052506463, -0.004114905, -0.011267659, 0.002658118, -0.014954504, 9.639993E-4, -0.017785227, 0.0036247065, -0.019884104, 0.023764266, 0.0027513248, 0.005243742, -0.005281715, 0.036426574, 0.009286153, 0.01233781, 0.001940081, 0.0024199232, -0.0011780296, 0.005685611, -0.010646281, -0.043800265, -0.012752063, -0.042391807, -0.00578227, 0.007518677, 0.00822981, -0.021693006, 0.014022436, -0.017205274, 0.0048225857, -0.021140669, 0.02225915, -0.016390577, 0.0076015275, 0.005751201, 0.02018789, -0.0011616321, -0.048716057, 0.021499688, -0.017205274, -0.026871158, 0.0030516577, 0.0035297738, -0.0033813333, 0.0032173586, -0.0037731468, -3.6274036E-5, -0.013394154, -0.014277891, 0.009306866, -0.011164096, 0.0221763, 0.011592156, 0.022065833, -0.003873258, 0.03256022, -0.012261865, 0.020367399, -0.0068248045, -0.024219943, -0.010156082, -0.023239547, -0.0016397482, 0.023115272, -0.016528662, 0.04045863, 0.008678583, -0.013642705, -0.063352965, -0.015686348, -0.0071044248, -0.0507597, 0.007173467, 0.0069145593, -0.0010589322, -0.019980764, -0.010915545, -0.17553246, 0.0066245827, 0.040569097, -0.05161582, -0.0060273693, 0.0205331, 0.050953016, -0.0067177895, -0.037641715, 0.0014429784, 0.019773638, -0.025738869, -0.026484523, -0.0010969052, 0.0051850565, -0.0030879048, -0.00645543, -0.011378126, 0.030847978, 0.01594871, 0.0056372816, -0.010024902, 0.013539142, -0.014360742, -0.014277891, -0.007725803, -0.012448278, 0.024744663, 0.021099243, 0.0018675869, -0.012758967, -0.0016725431, 0.020726416, -0.0059099975, 0.0073184553, 0.01455406, -0.013801501, 0.03206312, 0.005796078, 0.032504987, 0.0142088495, 0.009410429, 0.02096116, 0.0013644431, 0.026056461, 0.008077918, -0.02286672, 6.6194043E-4, -0.0022231534, -0.01447121, 0.050897785, -0.008961655, 0.02486894, -0.01603156, 0.029301437, 0.009769447, -0.016694363, 0.008975464, 0.024855131, -0.0063484143, -0.029632838, -0.023916159, 0.022825295, -0.011426455, -0.022148684, -0.041452833, -0.031621248, 0.024026627, -0.017440017, 0.0023664155, -0.01982887, -0.021361604, 0.016735788, 0.0061447406, 0.04407643, 0.00701467, -0.031925034, -0.013097273, 0.023142887, 0.0070181224, 0.0019383549, 0.047639, -0.0057615573, 0.0072701257, -0.012054739, 0.024758471, -2.81562E-4, -0.0018675869, -0.0036868444, -0.015092587, -0.026401673, -0.018061394, -0.0018589566, -0.020933542, -0.004995191, -0.003541856, 0.004494636, -0.0032139064, -0.015879666, -0.011599061, 0.010107753, -0.018296137, -0.034438163, 0.018958941, 0.009355195, -0.0040941923, 0.0036281587, 0.028279616, 0.016404387, 0.021030203, -0.012779679, 0.0031914678, 0.017094806, 0.020574525, -0.019124642, 0.0012876338, -0.0052230293, -0.018599922, 0.005916902, 0.015796816, -0.0142088495, -0.004656885, 0.010708419, 0.0076015275, -0.0029826157, -0.028445316, -0.081469595, -0.008713104, 0.03648181, 0.013580567, -0.0140500525, 0.014623102, -0.014733569, 0.011150287, 0.0042081117, 0.02754777, -0.012379236, -0.015990134, -0.008008875, 0.024385644, 0.029632838, 0.014650718, 0.006876586, -0.01915226, -0.030185174, 0.027533961, -0.03222882, -0.028914802, -0.017660951, -9.9679426E-5, 1.8220623E-4, -0.001869313, -0.037724566, 0.028390082, 0.008499074, -0.011833804, 0.028887184, -0.041977555, -0.0035453083, 0.01342177, -0.03198027, 0.005150535, 0.004294414, -0.01082579, 0.01810282, -0.027934404, -0.0041390695, -0.011474785, 0.026166929, 0.0035694728, -0.035018116, -0.0066521997, -0.016349152, 0.024068052, -0.009845394, -0.014333125, 0.01066009, -0.0033968678, 0.017619526, -0.004384169, 0.018544689, -0.012234247, 0.01732955, -1.6268028E-4, -0.020215506, 0.007939833, -0.022010598, 0.019359386, -0.009465662, 0.0093759075, 0.0055613355, -0.005478485, -0.0012324002, 0.009016889, 0.027906789, -0.026374055, -0.026664032, 0.021154478, 0.001430896, 0.031124147, -0.029163353, 0.0059686834, -0.010798173, -0.016321536, 0.013580567, -0.005544075, -0.019884104, -0.019525087, 0.0043392917, -0.013173219, 0.007656761, 0.030875595, 0.0034158544, 0.0035625687, 0.014664527, -0.021720622, 0.022797678, 0.008216001, 0.06810306, -0.008768338, -0.011164096, 0.004366908, -0.009092835, 7.0940686E-4, -0.014056957, -0.02009123, -0.039740592, 0.0075117727, -0.07296362, 0.016445812, 0.032587837, -0.018682772, -0.003030945, 0.0036316107, 0.019842679, -0.016639128, 0.0071389456, -0.009900627, 5.1177404E-4, 0.006265564, -0.01455406, -0.0078155575, -0.02225915, -0.0026063365, 0.022203917, 0.012558745, 0.012696829, 0.019801253, 0.0019107382, 0.006966341, -0.0018227096, 0.020671183, -0.0386083, 0.025310807, -0.00456713, 0.015700158, 0.0037317215, -0.0016129944, 0.03369251, -0.025310807, 0.022880528, 0.029356671, 0.007905312, 0.003029219, 0.002956725, 2.8005172E-4, 0.0068834904, -0.027727278, -0.023432864, -0.033361107, -0.04009961, 9.903216E-5, -0.012883242, 0.0012988532, 0.01594871, 0.02641548, 0.01680483, 0.041563302, 0.001699297, 0.0029014912, -0.0139948195, -0.0443526, 0.015479223, -0.020491675, -0.014913078, 0.002350881, 0.024192328, 0.005205769, 0.059376147, -0.0026840088, 0.025711251, -0.037310313, 0.021002585, -0.020712608, -0.019166067, 0.002349155, 0.026719265, -0.020118847, -0.02312908, -0.022203917, 0.009493279, 0.0122756725, -0.018144244, 0.016652938, 0.0032380712, 0.023888541, -0.016128218, 0.012883242, 0.02711971, -0.019041792, -0.003842189, 0.008975464, 0.0036868444, 0.0045429654, -0.01628011, 0.021168286, -0.0139948195, 0.0046189115, -0.037448395, 0.010791269, -0.0025787198, -0.011509306, 0.027920596, 0.0020470961, -0.027230177, -0.011412648, 0.027989639, 0.03291924, -0.0043634563, 0.015175438, -0.016266301, -0.009513992, 4.174885E-5, 0.006638391, -0.015189246, -0.030074708, -0.005105658, -0.0010054245, -0.004218468, 0.013946489, -0.0068869423, 0.012261865, -0.027575387, 0.0017597087, -0.029356671, -0.025227956, -0.04208802, 0.02736826, 0.015879666, 0.01455406, -6.3044E-4, -0.011371222, 0.0135115255, -0.0023267164, -0.0052195773, 0.006186166, 0.018586114, -0.021361604, -0.012109972, -0.009617555, 0.0044186898, -0.014705952, -0.004756996, -0.0016414742, -0.022894336, 0.013891256, 0.0034175804, 0.08627492, 0.007884599, -0.013877448, 0.0029377383, -0.007760324, 0.030185174, 0.022742445, -0.007449635, -0.023322398, -0.038166434, 0.012137589, 0.010425346, -0.015285905, 0.0030585618, -0.007567006, 0.035377137, 0.010314879, 0.019911721, 0.0061033154, -0.014595485, 0.015437798, 0.0022887432, 0.010604856, -1.7325234E-4, 0.009541608, 0.0030102325, 0.028776718, 0.035957087, -0.0044670193, -0.05376993, -0.0011184809, -0.004232276, -0.020740226, -0.013621992, 0.007415114, -0.014678336, 0.005509554, 0.012109972, 0.019870296, -0.013166315, 0.0016397482, 0.0071044248, -0.016528662, -0.017909503, 5.0098624E-4, -0.0055958563, -0.013483908, -0.026912583, -0.034686714 ], - "id" : "c674f5e5-efc5-4b0b-bb48-c730c9eaad04", - "metadata" : { - "name" : "Velocity V8" - }, - "text" : "2 | 58.1 | 59.8 | 62.4 |\n| Saddle rail height min | 67.0 | 69.5 | 71.5 | 74.0 | 76.0 | 78.0 |\n| Saddle rail height max | 75.0 | 77.5 | 79.5 | 82.0 | 84.0 | 86.0 |\ntags: [bicycle, electric bike]" - }, - "e9075e10-d6f5-45c5-b9d8-8cd96ae1471f" : { - "embedding" : [ 0.015566022, -0.008503271, -0.023733638, -0.030768417, -0.0039264695, 0.008111673, -0.014433185, -0.031551614, -0.0140345935, -0.037425585, 0.021509921, -0.001726353, -0.013335312, -0.0075732265, -0.0026415386, 0.022209203, 0.011950733, -0.00956618, 0.018516993, -0.0127059575, -0.021314122, 0.013160491, -0.022978414, 0.002178264, -0.012503166, -0.0142653575, 0.034600485, 0.0076151835, -0.0056781718, -0.020838609, 0.011636056, 0.008566207, -0.028376872, -0.008664107, -0.0045977803, -0.012006676, 0.008768999, -0.008391387, 0.025272058, 0.021775648, 0.010097635, 0.009314439, -0.012055625, -0.0090277335, 0.0022831564, 0.00834943, 0.014475142, 0.0090906685, -0.011384314, 0.009013748, 0.0013933198, 0.03104813, -0.0023181206, 0.0069613545, 0.014964639, -0.030796388, 0.0052516093, 0.007748047, 0.04299187, -0.0024195164, -0.021342093, 0.026502796, -0.033453662, 0.007517284, -0.0075382623, -0.030740445, -0.0022691707, 8.072339E-4, 9.999735E-4, 0.04108982, 0.04016677, 0.019174319, 0.01669886, 2.1033098E-4, -0.006003338, -0.02485249, -0.011573121, 0.009454295, 0.01843308, -0.017076472, 0.017537998, -0.020852596, -0.0030995684, 0.012293382, 0.020992452, -0.0013732155, -0.010174556, 0.030292906, -0.0020716235, 0.008775991, 0.005783064, 0.02418118, -0.007838953, 0.021579849, 0.001973724, -0.0072935135, -0.014286336, -0.004118772, -0.011517178, -0.01756597, 0.0030628562, -0.0012691972, -0.023481896, -0.01778974, -0.02780346, -0.006013827, -0.018321194, 0.019957514, 0.0012796865, 0.007195614, -0.036027018, 0.025579743, 0.006297036, 0.017999524, 0.018321194, -0.02889434, 0.036614418, 0.01737017, 0.021971447, -0.026684608, 0.02995725, 0.009104654, 0.020572882, -0.02234906, 0.006090748, 0.036278762, -0.0067865336, -0.014419199, 0.002952719, -2.6397905E-4, 0.027957303, -0.005492862, 0.0040593334, 0.009615131, 0.013796838, 0.023845524, -0.009629116, 0.020433025, -0.027621647, -0.010167563, 0.00241602, 0.00998575, -0.0038250736, 0.009706037, -0.014922682, -0.02418118, -0.024125237, -0.0020506452, -0.011335365, -0.03820878, 0.008978783, -0.016642917, 0.018209308, 0.021300135, 0.008230551, 0.01595762, 0.0015620217, 0.019943528, -0.008587185, 0.0042061824, 0.008838927, 0.027495777, 0.018377136, -0.010873838, 0.04145345, 0.02450285, 1.420417E-4, -0.011363336, -0.008636136, -0.012873786, -0.020460997, -0.0045138667, -0.04665611, 0.005314545, 5.5155886E-4, 0.02334204, -0.0026520279, -0.005122242, -0.009880858, 0.017929595, 0.0047166585, -0.007349456, 0.011377322, 0.026754538, -0.008755013, -2.0388447E-4, 0.019579902, -0.010293434, -0.0043949885, 0.002059386, 0.04369115, 0.01804148, -0.015789792, 0.001854846, -0.5867258, -0.051075574, -0.014587027, -0.010964745, 0.0023688185, 0.03538368, 0.0052271346, 0.021719705, -0.021230208, 0.01573385, -0.009300454, 0.023537839, 0.0031415254, -0.0128598, -0.015649935, -0.037761237, 0.016656902, -0.018894605, 0.007468334, -0.015705878, -0.018097423, -0.0062131225, -0.0073284777, 0.028614627, -0.011258444, -0.011510185, 0.0046292483, -0.030684503, -0.008671099, 0.0065557705, -0.039019946, 0.031971183, -0.004601277, -0.0072445637, 0.046851907, -0.06405425, 0.008824942, 0.028013246, 0.025775542, 0.03278235, -0.023733638, -0.015370223, -0.007915875, -0.03216698, -0.013663975, 0.006101237, 0.051243402, -0.013272377, 0.011740948, -0.0377053, -0.006227108, 0.0030471222, 0.016097477, -0.011838848, -2.3272986E-4, -0.026866423, 0.034460627, -0.008559214, 0.01171997, 0.007852939, 0.0038740234, 0.03518788, -0.006234101, -0.0015331763, -0.014628984, 0.030964216, -0.05040426, -0.027160121, 0.019859614, -0.0077969967, -0.0044019814, 0.024167193, -0.011657034, 0.027104178, 0.0023443436, 0.045453344, 0.03143973, 0.0037131885, 3.9880938E-4, 0.018796707, 0.011796891, 0.012153525, -0.017454084, -0.041928962, 0.045733057, 0.0111255795, 0.0013767119, 0.0052306307, 0.027831431, -1.4488254E-4, 0.015342251, -0.010559161, 0.02257283, -0.0076431544, -0.0040698224, 0.024223136, 0.008734034, 0.021887533, -0.0031310362, -0.030656531, -0.017034514, 0.024768576, 0.019705772, 0.0019160332, 0.026306996, 0.0061886474, 0.008328451, 0.002832093, 0.0011581861, -0.017188357, -0.003996398, -0.038068924, -0.03062856, 0.010747967, -0.028754484, -0.026013298, 0.008922841, 0.029453767, 0.0061362013, -0.004601277, 0.020922523, -0.006101237, 0.028810427, 0.024866475, -0.019062433, 0.0020226738, 0.026097212, 0.0083634155, 0.012412259, 0.0016345722, 0.03913183, 0.008132652, 0.057229254, -0.0016380686, 0.016349219, 0.004583795, 0.0142024215, 0.0155939935, 0.0133283185, -0.018405108, -0.020209257, 0.015118482, -0.0018391123, -0.0482225, -0.014251372, -0.013538104, -0.0104193045, -0.013188463, 0.0066991234, 0.0016992558, 0.0017639394, -0.022502901, -0.018181337, -0.008181602, -0.0106081115, -0.0257196, -0.03843255, -0.02626504, -0.018419093, -0.0013129023, 0.0048949756, 0.009608137, 0.0031869786, -0.013461183, -0.0011747942, 0.012447223, 0.013636003, 0.030404791, -0.020684768, -0.041173737, 0.0034474612, -6.337245E-5, -0.016852701, 0.0026083225, -0.019300189, 0.015342251, -0.0149086965, 0.008412365, -0.0074823196, -0.027593676, -0.0041397507, 0.024950389, -0.06489339, 0.024726618, 0.021565864, 0.02125818, 0.03104813, 0.011678013, -0.015747836, 0.02074071, -0.029621594, -0.008538236, 0.0067235986, 0.006338993, -0.00862215, -0.0036852174, 0.012950706, 0.0028932802, 0.0059578842, 0.029425796, 0.017649883, -0.0019579902, 0.021817604, -0.024251107, 0.020083385, -0.014419199, 0.020768682, -0.022740657, 0.027202077, 0.015901677, 0.027593676, -0.035551507, -0.005758589, 0.010740975, -0.006573253, 0.0034579504, 0.0035418645, 0.051075574, 3.0331366E-4, -0.018489022, -0.009999735, 0.009125633, 0.028922312, -4.2448617E-5, 0.0041397507, 0.0057480996, 0.02051694, 0.0202652, -0.0074473554, -0.026139168, -0.004136254, 0.02539793, 0.014880725, -0.018447064, 0.0100347, -0.007887904, 0.029425796, -0.016517045, 0.047411334, -0.00629354, 0.014419199, 0.016251318, 0.016545016, -0.017845683, 0.027929332, 0.0076081906, 0.03387323, 0.02247493, 0.036530502, 0.03191524, 0.0012823087, 0.023048341, -0.0071501606, 0.01804148, 0.0083424365, 0.015999576, 0.0105241975, 0.0373137, -0.0021433, 0.013286362, 0.02604127, 0.01945403, 0.018992504, 0.004992875, 0.024516834, -0.019775702, -0.019705772, 0.0020943503, -0.0024632215, -0.02790136, 0.010824889, -0.003019151, -0.009370382, -0.005912431, 0.021300135, 0.009964772, 0.02180362, 0.0036782245, 0.019621858, 0.04478203, -0.014377242, -0.026824465, 0.011643048, 0.017076472, -0.015510079, 0.0030139063, 0.0014641221, 5.0042383E-4, -0.018684821, 0.027929332, 8.806585E-4, 0.022488916, 0.006720102, 0.007265542, 0.0072865207, -0.0141394865, 0.025146188, -0.023328055, -0.018279238, -0.00862215, -0.029257968, 0.010796918, 0.01573385, -0.018964533, 0.029118111, -0.012754908, -0.005765582, -0.03233481, 0.0199715, -0.0053809765, 0.0028810427, -0.030684503, -0.0020104363, -0.010594126, 0.0052865734, -0.01085286, 0.024670675, -0.04623654, 0.024894446, -0.0104612615, -0.018475035, -0.0119367475, -0.014062565, -6.940376E-4, 0.011461236, 0.015817763, -0.0034002597, -0.009594152, -0.025691628, -0.013286362, -0.010069664, -0.0043390463, 0.004915954, 0.027020264, 0.008929834, 0.016978571, 0.0014186688, -8.352052E-4, -0.014090536, -0.021747677, -0.0040278654, -0.021691734, 0.016223347, 0.007838953, -0.02061484, -0.004922947, 0.005580272, 0.013321326, 0.01913236, 0.005877467, 0.0026695097, -0.005248113, 0.016447118, -0.022530872, -0.004227161, -0.008643128, 0.0071746353, -0.014796811, -0.036278762, 0.008216566, 0.019635845, -0.023593782, 0.020894552, 0.0015768814, 0.0033460653, 0.010062671, 0.015691893, 0.011160544, -0.0064089214, 9.221784E-4, -0.008901862, 0.007419384, 0.0049194503, -0.04626451, 0.009454295, 0.0024981857, -0.012629037, -0.005115249, -0.0064194105, 0.0075312695, -1.6050712E-4, -0.0053180414, -0.02337001, -0.01897852, -0.007650147, -0.027020264, 0.008244537, 0.003597807, -0.001795407, -0.0050138533, -0.0202652, -0.0021380554, -0.014104522, -5.4631423E-4, -0.0028985247, 0.008650121, -0.021006437, 0.019607874, -0.006772548, -0.019146347, 0.033313803, -0.040921994, 0.020433025, -0.0033320796, -0.018293222, 0.0011590603, -0.01199269, -0.01058014, -0.0020488969, -0.00241602, 0.021971447, -0.014244379, -0.0052620987, 0.011454242, 0.01090181, -0.012258417, 0.012629037, -0.037593413, 0.0047131623, -0.018209308, 0.01890859, 0.0010139592, -0.002108336, -0.0014955899, 0.00765714, -0.023607768, 0.0027341933, 0.021216223, 0.029034197, 0.0018006517, 0.0062900432, -0.0170485, -0.011216487, -0.014517099, -0.020041429, 0.012384288, -0.015524065, 0.0014719891, -0.022460945, 0.0126220435, -2.0257331E-4, 0.013006649, 0.016852701, -0.008370408, 0.00670262, -0.0312719, 0.031579584, -0.0044334494, -0.02311827, 0.015929649, 0.0070697432, 0.005223638, -0.025691628, 0.034572512, 0.007692104, 0.027216064, -0.015580008, -0.012517151, -0.019034462, -0.039831113, -0.024293063, 0.0012158769, 0.010076657, -0.02311827, -0.011013695, 0.010594126, 0.0033023602, 0.024880461, -0.018572936, -0.017286256, -0.034376714, -6.2804285E-4, -0.0133912545, 0.050628033, -0.026740551, 0.0070138006, -0.011118587, -0.005213149, -0.022237174, -0.003954441, -0.025831485, -0.019398088, 0.014992611, 0.02039107, 0.01509051, 0.019817658, -0.007866925, 0.02234906, 0.011454242, -0.010908802, -0.014006623, -0.012712951, -0.053704873, 0.0070312824, 0.03062856, 0.0028565677, -0.0030243956, -0.02074071, -0.019859614, 0.016768787, -0.01390173, -0.0047236513, -0.013531111, -0.047914818, -3.1948456E-4, -0.029006226, 0.008181602, -0.0070312824, -0.038292695, -0.012440231, 0.04665611, -0.010447276, 0.016461102, 0.0054159407, -8.059227E-4, -0.025579743, 0.033453662, -0.010615104, 0.03364946, -0.009887851, -0.015775807, -0.02658671, -0.0155939935, 0.034572512, -0.022922471, 0.030684503, 0.010887824, -0.020335127, -0.0061536836, 0.008664107, -0.0098598795, -0.018712793, 0.006999815, -0.0052795806, 0.003846052, -0.0106081115, -0.031607557, -0.036586445, -0.016321247, -0.0054578977, -0.008755013, 0.02886637, -0.019985486, -0.019621858, 0.02041904, -0.007964824, 0.017384157, -0.010272455, 0.002017429, 0.027719546, -0.027971288, -0.002117077, -0.0019684795, 0.0083214585, 0.00770609, 0.023859508, 0.040894024, -0.030936245, -0.015873706, 0.007999788, -0.002935237, -0.013985644, -0.018083438, 0.010713004, 0.029369853, 0.007419384, -0.026097212, -0.02430705, -0.03169147, -0.0031275398, 0.0020698754, -2.6725692E-4, 0.0010480492, -0.021663763, -0.011328372, 0.025761556, -0.008873891, 0.0049299398, 0.015342251, -0.011307393, -0.011803884, 0.0056362147, 0.006880937, -0.0119157685, -0.009083676, 0.075242765, -0.01399963, -0.0032691443, 0.013733903, 0.0067935265, -0.015468122, -0.01692263, -0.001923026, 0.027146135, -0.005027839, 0.011971711, -0.027048236, -0.005059307, -0.026950337, 0.0031327843, -0.016726831, 0.006440389, -0.0035278788, -0.015118482, 0.004685191, -0.0044194637, -0.027230049, -0.008838927, -0.012230446, -0.03669833, -0.015719865, -0.0040523405, 0.011454242, -0.043523327, -0.005622229, -0.03404106, 0.009230525, 0.04125765, 0.02671258, -0.022195218, 0.003470188, 0.016796758, -0.037733268, 0.012195482, -0.0054648905, 0.012202474, -0.01377586, 0.028516728, 0.012936721, -0.0061711655, 0.016391175, -0.0037726276, -0.012013668, -0.03152364, 0.020460997, -0.028516728, 0.0072445637, -0.015216381, 0.0057446035, 2.5392685E-4, -0.005034832, -0.009678066, -0.028306944, 0.0070207934, 0.00629354, 0.0052516093, 0.01541218, -0.0045698094, 0.019146347, -0.01323042, -3.2276244E-4, 0.0046642125, -0.018712793, -0.005545308, 0.017663868, 0.0140765505, -0.018447064, -0.002407279, -0.049425267, -0.0042656213, -0.016167404, 0.024153208, -0.018251266, -0.004499881, 0.042292587, 0.003148518, -0.023509867, 0.019509973, -0.02192949, -0.02693635, 0.037761237, -0.012698965, -0.020097371, -0.014726884, -0.0037201813, 0.05401256, 0.022516888, -0.020460997, -0.001896803, -0.0036887135, -0.035411652, -0.01823728, -0.033537574, 0.015020582, -0.002585596, 0.013293355, -0.008755013, 0.016195375, 0.008223559, 0.021202236, -0.024698647, -0.012272403, 1.0707759E-4, 0.024768576, -0.010237492, 0.007223585, -0.04727148, -0.013286362, 0.02418118, 0.009999735, 0.01984563, 0.0198736, 0.0016634176, -0.012503166, 0.01030742, 0.0012106323, 0.036362674, 0.00478309, -0.0028460785, -0.061369006, -0.015216381, 0.02886637, 0.011768919, 9.713467E-5, 0.019258233, -0.012482188, 6.066273E-4, -0.010594126, 0.0070207934, -0.0018408605, -0.0064299, -2.8435656E-5, 0.02812513, -0.0051851775, -0.015202396, 0.05169094, 0.0053320266, -0.0082585225, 0.004541838, 0.012510159, -0.0040278654, -0.018768735, 0.004136254, -0.04391492, -0.008034753, 0.0036782245, -0.0050488175, 0.016754802, 0.0048460257, -0.013594046, -0.0036712317, -0.0063564754, 0.031775385, 0.015370223, -0.025369959, -0.018894605, -0.006269065, -0.025985327, 0.026083227, 0.0013732155, -0.020223241, -0.043719124, 0.006755066, -0.002985935, -0.011055652, -0.02799926, 0.04108982, -0.021761663, -0.004076815, -5.244617E-4, 0.19423263, 0.0064683603, -0.0028600642, 0.03143973, 0.015230367, -0.0052690916, 0.01189479, 0.0070138006, -0.0031432735, 3.6384526E-4, 0.035411652, 0.02039107, 0.0051781847, -0.0020436523, 0.025957355, 0.0147828255, -0.0342928, -0.006132705, -0.004873997, 0.010398326, 0.020335127, 0.014153472, -0.018251266, -0.026866423, 0.022516888, 0.0058425027, -0.011433264, -0.0052935663, 0.011726962, 0.005901942, -0.018642863, 0.0014955899, 0.011866819, -0.0017071227, -0.03236278, 0.0016940112, 0.020796653, 0.018866634, 0.003470188, 0.026404897, 0.01846105, 0.0030331365, 0.04604074, -0.01583175, -0.003590814, -0.028838398, -0.030768417, 0.0071082036, -0.009482266, -0.019831643, -0.023677696, 0.008615157, 0.048893813, 0.017733797, -0.0058809635, -0.02411125, 0.016111461, -0.0170485, 0.003639764, 0.010335391, -0.027118163, 0.038320664, -0.0022569334, 0.0028373376, -0.018922577, 0.028642599, -0.032726407, -0.014461156, 0.0055592936, -0.0033810295, -0.0061816545, 0.006370461, 0.0026153154, -0.007964824, -0.033341777, -0.035243824, 0.01350314, -0.009622123, 0.013608032, 0.012272403, -0.0035873177, -0.011237465, 0.0014003126, 0.0036782245, 0.012608058, -0.014307314, -0.0012412259, 0.0097969435, 0.006905412, -0.017328214, -0.004940429, -0.015929649, -0.007650147, -8.513761E-4, -0.009657088, 5.0173496E-4, -0.011468228, 0.042012874, -0.015034568, -0.0026153154, -0.021733692, 0.05079586, -0.016223347, -0.009706037, -0.015510079, 0.0025628693, -0.01030742, 0.022922471, 0.012992663, -0.039607346, -0.0068669515, -0.052697908, 0.0018426087, -0.015300294, 1.6367574E-4, -0.01303462, 0.01062909, 0.0044334494, -0.01117453, -0.020097371, 0.033201918, -0.009852886, 0.017747782, -0.0040942975, 0.005590761, -0.022964427, -0.010013721, 0.025831485, 0.0017447091, -0.02485249, 0.017034514, 0.016586974, -8.5443544E-4, 0.010041692, -0.029397825, -0.01194374, 0.005122242, 0.009650094, 0.025761556, -0.020698754, 0.016391175, 0.02106238, -0.015482108, -0.005080285, 0.013384261, -0.032418724, -0.026181126, -0.0029387334, 0.0025383944, 0.00929346, -0.024474878, -0.0037901097, 0.014628984, -6.03568E-4, 0.02594337, 0.016167404, 2.3251133E-4, -0.054599956, -0.007985802, 0.013880752, -0.033817288, 0.0026502796, 0.0025069267, -0.020055413, -0.025411915, -0.009650094, -0.17823304, 0.007349456, 0.04729945, -0.019468017, 0.0017281012, 0.010048686, 0.035327736, 0.007831961, -0.019090405, 0.020377083, 0.010587133, -0.0047656083, -0.0042306576, -0.015020582, -0.010356369, -0.010321406, -0.008803963, 0.007559241, 0.024558792, 0.015132467, -0.011950733, -0.009741001, -0.0019789687, -0.0036292747, -0.0017447091, -0.005111753, 0.0058879564, 0.030712474, 0.01308357, -0.015356237, -0.00638095, -0.027705561, 0.01682473, -0.010342384, 0.02192949, -0.010223506, -0.012153525, 0.036418617, -0.018544964, 0.039803144, -0.009475274, 0.012328345, 0.034236856, -0.002152041, 0.0090906685, 0.019090405, -0.012286388, -3.6799727E-4, 0.014391228, -0.013985644, 0.041677218, -0.019915557, 0.009573174, -0.017426113, 0.015607979, 0.013943687, 3.0637303E-4, 7.735809E-4, 0.009866872, -0.003019151, -0.024810532, -0.049537152, 0.039831113, -0.015580008, -0.013041614, -0.013754881, -0.005353005, 0.036726303, -0.010552169, -0.0105451755, -0.01308357, -0.009230525, -0.00683898, 0.010153578, 0.01771981, 0.0048984718, -0.014349271, 0.0013286362, 0.026670624, 0.00675157, -0.011104601, 0.042656213, 0.011370328, 0.010782932, -0.0011564379, -0.00656626, -0.010188541, -0.0046292483, 0.0119996825, -0.02713215, 0.0049509183, -0.029565651, -0.0063914396, -0.0028373376, 0.029229997, 0.012789872, -0.0021660267, -0.010643075, -0.00382857, -0.0104193045, 0.011048659, -0.026852436, -0.026153155, 0.003853045, 0.023230154, 0.0027953805, 0.023160227, 0.013447197, 0.021216223, 0.020796653, -0.018223295, 0.017747782, 0.009300454, 0.01811141, -0.025355972, 0.016852701, -0.02086658, -0.024251107, 0.0044439384, 0.015300294, 0.008866899, -0.015244352, -0.0133912545, 0.016405161, -0.020474983, -0.027831431, -0.07624973, -0.018083438, 0.02237703, 0.00939136, -0.030740445, 0.012419252, 0.0015786296, 0.006192144, -0.0072515565, 0.02976145, -0.006321511, -0.008852913, -0.003402008, 0.016013563, 4.702673E-4, 0.011384314, 0.0076081906, -0.030013192, -0.006422907, 0.03062856, -0.020363098, -0.025481844, -0.01362901, -0.0090696905, -0.008272508, 0.0119367475, -0.016531032, 0.018083438, 0.017887639, -0.0030174027, 0.01181787, -0.015398194, -0.017649883, 0.0057970495, -0.01920229, 0.013209441, -0.016069505, -0.0127479145, 0.02234906, -0.039887056, 0.010223506, 0.01226541, 0.012503166, -0.02497836, -0.037397612, -0.010440283, 0.001582126, 0.04797076, -0.013293355, -0.020992452, -0.0026013297, -0.012076604, 0.0032341802, -0.00569915, 0.013223426, -0.0027184596, -7.8144786E-4, 2.4133431E-5, -0.020027442, 0.010125606, -0.003402008, 0.01692263, -0.008377401, 0.023705667, 0.00569915, -0.014810797, 0.013237412, 0.022964427, 0.047411334, 4.986756E-4, -0.003632771, 0.019817658, -0.019957514, 0.042432446, -0.028950283, 0.008489286, -0.017398141, -0.029565651, 0.013524118, -0.023230154, -0.016768787, -0.0055243294, 0.01097873, -0.05294965, 0.008006781, 0.04713162, 0.013740895, 0.0036502532, -0.009377374, -0.038740233, 0.011705984, 0.02376161, 0.03082436, 0.004842529, -0.013027628, -0.008929834, -0.0023425955, 0.018475035, -0.02745382, -0.026922366, -0.051607028, -0.010398326, -0.08374604, 0.045789, 0.014936668, -0.025034303, -0.007363442, 0.0048949756, 0.008006781, -0.008104681, 0.02202739, 0.021873547, -0.015454137, 0.003445713, -3.7520862E-4, 0.015775807, 0.0024807036, 0.012174503, 0.0070662466, 0.0038180808, 0.019537944, 0.025901413, -3.0921385E-4, 0.008125659, -0.008727042, 0.02051694, -0.007992796, 0.007237571, -0.028698541, -0.0021433, 0.009279475, 0.0064264033, 0.026320983, -0.004650227, 0.0012569597, 0.024069294, -0.021523906, 0.0043775067, -0.0036642388, 0.0050138533, -0.017090457, -0.018503007, -0.019705772, -0.00328313, -0.011573121, -0.0105451755, -0.0042411466, -0.008566207, 0.009104654, -0.0015191906, 0.026768522, 0.017342199, 0.0015611475, -0.004825047, 0.0070382752, -0.01945403, 0.0058040423, -0.021747677, 3.8323942E-5, -0.016139433, 0.0037796204, -0.0048005725, 0.051243402, 0.006650174, 0.0014903452, -0.0397472, -0.013810824, -0.023174213, -0.02760766, 0.004825047, 0.001207136, -0.003940455, -0.035327736, -0.016782774, -0.0041292612, 0.020251213, 0.003992901, 0.01372691, 0.011461236, 0.013838795, -0.04973295, 0.0025733586, 0.0133702755, -0.0126640005, -0.0083424365, 0.0091116475, -0.0052516093, -0.010279449, -0.031579584, 0.008768999, -0.007094218, 0.010782932, -0.027845418, 0.02061484, -0.0058040423, -0.003681721, 0.029062169, 0.0049684, -0.028782455, -0.010230498, 0.023747623, 0.020824624, -0.014922682, -0.013279369, -0.01682473, -0.014489127, 0.007866925, 0.022125289, -0.015398194, -0.01823728, 0.008062724, -0.0024981857, 0.0058459993, -0.022908485, -0.0034666916, 0.017929595, -0.0021974943, -0.0047516227, -0.029174054, -0.027383892, -0.028950283, 0.038544435, 0.008915848, 0.004702673, 0.017607925, -0.010747967, 0.008873891, -0.017579954, 0.015230367, -0.015216381, 0.012027654, -0.020405054, 0.0035873177, 0.0045768023, 0.0038740234, -0.009349403, -0.030572617, 0.025439886, -0.0039754193, 0.020978466, -0.003800599, 0.104444794, 0.0032359285, -0.015370223, 0.0038740234, -0.010174556, 0.015454137, 0.019733744, -0.030097106, -0.006807512, -0.0405304, 0.015398194, -0.0050068605, -0.021076366, 0.023383997, -0.003709692, 0.016097477, 0.0057550925, 0.010377348, -0.02626504, -0.019188304, 0.03535571, 0.0051676957, 0.022195218, -0.013279369, 0.003751649, 0.006006834, 0.030768417, 0.029509708, -0.0052516093, -0.018363152, 0.0016022304, 0.014237386, -0.010880832, -0.02889434, 0.013866766, -0.019300189, -0.0054998547, 0.016237333, 0.026237069, -0.010496226, 0.0064194105, -0.0055837682, -0.014335285, -0.016321247, 0.011838848, -0.011279422, -0.00341949, -0.027244035, -0.060977407 ], - "id" : "e9075e10-d6f5-45c5-b9d8-8cd96ae1471f", - "metadata" : { - "name" : "Stealth R1X Pro" - }, - "text" : "| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | 4.0 | 4.0 | 4.0 | 4.0 |\n| J — Trail | 6.8 | 6.2 | 5.8 | 5.6 | 5.8 | 5.7 | 5.6 | 5.6 |\n| K — Wheelbase | 97.2 | 97.4 | 97.7 | 98.1 | 98.3 | 99.2 | 100.1 | 101.0 |\n| L — Standover | 69.2 | 71.1 | 73.2 | 74.4 | 76.8 | 79.3 | 81.1 | 82.9 |\n| M — Frame reach | 37.3 | 37.8 | 38.3 | 38.6 | 39.1 | 39.6 | 39.9 | 40.3 |\n| N — Frame stack | 50.7 | 52.1 | 53.3 | 54.1 | 56.3 | 58.1 | 60.1 | 62.0 |\n| Saddle rail height min (short mast) | 55.5 | 58.5 | 61.5 | 64.0 | 67.0 | 69.0 | 71.0 | 73.0 |\n| Saddle rail height max (short mast) | 61.5 | 64.5 | 67.5 | 70.0 | 73.0 | 75.0 | 77.0 | 79.0 |\n| Saddle rail height min (tall mast) | 59.0 | 62.0 | 65.0 | 67.5 | 70.5 | 72.5 | 74.5 | 76.5 |\n| Saddle rail height max (tall mast) | 65.0 | 68.0 | 71.0 | 73.5 | 76.5 | 78.5 | 80.5 | 82.5 |\ntags: [bicycle, mountain bike, professional]" - }, - "819f6a5a-9ba8-488f-9dcf-60f75ba896a1" : { - "embedding" : [ 0.0049682413, 1.2593943E-4, 0.0031021547, -0.007306841, 0.002028727, 0.00755337, 0.00568386, -0.040375948, 0.026488155, -0.029199973, 0.009484513, 0.003466812, -0.016955707, 0.003167211, -0.0039752778, 0.015421749, 0.016120248, -0.0015459413, -0.0029395141, -0.01954426, 0.020763207, 0.013778224, -0.033884022, -5.7566198E-5, -0.016955707, -0.018215744, 0.03440447, -0.0026570333, 0.017339196, -0.013805616, 0.01483282, 0.016942011, -0.027816672, -0.0015930216, 0.0146684665, -0.024995286, 0.01431237, -0.01042954, 0.013196141, 0.012675692, 0.024378965, -0.001427813, 0.0028059778, 0.02273544, -0.016859835, 0.021557579, -1.9581067E-4, -0.018873153, 0.017229628, -8.3117886E-4, -1.4915851E-4, 0.03218571, -0.015339573, -0.0059406604, -0.014216498, -0.008738078, 0.01850336, -6.8865437E-4, 0.026940126, 0.006871992, -0.0056324997, 0.008751774, -0.030377833, -0.019379906, -0.0032699313, -0.021009738, 0.015586102, -0.012518187, -0.017777469, 0.005173682, 0.016818747, 0.034623608, 0.02862474, -0.02131105, 0.023132624, -0.00115646, -0.016887227, 0.0067932396, -0.0019362787, 0.018188352, 0.024351573, 0.0051702578, -0.01576415, 0.009525601, 0.028460387, 0.019379906, 0.013805616, 0.029254757, -0.022338253, 0.0041875667, 0.01327147, 0.0012531884, -0.020804295, 0.013059181, 0.016654395, 0.009731041, -0.0022290316, 0.019215554, -0.003478796, -0.013600175, 0.0113060875, 0.016544824, -0.026515547, -0.017996605, -0.056208577, -0.016106552, 0.0030798987, -0.02273544, -0.0049340012, -3.9568738E-4, -0.027172958, 0.013976816, -0.008258716, -0.024146132, 0.020954954, -0.010114531, 0.027939936, 0.007320537, -0.012614059, -0.057852104, 0.01555871, 0.02955607, 0.007306841, -3.0495105E-6, 0.0047114403, 0.011977194, -0.03807501, 0.0032374032, 0.030980458, -0.002886442, -0.004300559, 0.025762266, 0.00687884, -0.009101024, 0.0019379907, 0.02398178, -0.023201104, 0.013148205, -0.0050675375, -0.014860212, 0.025228119, 0.028816484, -0.010039203, -0.011443048, -0.0023968082, 0.01562719, -0.004886065, 0.018393792, 0.013059181, -0.0051257457, 0.012833197, -0.013401583, 0.016640699, 0.027844064, -0.007204121, 0.017722685, 0.008580574, 0.010313123, -0.020051014, -0.012381227, -0.005858484, 0.008395677, 0.017421372, -0.019585349, 0.02699491, 0.016448952, 0.021667147, -0.02196846, -0.0065946467, 0.018010302, -0.0014843091, 0.00115646, -0.012525035, 0.021941068, 0.0067453035, 0.025803354, 0.040238988, -0.0024995287, -0.018736193, -0.013141357, -0.0021708235, 0.027008606, 0.0026981214, 0.007977948, -0.01635308, -0.007799899, 0.009347552, -0.007204121, 0.0093680965, -0.016120248, 0.011340328, 0.01271678, 0.001737686, 0.019338818, -0.5938606, -0.008580574, -0.010080291, -0.038540676, -0.015818935, 0.01673657, 0.014545202, 0.019941445, -0.0017753502, 0.00345654, -0.008149148, 0.033884022, 0.0031398188, -0.022297164, -0.008197084, -0.023310672, 0.0048107365, 0.0050059054, 0.04459433, -0.010367908, -0.031555694, 0.005978325, -0.020886471, 0.022762831, -0.00845731, 0.0010948278, 0.014326066, -0.019311426, 0.01759942, 0.019119682, -0.019338818, 0.017791165, -0.007008952, -0.012031978, 0.045443486, -0.020324934, 0.028816484, 0.033527926, 0.016092855, 0.034212727, -0.017024187, -0.01569567, -0.007834139, 0.0025166487, -0.026899038, -0.0016846139, 0.048127912, -0.014613682, 0.010292579, -0.0384585, 0.013586479, 0.0053962427, 0.0051052016, -0.011716968, -0.0084299175, -0.03686976, 0.030049128, -0.014216498, 0.016654395, -0.0122716585, 9.1677916E-4, 0.016531128, -0.011669032, -0.026748382, -0.01979079, 0.020817991, -0.05136018, -0.03308965, 0.028597347, 1.6082155E-4, 0.009203744, 0.0021502795, 0.008964063, 0.028131682, 0.006909656, 0.04944273, 0.038157187, 0.011134886, 0.017613117, 0.021598667, 0.019872965, -1.6146355E-4, 4.025889E-5, -0.014421938, 0.03284312, -0.008265564, 0.019640133, -0.0047354084, 0.014682163, 0.014887604, 0.00455736, 0.026529243, -1.592968E-5, -0.009491361, -0.0127578685, 0.030788714, -0.0019277186, 0.020639943, 0.009361248, -0.020174278, -7.9137477E-4, -0.0108130295, -0.011223911, -0.014367154, 0.015736759, 0.008703838, -0.018325312, -0.00852579, 0.023858516, -0.008306653, 0.012942765, -0.00800534, -0.0093817925, -0.048867498, 0.0033521077, -0.036047995, 0.020886471, 0.025639001, 0.0022187596, -0.053305015, -0.019722309, -0.014353458, 0.012367531, -0.005187378, -0.02418722, 0.012312747, 0.013949424, -0.008786014, -0.013819312, 0.012703084, 0.03599321, 0.0073479293, 0.012353835, -0.014079537, 0.023379153, 0.019516869, 0.02733731, 0.0039067976, -0.0029429381, -0.053770684, -0.036924545, -0.001999623, 0.005225042, -0.009011999, -0.013483759, -0.006087893, -0.01510674, -0.0057181, -0.01659961, -0.014860212, -0.0070329206, -0.029227365, -0.007190425, -0.01174436, 0.003451404, -0.024872022, 0.0027238014, -0.01510674, -0.008512094, -0.018256832, 0.013682351, 0.022214988, -0.017202236, 0.019722309, -0.028679524, 0.0067932396, 0.023748945, 0.03319922, -0.019749701, -0.051962804, -0.00807382, -0.014682163, -0.019311426, 0.004040334, 2.4909686E-4, 0.010032355, -0.008060124, -0.027241439, 0.0053448826, 0.0011102358, 0.004427247, 0.027611231, -0.027679712, 0.022625871, 0.012497643, 0.0122579625, 0.02862474, 0.012394923, -0.026981214, 0.010470629, -0.017818557, -8.838231E-5, -0.0038520133, 0.0064268704, -0.026529243, -0.004136206, -0.014942388, 0.0050983536, -0.0045059994, -0.008286108, 0.027638623, -0.009710497, 0.020817991, 0.005831092, -0.0068137837, -0.006971288, 0.016175032, 0.0068035116, 0.025995098, 0.016476344, 0.014216498, -0.024995286, 0.012661996, -0.01601068, -6.556983E-4, 0.008614814, 0.03150091, 0.0073616253, -0.017298108, -0.0066939434, 0.0062043094, 0.01659961, 0.02439266, 3.6187525E-4, 0.0057181, -0.01209361, -3.5160323E-4, 0.02765232, 0.0063994783, -0.029227365, 0.021941068, 0.0336101, 0.02366677, 0.0067213355, 0.036650624, 0.019379906, 0.023023056, -0.012531883, 0.05412678, -0.011374568, 0.022009548, 0.024132436, 0.01379192, -0.0038759813, 0.012908525, -0.012929069, 0.008984607, 0.0061803414, 0.03319922, 0.013374191, -0.0033726518, -0.0053277626, -0.007238361, -0.0070466166, 0.0052592824, -0.0058961483, 0.02189998, 0.014641074, 0.007854683, 0.009210592, -0.0050983536, 0.0011864201, 0.029857384, 8.084948E-4, 0.031720046, -0.0012489083, -0.00751913, -0.00908048, -0.017037883, -0.01857184, 0.0013028365, -0.008224476, 0.018927937, -0.025789658, 0.016681787, -0.0011881321, 0.0116074, 0.003495916, 0.007430106, 0.04432041, -0.020283846, -0.029884776, -0.006926776, 0.023748945, -0.013880944, -0.0026536093, -0.016955707, -0.003697933, -0.0076766345, 0.03358271, 0.014326066, 0.013333102, -0.015996983, -0.0076492424, -0.014873908, -0.014504114, 0.021598667, -0.023776338, -0.0070534647, -0.023091536, -0.016202424, 0.005707828, -0.031035244, -0.01164164, -0.014887604, -0.017517244, -0.008847646, -0.0042115347, 0.014846516, -0.002001335, 4.020539E-5, -0.038513284, -0.026899038, -1.8425463E-4, -0.011347176, -0.0064302944, -0.006995256, -0.032870512, 0.01424389, 0.020626247, -0.018681409, -0.0019105986, -0.03308965, 0.019777093, 0.044676505, 0.020366022, -0.0062796376, 0.022214988, 0.0049750893, -0.029090405, -0.025762266, -0.026351195, 0.013648111, -0.004386159, -0.009073632, -0.0038759813, -0.010628133, -0.01773638, 0.012929069, -0.013483759, -0.01164164, -0.017640509, 0.0014132609, -0.016859835, -0.014778035, -0.021502795, -0.006317302, 0.01712006, 0.0025526008, -0.0018951906, 0.025104854, 0.036760192, 0.034322295, -0.016229816, 0.016243512, 0.0051257457, 0.016435256, 0.004560784, -0.031144813, -0.013038637, 0.0061666453, -0.020146886, -0.0114362, 0.008320349, -0.0132098375, 0.02013319, -0.008902431, 0.018845761, 0.028871268, 0.006101589, 0.018832065, 0.002004759, 0.013600175, -0.011175974, 0.042539924, 0.016065463, -0.0044786073, 0.0027374974, 0.012497643, 0.01705158, -0.029528677, -3.9226335E-4, -0.01164164, -0.041690767, 0.019941445, -0.017613117, 0.00698156, 0.0023728402, -0.0044854553, -0.031090029, -0.0048449766, -0.0025286328, -0.024022868, -0.026049882, -0.027364703, -0.026104666, 0.014791732, 0.035226233, 0.014736947, 0.029720424, 0.029199973, -0.02615945, 0.025022678, 0.02799472, -0.0032528113, -0.035774074, -0.009676257, -0.0287617, 0.006057077, -0.005461299, 0.019886661, -0.017695293, 0.016996795, -0.003509612, 0.0019242946, -0.0033281394, 0.012531883, 0.009552993, 0.0036191805, 0.018763585, 0.023831123, 0.009279072, 0.011518376, -0.014134321, 0.01691462, 0.008334045, 0.017818557, -0.0017804862, 0.008512094, -0.006954168, 0.020051014, 0.010792485, 0.0076286984, 0.021776715, 0.0020817993, 0.007902619, 0.00174539, 0.00343942, -0.030542186, 0.028542563, -0.008676446, -0.012436011, 0.00575234, -0.025419865, -0.016448952, -0.05807124, 0.009231136, -0.015545014, -0.019325122, 0.024173524, -0.009696801, -0.012031978, -0.021091914, 0.019064898, 0.03358271, 0.021009738, 0.0032750673, 0.0013738847, -0.010888358, -0.022064332, -0.0052387384, 0.020092102, 0.01791443, -0.028569955, -0.035527546, -0.003999246, -0.006659703, -0.0070740087, -0.014613682, -0.027255135, -0.02020167, -0.0027700255, -0.025570521, 0.02993956, -0.0012780124, -0.016243512, -0.026132058, -0.025995098, -0.036897153, -0.057852104, -0.018777281, -0.011908714, 0.019749701, 0.01372344, 0.031802222, 0.010450084, 0.019147074, 0.018352704, -0.019941445, 0.004351919, -0.00634127, 0.007163033, -0.011963498, 6.903664E-4, 0.008053276, 0.0051188977, -0.014284978, -0.016681787, -0.021804107, 0.0065056225, -6.8351836E-4, -0.030761322, -0.0010143635, -0.03870503, 0.0038177732, 0.009422881, -0.0084299175, -0.0028094018, -0.0405403, 0.0068172077, 0.03424012, -0.0183664, 0.021365834, 0.0065158946, 0.02654294, -0.023872212, 0.0068035116, 0.005194226, 0.0039547337, 0.012018282, -0.013565935, -0.017065275, -0.02751536, 0.03739021, 0.02359829, 0.004649808, -0.0039581577, -0.01753094, 0.021571275, 0.014819124, -0.021557579, -0.009628321, 0.022256076, 0.0039752778, -0.022913488, -0.012237418, -0.04338908, -0.0315283, 3.969714E-4, 0.030131305, -0.02096865, 0.026707293, -0.028460387, 0.016106552, 0.007320537, -0.0018969026, 0.029994344, -0.01133348, 0.022995664, 0.02647446, -0.005584563, -0.030103913, -0.042950805, -0.0071014008, -0.015257397, 0.039828107, 0.051880628, -0.008334045, -0.0088750385, 0.016380472, 0.003155227, -0.005950933, -0.025871834, -0.004129358, 0.016996795, 0.035089273, -0.022584783, -0.027802976, -0.009498209, 0.007272601, -0.027172958, -1.3706747E-4, -2.2384478E-4, -0.021119306, -0.0077314186, 0.026063578, -0.019722309, 0.026145754, 0.024488533, -0.010621285, 0.012600363, -0.007395866, 0.008566878, -0.017092668, -1.2626043E-4, 0.023338065, 0.011730664, 0.0065467106, 0.023516113, -0.016818747, -0.0021673995, -0.019393602, 0.007909467, 0.021927372, -0.0048312806, 0.004622416, -0.033801846, -0.018010302, 0.002297512, -0.0012805804, -0.0065090465, -0.017750077, 0.019530565, -0.030514793, 0.011258151, -0.002050983, -0.016585913, -0.005204498, -0.010621285, 0.012538731, -0.03791066, -0.016325688, -0.0025406168, -0.031035244, -0.032350063, -0.005173682, -0.0067692716, 0.0010280595, -0.008053276, -0.016818747, 4.8021766E-4, 0.025721177, -0.023694161, 0.007313689, 0.014709555, -0.013511151, -0.028049504, 0.02411874, -0.0032374032, -0.034979705, 0.027296223, -0.017613117, -0.03177483, -0.022146508, -0.015586102, -0.008710686, -0.0065638307, -0.0059338124, 0.033062257, 0.008580574, -0.001423533, -0.0013935728, -0.025981402, 0.015818935, -0.028652132, 0.010258339, 0.039773323, -0.0023659922, 0.007758811, -0.004389583, 0.015093044, 0.008683294, -0.0076286984, -0.02751536, 0.0013370767, 0.019530565, 0.026063578, 0.009778978, 0.0032408272, -0.033500534, -0.04656656, 0.009162656, 0.005512659, 0.033527926, 0.014613682, -0.0012463403, -0.00741641, 0.029473893, -0.04481347, -0.012942765, -0.007916315, -0.0019653828, -0.004324527, -0.023653073, 0.00824502, 0.058509514, 0.011648488, -0.047169186, -0.024228308, -0.0019294306, -0.03298008, 0.011614248, 0.00582082, 0.03700672, 0.007861531, 0.016106552, -0.0035472764, 0.026282715, 0.019242946, 0.018421184, 0.02176302, 0.010902054, 0.014736947, 0.016038071, 0.009929635, 0.0012394923, -0.04286863, -0.011059558, 0.021543883, 0.021927372, 0.011511528, 0.026433371, -0.027104478, -0.0024207763, 0.0010768517, -1.1951941E-4, -0.0012951324, 0.010888358, 0.01438085, -0.046073504, -0.016366776, 0.0032339792, 0.023940692, 0.025625305, -0.008847646, 0.0050880816, -0.0026655933, -0.019722309, -0.03166526, -0.018585537, 0.002319768, -0.008477854, 0.016750267, 0.0046772, 0.0016829019, 0.017243324, 0.010087139, -0.037746307, -0.01372344, 0.017037883, -0.02799472, -0.017243324, 0.04207426, -0.014764339, 0.009785826, -0.014326066, 0.021667147, 0.0049887854, -0.033281397, -0.009573537, -0.0336101, -0.02348872, 0.015914807, 0.01614764, -0.047634855, -0.025282905, 0.013476911, -0.007471194, 0.013292014, 0.021653451, -9.604353E-4, -0.047169186, 0.0047045923, -0.01822944, -0.03503449, -0.019078594, 0.009552993, -0.0052558584, -0.012346987, 0.01424389, 0.19809963, -0.004293711, -0.0039547337, 0.042019475, 0.0016717738, 0.012607211, 0.008347741, 0.0173255, 0.011032166, 0.00845731, 0.0032476753, 0.013559087, -0.022297164, -5.9877406E-4, 0.0038348932, 0.008258716, -0.031226989, -0.016106552, -0.017873341, 0.001159884, 0.0050298735, 0.0073821694, 0.0047422564, -0.0015365253, 0.013730288, 7.3744653E-4, -0.007108249, -0.0018078783, -0.008094364, 0.0024652886, -0.017832253, -0.012935917, 0.011888169, -0.01791443, 0.006036533, 0.026255323, 0.02785776, -0.01655852, -0.0062762136, -0.005875604, -0.002061255, 0.0013447807, 0.028022112, -0.0050743856, -0.031281773, 0.005848212, -0.003701357, -0.019010114, 0.0011872761, -0.03270616, -0.009155808, -0.00521477, 0.004057454, 0.014599986, -0.005694132, -0.019941445, -0.018380096, -0.014558898, 0.02224238, 0.026830558, -0.009422881, 0.03607539, -0.020530375, 0.004245775, -0.008717534, 0.019284034, -0.0068206317, -2.3518682E-4, 0.024817238, -0.024721365, -0.01881837, -0.0026433372, 0.006649431, 0.0061392533, -0.00886819, -0.011381416, 0.0016674937, 0.003463388, 0.005481843, 0.034157943, 0.01167588, -0.004331375, 0.014298674, -0.004098542, 0.010443236, -0.018352704, -0.0033041714, -0.0039239177, 0.022625871, -0.025803354, -0.019845573, -0.024830934, 0.008484702, -0.032678768, 0.0026433372, 0.031144813, 0.004125934, -0.0018883426, -0.008019036, 0.019736005, -0.011429352, 0.038431108, 0.010436388, -0.03100785, -0.025967706, -0.013011245, -0.0093817925, 0.0298026, 0.010970534, -0.019557957, -0.0022067756, -0.025926618, -0.0084162215, -0.010676069, 0.015380661, 0.0058927243, 0.0018763585, -0.018736193, 0.0067829676, -5.77802E-4, 0.012572971, -0.019051202, 0.018311616, -0.027912544, -0.006967864, -0.008621662, -0.017722685, 0.0076286984, 0.007299993, -0.037499778, 0.02242043, 0.016572217, 0.017818557, -0.010004963, 0.008320349, -0.009422881, 0.019105986, -0.031993967, 0.0039136456, 0.005471571, 0.003732173, -0.009210592, -4.1409142E-4, -0.013079725, 0.034842744, -0.017613117, -0.00741641, 0.0076423944, -0.0077519626, -0.013846704, 0.0021759595, -0.013175597, -0.00466008, -0.028378211, 0.012456555, 0.0013901488, -0.04445737, -0.039170697, 0.02439266, -0.011292391, -0.0207906, -0.01333995, 0.0076834825, 0.009539297, -0.01216209, -0.011867625, -0.17322761, 0.027090782, 0.0108267255, -0.00343086, 0.004091694, 1.8585964E-4, 0.029912168, 0.015202613, -0.017092668, -0.012490795, 8.093508E-4, 0.005461299, -0.050921906, -0.010032355, -0.008977759, -0.027597535, -0.013559087, 0.018051391, 0.0050675375, 0.014017904, -0.0024995287, -0.013531695, 0.023790034, -0.0020972074, -0.012285355, 0.008916127, -0.012045674, 0.012360683, 0.0015690534, -0.016503736, 0.0052969465, -0.033171825, 0.020996042, 0.0011855641, 0.04248514, -8.816831E-4, 0.002937802, 0.0032425392, -0.004560784, 0.019462083, -0.010977382, 0.028159074, 0.009998115, 0.011045862, 0.013381039, 0.024666581, -0.008409373, -0.007539674, -0.007135641, -0.0053072185, 0.02792624, -0.002932666, 0.005968053, -0.017859645, 0.007252057, -0.006026261, 0.016832443, 0.014106929, 0.038431108, -4.5154156E-4, -0.006077621, -0.01809248, 0.008964063, -0.0162846, -0.016585913, -0.0218315, 0.0030679146, 0.030049128, -0.014682163, -0.001170156, 0.0056188037, 0.012579819, 0.009751586, 0.012326443, 0.009813218, 0.014038448, -0.027693408, 0.024105044, 0.019119682, -0.011463592, -0.024680277, 0.0620157, -0.018927937, 0.0029942985, 0.010888358, -0.019325122, -0.0026501853, -0.0023488721, -0.01864032, 0.014764339, -0.011415656, -0.009402337, 0.002006471, -0.0018438303, -0.0028111138, 0.01746246, 6.899384E-4, -0.0050059054, 0.003769837, 0.0098816985, 0.004077998, -0.0053688507, -0.017448764, -0.0041738707, 0.0151478285, 0.008977759, 0.028022112, 0.031583086, 0.016900923, -0.018325312, -0.007002104, 0.01979079, 0.026173146, 0.034322295, -0.0032699313, 0.007909467, -0.015257397, -0.043663, 0.008840798, -0.006053653, 0.019571653, -0.012203178, 0.007457498, -0.0030610666, -0.00866275, -0.001145332, -0.07730049, -0.021023434, 0.024132436, 0.0141891055, -0.026803166, 0.017215932, -0.019188162, 0.055688128, 1.432735E-4, 0.025556825, -0.012121002, 0.0027409215, -0.021598667, 0.022639567, 0.010956838, -0.01136772, 0.014148017, -0.018982721, -0.007902619, 0.009511905, 0.006639159, 1.8115163E-4, -0.025639001, -6.912224E-5, -0.017503548, -0.009347552, -0.027775584, 0.011463592, 0.051880628, 0.0050059054, 0.012942765, -0.0021965036, -0.0010083715, -0.014860212, -0.030679146, 0.015887415, -0.009279072, 0.016722875, 0.015996983, -0.051058866, 0.0033075954, -0.014093233, 0.030953066, -0.032651376, -0.017448764, -0.01746246, -0.0010854118, 0.013031789, 0.005420211, -0.021160394, 0.009532449, -0.01147044, 0.0026382012, -0.021954764, 0.024406357, -0.0010751397, -0.020009926, -0.00575234, -0.0068274797, -0.011532072, 0.0051634097, 0.018996418, 0.0056119557, 0.024009172, -0.003509612, -0.0039650057, -0.0113197835, 0.01569567, 0.012319595, -0.019749701, -0.0010742837, 0.026707293, -0.008477854, 0.0064987745, -0.034623608, 0.001452637, -0.029583463, -0.0030370986, 0.004355343, -0.01888685, -0.018517056, -0.034705784, 0.005437331, -0.021571275, 7.139065E-4, 0.029583463, 0.01202513, -0.04040334, 0.004406703, -0.01843488, 0.026529243, 0.029912168, 0.053880252, 0.0116074, -0.019516869, -0.0030764746, 0.022338253, 0.017558333, 0.017202236, -8.4787095E-4, -0.02792624, -0.02720035, -0.09242093, 0.03530841, 0.028432995, -0.015380661, 0.02543356, -0.002924106, 0.0021571275, -0.00845731, 0.005985173, 0.011388264, -0.010785637, 0.010710309, -0.016544824, 0.011929258, 0.0061529493, -0.013887792, 0.008566878, -0.012552427, 0.025652697, 0.03046001, -0.0068240557, 0.014613682, -0.01396312, 0.0050024814, -0.04837444, 0.024474837, 0.004598448, 0.04396431, 0.017078971, 0.01816096, 0.015928503, -0.013600175, 0.006111861, 0.04407388, -0.011997738, -0.021886284, 4.34154E-5, 0.0062008854, -0.013908336, -0.044293016, -0.024803542, -0.020366022, 0.010155619, -0.0031518028, -0.03319922, -0.014819124, 0.011874473, -0.013346799, 0.015599798, 0.012990701, 0.02699491, 0.011196519, 0.005204498, -0.047580067, 0.004269743, -0.004047182, 0.016531128, -0.016695483, 0.00879971, -0.0033503957, 0.02328328, 7.139065E-4, 0.026638811, -0.017928125, 0.013168749, -0.014408242, -0.030377833, -0.008471006, -0.004146478, -0.008135452, -0.011853929, -0.017654205, 0.02661142, 0.0039307657, 0.0035370043, -0.011189671, -4.5410957E-4, -0.024529621, -0.008299805, 0.021406922, 0.0151478285, -0.0122785065, -0.029528677, -9.724194E-4, 0.003504476, -0.004310831, -0.014394546, 0.010059747, -0.010730853, 0.0039718538, -0.023064144, 0.009196896, -0.019736005, -0.0075944583, -0.012148394, 0.03489753, -0.012798957, -0.012299051, 0.0023779762, 0.03163787, 0.015380661, 0.008792862, -0.013942576, -0.002600537, 0.0025817049, 0.011107494, -0.022612175, -0.016544824, -0.01382616, 0.007957404, -0.004351919, -0.037034113, -2.6386292E-4, 0.018777281, -0.035637114, 0.025159638, 0.014093233, 0.002920682, -0.019763397, 0.028980836, -0.00285049, 0.021256266, 0.012620908, -0.028405603, 0.011580008, 0.024406357, 0.0013276606, -0.020105798, 0.018612929, -0.018037695, 0.022461519, 0.015640887, -0.009155808, -0.02335176, -0.022927184, -0.021941068, 1.5151252E-4, 0.01510674, 0.012073066, 0.088092975, 0.018393792, 0.0015074213, 0.028679524, -0.01496978, 0.009532449, 0.022981968, -0.01712006, -0.009950179, -0.03413055, -0.0031894671, 0.011648488, 0.0048073125, 0.0093817925, -0.04095118, -0.015654583, 0.010874662, 0.0065261666, -0.01330571, 0.005492115, 0.024721365, -0.013285166, 0.01607916, 0.009826914, -0.024995286, -0.004519696, 0.011415656, 0.01916077, -0.03046001, -0.05311327, 0.021352138, -0.010908902, -0.021995852, -0.022680655, -0.00800534, -0.020283846, -0.018243136, 0.005998869, 0.011107494, 0.014914996, -0.009237984, 0.005766036, -0.006978136, -0.03073393, 0.046511777, -0.028597347, -0.025008982, -0.016092855, -0.050538417 ], - "id" : "819f6a5a-9ba8-488f-9dcf-60f75ba896a1", - "metadata" : { - "name" : "Cyclone Xpress Cargo Trunk Bag" - }, - "text" : "price: 54.99\nname: Cyclone Xpress Cargo Trunk Bag\nshortDescription: The Cyclone Xpress Cargo Trunk Bag is a versatile biking accessory that offers convenient and secure storage. It features multiple pockets for organization, reflective materials for enhanced visibility, and a built-in rain cover.\ndescription: ## Overview\nEnhance your biking experience with the Cyclone Xpress Cargo Trunk Bag, a versatile accessory that provides convenient and secure storage on your bike. Designed for easy installation and removal without the need for tools, this trunk bag offers multiple pockets for organization, a durable design with reflective materials, and a built-in rain cover to protect your belongings in any weather condition.\n\n## Product Details\n- Compatible with Cyclone MIK racks for secure and integrated mounting\n- Stylish black reflective materials on the front and rear for enhanced visibility\n- Stay organized with an internal mesh pocket and two side pockets, each featuring a smaller internal pocket\n- Convenient zippered pocket with a soft lining for secure phone storage, accessible from the top of the bag\n- Integrated rain cover stowed in a rear pocket ensures protection against rain\n- Light loop for easy mounting of rear lights\n- Adjustable carrying strap for convenient off-bike use\n\n## Features\nFunction, Performance, and Style\nThe Cyclone Xpress Cargo Trunk Bag combines functionality, performance, and style. Crafted with high-quality fabrics and thoughtful finishing materials, this bag delivers a perfect blend of great looks and great functionality.\n\nMIK: Mounting is Key\nThe Cyclone MIK system features a unique keyed installation system that securely attaches the bag to the rack while allowing for easy removal when needed.\n\nHow MIK works\nSimply slide the Cyclone MIK bag onto the Cyclone MIK rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press. The bag can then be easily detached.\n\nBetter Together\nOur bags and racks are designed as one complete system, ensuring easy installation and removal while keeping your precious cargo secure.\n\nIntegrated Light Mounting\nFor improved visibility during all hours, the Cyclone Xpress Cargo Trunk Bag provides a dedicated spot for mounting your light on both racks and trunk bags.\n\n## Specs\n- Cargo capacity: 15L\n- Bag type: Trunk bags\n- Dimensions: 37cm (l) x 21cm (w) x 20cm (h)\n- Attachment: Cyclone MIK\n- Fiber content: 40% Poly 600 PU Coating / 25% Poly 840 PU Coating / 15% 3M Silver Reflective Mesh / 10% Nylon Mesh / 10% Poly Super Nylex Mesh\n- Material: Woven\n- Weight: 880g\ntags: [trunkbag]" - }, - "5612bb9f-8a0c-4972-9c46-738c297252af" : { - "embedding" : [ 0.01819255, -0.0025670573, -0.008960001, -0.026028292, -0.01208067, 0.026069174, -0.0035465253, -0.042163108, -0.0027833919, -0.032187868, -9.84578E-4, 0.022798603, -0.05260168, -0.023684382, -0.008067408, -0.0025926086, 0.009702693, -0.013968063, 0.026409859, -0.0022417037, 0.0051545557, 0.0259329, -0.0025874984, 0.0021326847, -7.9677574E-4, -0.008019712, 0.035921767, -0.008380838, 0.011113127, -0.004098434, 0.025919273, 0.020972535, -0.019814208, -0.018233432, -0.012230572, 0.009471028, 0.028672004, 0.014540412, 0.053310305, -0.009096275, 0.021149691, -0.0072565787, -0.013211743, -6.8456284E-5, -0.01970519, 0.006139134, 0.010976853, 0.017497553, 0.011201705, 0.01928274, -0.019187348, 0.029435137, 0.0072429515, 0.01907833, 0.0048036505, -0.01642099, 0.027050346, 0.001928274, 0.03742078, 0.017211378, -0.0023387987, 0.0113720475, -0.03196983, 0.003900837, -0.027063973, -0.026859563, -0.018001767, 0.013920367, -0.0040166695, -0.002376274, 0.017511182, 0.021544885, 0.027554559, -0.009873035, 0.0030320915, -0.011821751, 0.011494693, -0.0012332777, 0.015780503, -0.012571257, 0.011603712, 0.004006449, -0.009545978, 0.012237386, 0.022580566, -0.009873035, 0.0052703884, -0.011917142, -0.026409859, -0.019023819, 0.011351606, 0.0045072553, 0.0013065248, 0.028971806, 0.013579682, 0.006401461, -0.02303027, 0.0025721677, 7.1075297E-4, -0.005655362, -4.4714834E-4, 0.002408639, -0.013681888, -0.023043897, -0.023452718, -0.016448244, -0.010302298, 7.580229E-4, 0.024256732, 0.013525173, -0.0040575517, 0.031015912, -0.001730677, -0.025973782, 0.024665555, -0.015044626, 0.028617494, -3.2003046E-4, 0.029653175, -0.020291166, 0.021299591, 0.029789448, -0.009600488, -0.013620565, -0.012714344, 0.0070385407, 0.013450222, 0.013715956, 0.0053623733, -0.01294601, -0.005788229, 0.0024597417, 0.003986008, 0.009362008, -0.027091227, 0.007999271, -0.0088101, 0.003207544, -0.03196983, -0.027540931, 0.0110995, -0.001143848, -0.017279515, 0.005631514, -0.0027203653, -5.106008E-4, -0.0047287, 0.0176202, 0.0067762136, -0.028753769, 0.009518724, -0.019596169, 0.034068447, 0.010792883, 0.011256214, -0.0063401377, -0.0032518331, 0.017783727, -0.019882344, -0.0139544355, 0.0025363958, 0.0041767913, -0.0029264796, -0.023139289, 0.025496824, 0.0011259621, 0.016230207, -0.012550815, 0.007815301, -0.028181419, -0.0022979167, 0.01969156, -0.03483158, 0.033768643, -0.015426192, 0.0064219018, 0.024542907, -0.010424945, -0.01673442, -0.0025074375, 0.031833556, -0.0021037264, 0.008960001, -3.409506E-5, -0.016557265, 0.009368822, 0.017797356, -0.014363256, 0.027622696, 9.990572E-4, 0.005515681, 5.727757E-4, -0.0042755897, 0.008121917, -0.613123, -0.029244354, -0.025387805, -0.004473187, -0.014036199, 0.0166254, -0.006922708, 0.021435866, -0.016448244, -0.0058359248, -0.024283988, 0.016339226, -0.013620565, -0.013695515, -0.011964838, -0.031670026, 0.014336002, -0.018805781, 0.03014376, -9.2304195E-5, -0.019419014, -0.0067182975, -0.020590968, 0.0012843803, 0.0017920003, 0.009137157, 0.015003744, -0.012414541, -0.017701965, 0.0062788143, -0.02416134, 0.028726513, -0.01322537, -0.013157234, 0.047995627, -0.04717798, 0.0042176736, 0.016380109, 0.011528762, 0.026927698, -0.029380627, -0.0047423276, -0.016380109, -0.014363256, 0.010656609, -0.003982601, 0.036494117, -0.009436959, -0.0067762136, -0.021354102, 0.021381356, -0.0018345858, 0.027936125, 0.003287605, 0.008816914, -0.015862267, 0.035213146, -0.01481296, -0.010779256, 0.009471028, -8.023119E-4, -0.0058154836, -0.010281857, -0.011194891, -0.0107111195, 0.024488399, -0.053283047, -0.023847912, 0.026423486, -0.026641523, -0.00210543, 0.022335272, -0.0053828144, 0.03633059, 0.017211378, 0.015467074, 0.03949214, -7.6739176E-4, 0.0019742665, 0.025714863, 0.022471547, 0.020454694, -0.0068784193, -0.031506497, 0.020509204, 0.016816184, -0.003948533, -0.006404868, 0.027554559, 0.0059279096, 0.025333297, 0.012380473, -0.009123529, -0.024638299, -0.01839696, 0.034422755, 0.0024222664, 0.024243105, 0.019773325, -0.037475288, -0.014826587, 0.011017735, 0.007801674, 0.02395693, 0.008646571, 0.0066740084, 0.0011847302, -0.037856854, 0.005515681, -0.018955683, -0.0113720475, -0.0015075287, -0.02083626, 0.0039314986, -0.013000519, -0.021899197, 0.016284717, -0.015998542, 0.002444411, -0.040664095, -0.011923956, -0.0045651714, 0.008251377, 0.0022008216, -0.012591697, 0.0030474225, 0.014376884, 0.0071543735, -0.017606573, -0.006905674, 0.013286694, 0.010963226, 0.06126869, -0.0045651714, 0.026791425, 0.0044118636, 0.017906375, 0.004510662, 0.0017417492, -0.004691225, -0.03480432, 0.01642099, -0.0035805935, -0.024924474, 0.010077446, -0.019827835, -0.008408092, 0.0070044724, -0.0152762905, -7.34175E-4, -0.006588837, -0.016380109, -0.029326119, 0.0094505865, -0.016870694, -0.014308747, 7.63559E-4, -0.018478725, -0.010363621, -0.025346924, 0.024502026, 0.008040153, -0.021599393, 0.0021122436, -0.013273066, -4.612016E-4, 0.011528762, 0.009007697, -0.032215122, -0.037911367, 0.0053794077, -0.006990845, -0.0037543427, 0.021381356, -0.0066297194, 0.009491469, -0.014213355, 0.0024716656, 0.02552408, -0.0010680457, 0.012666648, 0.026532505, -0.038947046, 0.015330801, 0.018669508, 0.004694632, 0.027840734, 0.003440913, -0.003025278, -0.0043232855, -0.003396624, 0.020045873, -0.0026692627, 0.002134388, 0.0012852321, -2.599848E-4, 0.0332508, 0.012455423, 0.020713614, 0.0047184797, 0.02781348, -0.0028430119, -0.008176426, -0.016666284, 0.02646437, -0.037066467, 0.009668625, -0.0029639548, 0.021708414, 0.01335483, 0.02781348, -0.024134086, -0.033141784, 0.0068920464, 0.011903515, 0.013552427, -0.008871423, 0.033550605, -0.008360396, -0.014267865, 0.022471547, -0.0014232093, 0.03128846, -0.009784457, -0.0040848064, 0.017238634, 0.011460625, 0.024706436, 0.0051988447, -0.01283699, 0.011808123, 0.02027754, 0.0041256887, -0.0060675903, 0.015467074, 0.0018550268, 0.00829226, -0.036630392, 0.035431184, -0.0017902968, 0.028263181, 0.06464828, 0.021531258, -0.0083127, 0.02177655, -9.172929E-4, 0.020413812, 0.023125662, 0.022308018, 0.004316472, -0.008408092, 0.004054145, 0.014213355, -0.015344428, -0.010009309, -0.020291166, -0.0017357873, 0.023152916, -0.013395713, -0.008925932, 0.003166662, 0.01839696, 0.023670755, 0.010799697, 6.840305E-5, -0.018724017, -0.020032246, -0.00842172, 0.0090894615, -0.045024857, -0.015657857, -0.021136064, -0.0041495366, 0.00797883, 0.009130343, -3.8327E-4, -6.989355E-5, 0.0023064336, 0.0152762905, 0.023289189, -0.020304793, -0.038865283, -0.008244564, 0.012877872, -0.008442161, -0.008925932, -0.007270206, 0.0023830878, 0.017906375, 0.057616554, -0.0018465098, 0.0142542375, 0.0013789203, -3.6703426E-5, -0.0129187545, 0.0024137492, 0.038429204, -0.0064559705, 0.0044834074, 2.2485174E-4, -0.006442343, 0.010295484, -0.003069567, -0.018492352, 0.009947986, -0.0083127, 0.006135727, -0.00836721, 0.027827106, 2.2591637E-4, -0.019269112, -0.02489722, 3.76616E-5, -0.022130862, 0.004204046, -0.0038838028, -0.003986008, -0.023043897, 0.03030729, -0.007651773, 0.010220533, -0.014622177, -0.009552792, -0.016570892, 0.042844478, 0.027309265, -0.005014875, 0.02297576, -0.009464214, -0.0010424944, -0.040091746, -0.009866222, -9.59772E-5, 0.03769333, -0.009014511, 0.0030457191, -0.023834284, -0.024433888, -0.009137157, 0.0035771867, 0.009280245, -0.018860292, 0.019228231, -0.029489646, -0.014199728, -0.009143971, 0.018328823, -0.0035976279, 0.016775303, 0.012516747, 0.02166753, 0.005369187, 0.0070521683, 0.0019214603, -8.7726244E-4, -0.017115986, 0.039900962, -0.0072020693, -0.03259669, 0.0014215059, -0.022934878, 0.009573233, 0.019473523, 0.022335272, 0.0132185565, 0.03856548, 0.0077471645, 0.017756473, 0.003836107, -0.01117445, -0.01265302, 0.00331997, 0.024256732, -0.019623425, 0.033087272, -0.0033233769, -0.02666878, -0.006248153, -0.011644594, -7.7974156E-4, 0.0026249737, -0.008844168, -0.017865492, -0.017851865, 0.0099002905, -0.0177701, 0.018178923, -0.011351606, -0.017729219, -0.013055028, -0.0044016433, 0.0038327002, -0.0016957569, -0.02452928, -0.03030729, 0.011317537, -0.021285964, 0.012121553, 0.0036010346, 0.0043914225, 0.008190054, -0.013818162, -7.2906475E-4, 0.019786952, -0.028126908, 0.024665555, 0.0042619626, -0.022635074, 0.0121079255, -0.0012724564, 0.028944552, 0.013000519, 0.009505096, 0.0038395138, 0.016748048, -0.019977735, 0.019718817, -0.012155621, -0.01601217, 0.0014956048, 0.019241858, 0.0016710572, -0.0066263126, -0.006401461, 0.0075700087, -0.050857376, 6.817948E-4, 0.0027697645, 0.003049126, -0.009552792, -0.007031727, -0.012775667, 0.011215332, -0.030252779, 0.0051170806, -0.0060607763, -0.020958908, 0.012455423, -0.032460414, 0.0054407306, 0.0021088368, -0.004643529, -0.008121917, 0.012162435, 0.0039144643, -0.043307807, 0.045569953, 0.010765629, -0.024215851, 0.037339017, 0.011440184, 0.013572869, -0.009341568, 0.03175179, 0.03374139, 0.020550085, 0.0049876203, -0.003452837, -0.03537667, -0.011494693, -0.0071543735, -0.0020969128, 3.0086696E-4, -0.018274315, -2.4401525E-4, 0.0042824037, 0.0023387987, 0.001326966, -0.008162799, -0.0152899185, -0.02027754, -0.009028138, -0.01584864, 0.02687319, -0.0058836206, -0.017674709, -0.01449953, -0.036248825, -0.012850618, -0.029489646, -0.007188442, -0.026832307, 0.013477477, 0.023343699, 0.02646437, -0.0048751943, -0.0062515596, -0.022716839, -0.004452746, 0.0012852321, -0.02432487, 0.009689066, -0.027268384, 0.041045662, 0.042326637, -0.0037952247, -0.01907833, -0.016802557, -0.028181419, 0.031506497, -0.0015160458, -0.010022936, -0.009723134, -0.02416134, 0.007386039, -0.033795897, 0.011665036, -0.002403529, -0.050257772, -0.018001767, 0.022907622, 0.01099048, 0.019296367, 0.015398937, -0.0065479553, -0.023302816, 0.052002076, 0.006837537, 0.009348381, 0.016284717, -0.02609643, -0.020073127, -0.030607091, 0.016257461, -0.017892748, 0.018247059, 4.9995445E-4, 0.009518724, -0.0012750116, 0.00868064, -0.0017834831, -0.007869811, 0.012639393, -0.0096754385, -0.008912305, -0.009961613, -0.022376155, -0.044452507, -0.019568915, -0.0032671639, -0.006946556, 0.01719775, -0.02208998, 0.00938245, 0.013095911, 0.009798084, 0.02099979, 0.005389628, 0.017075105, 0.014090709, 0.0039349054, -0.01725226, -0.028154163, -0.012537188, 0.0010118329, 0.02281223, 0.030688856, -0.025183395, -0.013259439, 0.018942056, -0.016352853, 0.0013031181, -0.009545978, 0.011889887, 0.036466863, 0.06034203, 0.0064593772, -0.01569874, -0.008735149, 0.008162799, -0.0016940534, 0.016693538, 0.004991027, 0.0024393008, -0.004088213, 0.009423332, -0.03134297, 0.023738893, 1.7406847E-4, -0.01590315, -0.0016267683, -0.0057303123, -5.203955E-4, -0.006449157, -2.3698862E-4, 0.040309783, 0.006588837, 0.020740869, 0.026437113, 0.0040200767, -0.023275562, -0.0036078484, 0.014949234, 0.027145738, -0.016652657, 0.0012332777, -0.0045038485, 0.0056894305, -0.011923956, -0.018315196, -0.009205294, 0.003316563, -0.025864763, -0.001073156, -0.006152761, -0.0035635594, -0.022621447, -0.005256761, 0.009171225, -0.037911367, -0.009511909, 0.0039451257, 0.013348017, -0.036248825, -0.005542936, -0.041917816, 0.018942056, -0.0035669662, 0.00357378, 7.1628904E-4, -0.014853843, 0.021544885, -0.030061996, 0.0019197569, 0.020468323, 0.02567398, -0.009402891, 0.007672214, -0.0053112707, -0.012544001, 0.0200595, 0.0018294755, -0.022825858, -0.028644748, -0.02687319, -0.026341721, -0.0041052476, -0.013831789, 0.001264791, 0.005174997, -2.2016733E-4, -0.010070632, 0.015112762, 0.01970519, 0.0035669662, 0.014949234, 0.011494693, -0.032296885, 0.029244354, -0.01725226, -6.158936E-5, -3.3898102E-4, -0.03014376, -0.012353218, 0.0044118636, -0.008258191, -0.015167272, -0.011092686, -0.020413812, -0.004251742, -0.030852385, 0.0073587843, -0.007999271, 0.015589721, 0.007386039, -0.011017735, -0.00555997, 0.030061996, -0.009205294, -0.001659985, -0.004970586, -0.010479454, -0.018587744, -0.017497553, -0.005784822, 0.030906893, 7.186313E-5, -0.029598664, -0.0032007305, 0.006735332, -0.053310305, -0.0014717568, -0.017865492, 0.012980077, 0.0059517575, -0.0138794845, 0.0076313317, 0.009137157, 0.0054884264, 0.035730984, 0.0013823272, 0.011712732, 8.738556E-4, 0.009150784, 0.003372776, 0.008823727, -0.06562945, -0.0068716053, 0.025006238, 0.013933994, 0.012325964, -0.005457765, -0.027827106, 0.0071952557, 0.014635804, -0.022457918, 0.005740533, 0.01911921, 0.00689886, -0.055272646, -0.008646571, -0.015208154, -8.7470736E-4, -0.001091042, -0.009532351, -0.015944032, -0.0036691716, 0.010765629, -0.01091553, 0.001659985, -0.015317173, -0.017102359, 0.024856338, 0.0046741907, -0.009941172, 0.029489646, 0.012612139, -0.008721522, -0.0120329745, 0.016448244, -0.004973993, -0.015344428, 0.010050192, -0.029462392, -0.0088101, -0.017661082, 0.010574846, 0.0067217043, 0.008149172, -0.004994434, 0.0056689894, -0.025115257, 0.026382605, 0.022130862, -0.032487668, -0.027009463, 0.015317173, 0.014744823, 0.01276204, 0.0030968217, 0.005699651, -0.014513157, 0.0067148907, -0.015521584, -0.031043168, -0.022321645, 0.01616207, 0.0011566237, 0.010315925, -0.008966815, 0.17606573, -0.007011286, 5.8853236E-4, 0.037720583, 0.039628416, 0.0106974915, 0.021599393, -0.0020986162, -3.6730044E-4, -0.012911941, 0.014731196, 0.0142542375, -0.012557629, -0.008796472, 0.026573388, -0.0010953005, -0.04382565, -0.016530009, 0.009995682, 0.010097887, -9.5987844E-4, 0.004670784, -0.0047695823, -0.027990635, 0.014908352, 0.0015313766, -0.012673462, -2.665856E-4, 0.025592215, 0.003812259, -0.009123529, 0.005209065, 0.010833765, 0.004374388, 6.400609E-4, -0.009171225, 0.0029878027, 5.9662363E-4, 0.012353218, 0.03872901, 0.012796108, 0.004009856, -0.008782845, -0.024270361, -0.0046196813, -0.008898678, -0.025837509, 0.007692655, -0.0067319246, -0.017334025, -0.025496824, 0.017170496, 0.008190054, 0.025864763, -0.007992458, -0.012796108, 0.011630967, 0.010970039, 0.015371682, -0.005829111, -0.03611255, 0.03941038, -0.0042210803, 0.028644748, -0.02510163, 0.0029946163, -0.010588473, -0.028672004, 0.018833036, 0.024938103, -0.019664306, -0.022076352, -0.007972016, -0.005232913, -0.014635804, -0.03712098, 0.018069902, 0.013491104, 0.011562831, 0.014744823, 0.02536055, -0.014404139, 0.006176609, -0.009239363, 0.008932746, -0.034450013, 0.028208673, -0.013416153, 0.0023200612, 0.00836721, -0.004425491, 0.005672396, -7.1628904E-4, -0.0020236657, 0.012285082, -0.0042994376, -0.024093205, 0.013232185, -0.028181419, 0.009327941, -0.035485692, 0.04745053, -0.012407728, 0.024815455, -0.024706436, -0.00421086, -0.020672733, 0.026641523, 0.009280245, -0.034695305, 0.023670755, -0.010942784, 6.5581757E-4, -0.012911941, 0.013184489, -0.0104113165, -0.007447362, -0.0065615824, 0.013497918, -0.011658222, 0.028317692, -0.018628625, 0.0176202, -0.027677204, 0.030607091, -0.014417766, -0.023916049, 0.014908352, -0.024474772, -0.029080825, 0.0212042, 0.026259957, 0.034368247, -0.019241858, -0.025047122, -0.012911941, 0.0024869966, -0.007161187, 0.009723134, 0.011624154, 7.882587E-4, 0.025646726, 0.011630967, 0.025823882, 0.0321061, -0.044152703, 0.033332568, -0.00517159, -0.013790906, -0.011453811, -0.022716839, 0.015603348, 0.013075469, -0.014308747, 0.015358055, 0.0050523505, -0.017429417, -0.017838238, -0.014186101, -0.010908716, -0.028862787, -0.018996565, -0.005542936, 0.001326966, -0.024229478, -0.0088646095, -0.17257711, -2.544487E-4, 0.024611045, -0.0063844267, 0.016025797, 0.015998542, 0.021531258, -0.0077948603, -0.017020594, 0.010166024, 0.017061478, -0.0042824037, -0.05712597, -0.015984915, 0.026014665, -0.024283988, -0.023112033, 0.005185217, 0.037502546, 0.019500777, -0.0028191637, -0.014717569, 0.012094298, -0.012387287, 0.01569874, 0.017034223, 1.4079849E-5, 0.025769372, 0.014131591, -0.009709507, 0.011126754, -0.03709372, 0.0189148, -0.012537188, 0.011515135, -0.02624633, -0.007474617, 0.028181419, 0.0020747683, 0.03425923, -0.015208154, 0.014758451, 0.023261935, -0.0044595595, 0.031506497, 0.015180899, -0.022716839, 0.0038463275, -0.016243834, 0.0040677725, 0.04131821, 0.015807759, 0.02343909, -0.015780503, 0.045651715, -0.009143971, 0.0028055364, 0.01595766, 0.024461145, -0.007208883, -0.016816184, -0.028154163, -0.0072020693, -0.0052226926, -2.3688215E-5, -0.017211378, -0.0075427536, 0.012530374, -0.02859024, -0.010533963, -0.008094663, 0.006142541, 0.02140861, 0.009307499, 0.032732964, 0.004602647, -0.024352124, 5.3231946E-5, 0.018369706, -0.0012077264, -0.024624672, 0.033877663, -0.029462392, 0.028072398, -0.030743364, -0.007706282, -0.008782845, -0.00363851, -0.008271818, 0.010792883, -0.023411836, -0.015330801, -0.009259803, 0.0112970965, 5.910875E-4, 0.013613751, 9.513613E-4, 0.014008945, -0.018614998, -0.010234161, 0.0065343278, -0.004953552, -0.047287002, -0.00836721, 0.04497035, 0.018833036, 0.0053283046, 0.02089077, 0.01896931, -0.00396216, -0.014826587, 0.019882344, 0.0046299016, 0.028862787, -0.0029298863, 0.002396715, -0.027336521, -0.021599393, 0.018178923, 0.028971806, 0.023466345, -0.019296367, -0.0117468, 0.012659835, -0.01455404, -0.026178194, -0.073206276, -0.021490375, 0.01907833, 0.017892748, -0.028862787, -0.017810984, -0.013027773, 0.030797875, -0.00771991, 0.044288978, -0.0044016433, -0.014008945, 0.011181263, 0.013014146, 0.03622157, 0.012741598, 0.009709507, -0.007965202, -0.037448034, 0.0199096, -0.027172992, -0.015398937, -0.017606573, -0.009096275, -0.029462392, -6.932929E-4, -0.014390511, 0.025769372, 0.014090709, -0.0055804113, 0.006135727, -0.024215851, 0.0068443506, 8.840762E-4, -0.009695879, -0.01678893, -0.013845416, -0.030498073, 0.010867834, -0.050584827, -0.0010433461, -0.001940198, 0.0035533388, -0.03243316, -0.010043378, -0.020127637, 0.014731196, 0.02063185, 0.0028668598, -0.010302298, -0.012877872, -0.01678893, -0.012114739, -0.030252779, 0.015030998, -0.008081035, -0.011160823, 0.014445021, -0.027309265, 0.006966997, 0.00491267, 0.01294601, -0.012475865, 0.013109538, 0.014976488, -0.012516747, 2.3954376E-4, 0.0064934455, 0.03450452, -0.013457036, -0.010070632, 0.0067762136, 0.0033710727, 0.03529491, -0.025210649, 0.021940079, -0.010438572, -0.0012222055, 0.027309265, 0.009205294, -0.03382315, -0.013164047, 0.010268229, -0.04818641, 0.0011932473, 0.010717933, 0.014717569, 0.0051681832, 4.4331566E-4, -0.05821616, 0.04693269, 0.014472276, 0.050339535, -0.008619317, -0.0083127, -0.025278786, -0.006203864, 0.009123529, -0.018424215, 0.012305522, -0.028890042, -0.00956642, -0.086615615, 0.02801789, -0.007229324, -0.023629874, -0.028672004, 0.022185372, 0.013484291, 0.018247059, 0.0053725936, 0.0012417948, -0.0012136884, -0.0046094605, -0.009150784, -0.012591697, -0.012673462, 0.011235774, 0.028126908, -0.01642099, 0.010888275, 0.0024904034, 0.0043573542, -0.01218969, -0.02068636, 0.033904918, -0.02624633, 0.002090099, -0.015480702, 0.018356077, 0.0011540686, -0.0053351186, 0.034340993, -0.020672733, -0.0059210956, 0.05437324, 0.0010305705, 0.003105339, -0.019405385, 0.0027885023, -0.0055327155, -0.02292125, -0.030116506, -0.013811348, -0.015235409, -0.022948505, -0.02526516, 0.017715592, 0.01257807, 0.005801856, -0.020863516, 0.02853573, 0.0013729583, 6.873309E-4, 0.012135181, -0.050966393, 0.017374907, -0.0056383274, -0.0041256887, 1.56635E-5, 0.0023609432, 0.0129187545, 0.042054087, 0.0189148, -8.4660086E-4, -0.016325599, -0.012782481, -0.011228959, -0.033060018, 9.402891E-4, 0.008360396, -0.02240341, -0.012952823, -0.0077812327, 0.009436959, 0.019936854, -0.027840734, -0.0054611717, -0.0019453082, 0.018178923, -0.03654863, 0.017920002, 0.0068068756, 0.01699334, -0.0011830267, 0.013463849, 0.016570892, -0.012939195, -0.01034318, 0.0098866625, -0.004994434, 0.010063819, -0.032814726, 0.02146312, -0.018001767, -0.0020560306, 0.011889887, -0.002444411, 7.490799E-4, -0.016325599, -0.005869993, -5.6511036E-4, 0.0075904494, 0.010622541, 0.013273066, -0.011079058, -0.0073451567, 0.0073110885, -0.01871039, -0.011215332, -0.0043471335, 0.012012534, 0.0025874984, -0.0106021, 0.013968063, 0.01896931, -0.014635804, 0.014908352, -0.009471028, -2.1718635E-4, -0.03998273, 0.035621967, 0.009028138, 0.025810255, 0.0212042, 0.011569644, 0.019623425, -0.009873035, 0.009743575, -0.0028293843, 0.018206177, -0.0042176736, 0.0032501298, 5.323195E-4, -0.0120329745, -0.017579317, -0.014267865, 0.0051443353, -0.011154009, -0.007862997, 0.018233432, 0.10967314, 0.029326119, -0.0062140846, -0.004732107, -0.01725226, 0.016639028, 0.00919848, -0.026232703, 0.0020628443, -0.027118482, 0.010901903, 0.0017161979, -0.007808488, 0.010874648, -0.041727033, 0.039737433, 0.015153645, 0.015126389, -0.008026525, -0.007944762, 0.025973782, -0.017810984, 0.009171225, -0.007972016, -0.018846665, 0.0018822816, 0.04527015, 0.03643961, -0.015358055, -0.02531967, 0.0034392097, 0.014935606, -0.03202434, -0.026205448, 0.0017732626, -0.017102359, -0.0070862365, -0.006745552, 0.036412355, -0.0077948603, 0.014513157, 0.027431913, -0.0024018253, -0.020563714, 0.013940807, -0.014308747, -0.011944397, -0.03611255, -0.043852903 ], - "id" : "5612bb9f-8a0c-4972-9c46-738c297252af", - "metadata" : { - "name" : "Voltex+ Ultra Lowstep" - }, - "text" : "price: 2999.99\nname: Voltex+ Ultra Lowstep\nshortDescription: Voltex+ Ultra Lowstep is a high-performance electric hybrid bike designed for riders who seek speed, comfort, and reliability during their everyday rides. Equipped with a powerful and efficient Voltex Drive Pro motor and a fully-integrated 600Wh battery, this e-bike allows you to cover longer distances on a single charge. The Voltex+ Ultra Lowstep comes with premium components that prioritize comfort and safety, such as a suspension seatpost, wide and stable tires, and integrated lights.\ndescription: ## Overview\n\nIt's right for you if...\nYou want an e-bike that provides a boost for faster rides and effortless usage. Durability is crucial, and you need a bike with one of the most powerful and efficient motors.\n\nThe tech you get\nA lightweight Delta Carbon Fiber frame with an ultra-lowstep design, a Voltex Drive Pro (350W, 75Nm) motor capable of maintaining speeds up to 30 mph, an extended range 600Wh battery integrated into the frame, and a Voltex Control Panel. Additionally, it features a 12-speed Shimano drivetrain, hydraulic disc brakes for optimal all-weather stopping power, a suspension seatpost, wide puncture-resistant tires for added stability, ergonomic grips, a kickstand, lights, and a cargo rack.\n\nThe final word\nThis bike offers enhanced enjoyment and ease of use on long commutes, leisure rides, and adventures. With its extended-range battery, powerful Voltex motor, user-friendly controller, and a seatpost that smooths out road vibrations, it guarantees an exceptional riding experience.\n\n## Features\n\nUltra-fast assistance\n\nExperience speeds up to 30 mph with the cutting-edge Voltex Drive Pro motor, allowing you to breeze through errands, commutes, and joyrides.\n\n## Specs\n\nFrameset\n- Frame: Delta Carbon Fiber, Removable Integrated Battery (RIB), sleek welds, rack & fender mounts, internal routing, kickstand mount, 135x5mm QR\n- Fork: Voltex Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR\n- Max compatible fork travel: 50mm\n\nWheels\n- Hub front: Formula DC-20, alloy, 6-bolt, 5x100mm QR\n- Skewer front: 132x5mm QR, ThruSkew\n- Hub rear: Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR\n- Skewer rear: 153x5mm bolt-on\n- Rim: Voltex Connection, double-wall, 32-hole, 20 mm width, Schrader valve\n- Tire: Voltex E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c\n- Max tire size: 700x50mm with or without fenders\n\nDrivetrain\n- Shifter: Shimano Deore XT M8100, 12-speed\n- Rear derailleur: Shimano Deore XT M8100, long cage\n- Crank: Voltex alloy, 170mm length\n- Chainring: FSA, 44T, aluminum with guard\n- Cassette: Shimano Deore XT M8100, 10-51, 12-speed\n- Chain: KMC E12 Turbo\n- Pedal: Voltex Urban pedals\n\nComponents\n- Saddle: Voltex Boulevard\n- Seatpost: Alloy, suspension, 31.6mm, 300mm length\n- Handlebar: Voltex alloy, 31.8mm, comfort sweep, 620mm width (XS, S, M), 660mm width (L)" - }, - "3d3c75cf-cc0f-418c-991c-f66437ba2862" : { - "embedding" : [ 0.020013638, 0.009418182, -0.023612347, -0.011745972, 0.0023110667, 0.0024381587, 0.00619406, -0.040321592, 0.010929908, -0.04668957, -0.010809504, 0.008836235, -0.03820785, -0.031358264, 0.013806199, 0.02054876, 0.005682348, -0.016254392, 0.014381457, -0.010254313, 0.008675697, 0.019772831, 7.491736E-4, -0.012715884, -0.0019214295, 0.0062475726, 0.01084295, 0.003464928, -5.1380263E-4, -0.0025970237, 0.023558835, 0.0045953775, -0.022996953, -0.015090496, -0.019786209, -0.0012575414, 0.029913431, 0.012856354, 0.022863172, 0.0021956805, 0.035398453, 0.021043751, -0.022114, 0.011913198, -0.012100492, 0.017926654, 0.0060937246, 5.2634464E-4, 0.020481871, 0.020027015, -0.006541891, 0.019960124, -0.013371411, -8.265157E-4, -0.0013093816, -0.011659014, 0.007451602, 0.022354804, 0.03820785, 0.021083886, 0.013752687, 0.015411571, -0.037779752, -0.010889773, -0.0070970817, -0.026876602, -0.007244241, 0.0202812, -0.0011822896, 0.0025953513, 0.012281096, 0.029538844, 0.036655992, 0.008434892, 0.028709402, -0.034435228, 0.0030100725, -0.011431586, 0.020883214, 0.009846281, 0.021231044, -0.022568854, 0.009250956, 0.030154238, 0.019331355, -8.58341E-6, -0.0072910646, 0.020896591, -0.030876655, 0.0023796295, 8.15228E-4, 0.021619009, -0.010548632, 0.020388223, 0.026100673, 0.008274355, -0.022127377, 0.0096857445, -0.0078797005, -0.01816746, 0.008983394, 0.022488587, -0.009846281, -0.019237708, -0.049820043, -0.03229473, -0.007612139, -0.016669113, 0.006187371, 2.2680059E-4, -0.004872973, 0.008789412, 0.0038395147, -0.0015133976, 0.018394887, -0.0029097367, 0.03224122, -0.001184798, 0.02977965, -0.027478617, 0.026314722, 0.028976964, 0.0067994194, -0.038555685, 9.949962E-4, 0.0013244319, -0.008970016, 9.063663E-4, 0.011819551, -0.016950052, -0.015478461, 0.0094583165, 0.0070168134, 0.0073111313, -0.025940135, -0.0074716685, -0.023224382, 0.007980037, -0.03141178, -0.008013482, 0.005939876, 0.023411674, -0.014475104, 0.0027057207, -0.0023160835, -0.004274303, -1.13713846E-4, 0.02167252, 0.02563244, -0.0014130617, 0.022689257, -0.008294422, 0.005792717, 0.03387335, 0.0038896825, -0.007906457, 9.063663E-4, 0.016281147, -0.01168577, 0.0016162416, 0.0085151605, 0.008976705, 0.0029582323, -0.006173993, 0.022194268, 0.004822805, -1.6043268E-4, -0.0058328514, 0.011866375, -0.013699174, -0.013130605, 0.016990187, -0.03387335, 0.021458471, -0.0021923361, -0.010970042, 0.03392686, -0.022662502, -0.017913276, -0.0043712943, 0.046983887, -0.012327919, 0.017030321, 0.031277996, 0.0073914, -0.008689076, -0.0034548943, -0.03914432, 0.010287759, -6.0034223E-4, 0.0053345175, 0.00802686, 0.015866427, 0.0019632361, -0.59462976, -0.015251034, -0.016655734, -0.017565444, -6.1121193E-4, 0.019665807, -0.003307735, 0.022167511, 0.006485034, 0.003158904, -0.022354804, 0.046903618, -0.013063715, -0.009752635, -0.038769733, -0.018662449, 0.019960124, -0.013418234, 0.006722495, -8.398938E-4, -0.03315093, 0.009652299, -0.044896904, 0.008883058, 0.006471656, -0.0078797005, 0.014327945, 0.0040435307, 0.004802738, -0.003535163, -0.0368968, 0.04168616, 0.009752635, -0.015197521, 0.035478722, -0.042890187, -0.005217459, 0.013806199, 0.02464246, 0.026488638, -0.00521077, -0.008294422, -0.020187553, 0.0018277828, -0.0064950674, 0.007873012, 0.038609196, -0.0040669423, 0.0016388173, -0.043398555, 0.027130786, 0.023184247, 0.009725879, -0.0089231925, 0.011505166, -0.017592201, 0.034756303, 0.002299361, -0.013404856, 0.028174277, -0.009538585, 0.005976666, -0.009257645, -0.010608833, -0.012595481, 0.023331406, -0.027665911, -0.02252872, 0.026796333, -0.026729444, 0.014394836, 0.011598812, 0.0015000195, 0.026180942, 0.011852996, 0.027799692, 0.06405434, 0.010174045, 0.006752596, 0.0235187, 0.010896462, -0.0015376454, 0.013351344, -0.04091023, 0.027237812, -0.0055686343, -0.0072910646, -0.008000104, 0.010401472, -0.005872986, 0.03133151, 0.007752609, 0.006662294, -0.016093854, -0.013103848, 0.016361415, 0.0018411609, 0.03387335, 0.011451653, -0.036629237, -0.010100465, 0.011725904, 0.02563244, 0.022876551, 0.01583967, 0.0027190987, -0.0011939954, -0.01935811, 0.014836312, -0.023893286, 0.009398115, -0.017404908, -0.01443497, 0.012722573, -0.016214257, -0.027799692, 0.008575362, 0.00894326, 0.015799535, -0.038475417, 8.15646E-4, -0.012414876, 0.023251137, -0.005625491, -0.020254442, 0.001809388, 0.022006974, 0.011398141, -0.025471902, 0.00594991, 0.023077222, 0.021873193, 0.039224587, -0.0074114674, -0.002605385, 0.016695868, 0.016923295, 0.0046856795, 0.0069097886, -0.028388327, -0.03012748, 0.006307774, -0.006210783, -0.057632852, -0.011779417, -0.011946643, -0.024762863, 7.566988E-4, -0.005090367, -0.02470935, -0.026394991, -0.03625465, -0.017471798, 8.645597E-4, -0.02611405, -0.025538793, -0.020963483, -0.011170713, -8.4073E-4, -0.02442841, 0.010863017, 0.007384711, -0.031063948, 0.001114563, -0.005013443, -0.0044515627, 0.008568672, 0.021431716, -0.005963288, -0.039331615, -0.022301292, -1.9136953E-4, -5.790209E-5, 0.02077619, 3.9465394E-4, 0.008000104, -0.018702583, 3.9862556E-4, 0.0081338845, -0.010341271, -0.0021287901, 0.028067254, -0.059505787, 0.006217472, 0.029378308, -0.0012592137, 0.027505374, 0.0033177687, 3.6538934E-4, 0.0018210938, -0.0041940343, 0.017418286, -0.010448296, 0.0030518791, -0.02710403, -0.009311157, 0.012655683, 0.006254262, 0.002714082, 0.009130553, 0.015451705, 0.008782722, 0.0019013624, -0.0055719786, 0.021806303, -0.008240909, 0.016267769, 0.016133988, 0.024241118, 0.019184195, 0.01597345, -0.03282986, -0.011257671, -0.007077015, -0.009478384, 0.005090367, -0.0074382233, 0.03871622, -0.018100569, -0.015652377, 0.0059465654, 0.034033887, 0.029405063, -0.0050301654, -0.0068295198, 0.011960021, 0.012214205, 0.032642562, 0.0019047069, -0.024013689, -0.0043345043, 0.03577304, 0.005010098, -0.013438301, 0.009123864, 0.020080527, -0.012187449, -0.022769526, 0.03753895, -0.006147237, 0.02634148, 0.040615913, 0.014394836, -0.03224122, 0.01654871, 0.016455064, 0.025391633, 0.026421746, 0.0249234, 0.033124175, -0.029137501, -0.0040234635, 0.0033294745, 0.0049365186, -0.003210744, 0.005612113, -0.006063624, 0.0020736055, 0.009378048, 0.008682387, 0.0010970042, 0.014047005, 0.03125124, -0.008153952, 9.348992E-5, -0.015679132, -0.02541839, -0.004949897, -8.361312E-4, -0.029699381, 0.008755966, -0.010180734, 0.0038094139, 0.009351292, 0.01957216, 0.003842859, -0.006759285, -0.001649687, 0.007010124, 0.03317769, -0.018154081, -0.026943494, -0.0058395406, 0.012555347, -0.013398167, -7.203271E-4, 0.0012224239, -0.007846256, 1.5246331E-5, 0.054903723, 0.01668249, 0.012769396, -0.0144483475, 0.024896644, -0.017123967, -0.0049866866, 0.051559195, 0.012501834, -0.012521901, -0.003702389, -0.019799588, -0.012635616, -0.00478936, -0.012983446, 0.019344732, -0.017311262, 0.0038896825, -0.019130683, 0.031465292, -0.008615497, 0.009444938, -0.0466093, -0.02097686, -0.032535538, -0.01570589, 0.0029966943, 0.0053545847, -0.018635694, 0.014020248, -0.024736106, -0.010287759, -0.021057129, -0.006117136, -0.017712604, 0.062341943, 0.02865589, -0.018408265, 0.01732464, -0.020214308, -0.0041070767, -0.013224252, -0.006491723, 0.0166156, 0.019425001, 0.007839566, -0.0035853307, -0.017913276, 0.00336292, -0.01443497, -0.013043648, 0.0039164387, -0.021525363, 0.010461674, -0.012194138, -0.003943195, -0.035746284, -0.004351227, 0.007839566, 0.022782903, 0.0019047069, 0.0405624, 0.007658962, 0.020522006, -0.01823435, -9.465006E-4, -0.0057091042, 0.010428228, -0.022301292, -0.024910022, 0.016267769, 0.008127196, -0.008234221, 0.011692459, 0.004886351, 0.01633466, 0.016856406, 0.008883058, 0.016040342, 0.01415403, -0.0044615963, 0.012341297, -0.0024515367, 0.0041505555, -0.023451809, 0.025886623, 0.015264411, -0.018916633, 0.015638998, 0.0042575803, -0.0022257813, -0.0034749615, -0.036013845, -0.0198531, -0.032508783, 0.002573612, -0.021525363, 0.017485177, 0.0010485086, -0.010107154, 0.00866232, 0.008862991, 0.0066221594, -5.585357E-4, 0.005926498, -0.023826396, -0.0040234635, -0.015933316, 0.031224485, 0.009130553, 0.0011011849, 0.0053044166, -0.01963905, 0.0049532414, 0.02181968, -0.012314541, 0.0044883527, 0.0071706614, -0.016936675, -7.959969E-4, -0.008776033, 0.014207542, 0.008889747, 0.025351498, 0.015585486, 0.00594991, -0.011866375, 0.017217614, -0.0059867, -0.006033523, -0.002874619, 0.022983575, 0.019893235, 4.9080903E-4, -0.014903204, 0.018287862, -0.019732697, 0.008220842, 0.017364774, 0.0364687, -8.352951E-4, -2.1551283E-4, -9.949962E-4, 0.008000104, -0.014234298, -0.013364722, -0.0012090458, -0.024000311, 0.015652377, -0.030823141, 0.0047826706, -0.001764237, -0.016602222, -0.004478319, -0.0076924074, 0.0031104083, -0.039893493, 0.026154185, -6.107939E-4, -0.02667593, 0.021699278, -0.0036823219, -0.009090419, -0.014849691, 0.0074114674, 0.048054136, 0.022702636, 0.008066994, 0.02020093, -0.014327945, -0.03761922, -0.014635641, 0.004916452, -0.0026789645, -0.020535383, -0.012562036, 0.021445094, -0.0049197963, 0.01168577, -0.010669035, -0.020455115, -0.0029716105, 0.0044983863, 0.002809401, 0.044335023, -0.0154918395, -0.0017876485, -0.02667593, -0.01879623, -0.009117175, -0.017217614, 0.0013386462, -0.034729548, 0.015799535, 0.039465394, 0.005287694, 0.0071439054, 0.009612164, 0.0059465654, -0.0011204159, -0.004605411, -0.0202812, -0.0049231406, -0.023451809, 0.02830806, 0.032508783, 0.015906561, -0.02323776, -0.02647526, -0.019411623, 0.043264776, 0.010943285, -0.023170868, -0.017498555, -0.028281303, 0.0026572251, -0.030421799, 0.0012048652, 6.810289E-4, -0.04778657, -0.011458343, 0.015144009, 0.017632335, 0.01527779, 0.012113869, 0.013344655, -0.0031839877, 0.05260269, 0.010381405, 0.019746074, 0.01871596, -0.028201034, -0.03577304, -0.049820043, 0.020214308, -0.015572108, 0.011431586, 0.020722676, -0.009806147, -0.003339508, 0.012501834, -0.005083678, -0.019679185, 0.016816271, 0.0048328387, -0.004317782, -0.034756303, -0.027331458, -0.034060642, -0.038261365, 0.014863069, -0.014060383, 0.013859712, -0.03483657, -0.0039799847, 0.01492996, 0.010722547, 0.003568608, 0.016133988, 0.009658988, 0.036227893, -0.015291168, -0.0096857445, -0.019973503, -0.022354804, -0.0093044685, 0.031706095, 0.023692615, -0.011846308, -0.009953306, -0.011023554, -0.00467899, -0.0044381847, -0.015023606, -0.0029481987, 0.03266932, 0.02350532, -0.015786158, -0.0057425494, -0.006097069, 0.02865589, -0.007612139, 0.030635849, 0.014515238, 0.00475257, -4.389689E-4, 0.0235187, -0.020027015, 0.010334582, 9.381393E-4, -0.026167564, 0.00383617, -0.0065653026, -0.016307903, -0.0114182085, -0.011913198, 0.044442046, -0.016254392, 0.0147828, 0.032134194, -0.003618776, -0.0044448734, -0.015759401, 0.0053679626, 0.023277894, -0.026247831, -0.0010518531, -0.014863069, 0.0068897214, -0.030180993, -0.016013585, -0.020722676, -0.0011195798, -0.006097069, -0.0075653153, 0.0044348403, -0.013558704, -0.0072709974, -0.0054616095, -0.0044515627, -0.03598709, -0.013204184, -0.0038027249, -0.00355523, -0.024575569, -0.02188657, -0.040535644, 0.010622211, 0.02246183, 0.011852996, -0.006819486, -0.0017358084, 0.035719525, -0.040268082, -0.0061372034, 0.023117356, 0.019451758, -0.0010878068, 0.016936675, -0.0074382233, -0.01929122, 0.003956573, -0.001854539, -0.020575518, -0.031385023, -0.0152108995, -0.018207595, 0.003428138, -0.019732697, -0.0017475142, 0.017980166, 0.0038127585, -0.029271282, -0.03379308, 5.1171234E-4, -0.005879675, -7.972511E-4, 0.007899768, -0.038127586, 0.014247676, -0.0022224367, 0.0042977147, -0.011130579, -0.01471591, -0.02844184, -0.007518492, 0.011431586, -0.03012748, 0.003262584, -0.013792821, 0.004759259, -0.024160849, -0.010307826, -0.0054950546, -0.0023043777, -0.0041840007, -0.030395042, -0.0053980635, 0.0360406, -0.0031104083, -0.02181968, -0.0026990317, -0.015371436, -0.020495249, -0.029244525, 0.014635641, 0.055064257, 0.011424897, -0.0056355246, 0.008548606, -0.001433965, -0.050569218, -0.0090502845, 0.0012266046, 0.015184144, 0.02084308, -4.4550117E-5, 0.0016940018, -0.008849613, 0.009625543, 0.032508783, -0.0029465265, 5.714957E-4, 0.0085151605, 0.029405063, 0.012829598, 8.3905767E-4, -0.0604155, -0.009418182, 0.03020775, 0.012715884, 0.024575569, -0.01112389, -0.006270984, 3.8712876E-4, 0.013257697, -0.015036984, 0.015866427, 0.020495249, -0.0072910646, -0.04377314, -0.019344732, -8.352951E-4, 0.004485008, 0.0101205325, -0.0058361962, -0.006752596, -0.00844827, 0.0031839877, -0.017404908, 0.005862952, -0.015518595, -0.023090601, 0.01859556, -0.009471695, -0.014207542, 0.02654215, -0.013411545, -0.03055558, 0.007893079, 0.031920146, -0.001369583, 0.003689011, -0.013431612, -0.033686057, 0.0046388563, -0.006485034, 0.022261158, 0.0037893467, -0.02668931, 0.0024615703, -0.013057025, -0.020080527, 0.018970145, 0.0041572447, -0.025030425, -0.03711085, 0.014541995, -0.0038528927, 0.0437999, 0.0055686343, 0.015612243, -0.030662606, 0.01210718, -0.002725788, -0.01422092, -0.025726086, 0.020481871, 0.020027015, -0.005140535, -0.0046087555, 0.21811654, -4.2851726E-4, 0.0058261626, 0.027639154, 0.027505374, 0.018113947, 0.019465135, -0.001993337, -0.0065017566, -0.007933213, 0.0055987346, 0.026769578, -0.004802738, -0.00405022, 0.028896695, -0.0074382233, -0.034060642, -0.012508524, -0.004140522, -0.01112389, -7.842911E-4, 6.6974113E-4, -0.03371281, -0.032508783, 0.002861241, 0.010321204, -0.025792977, -0.018287862, 0.02112402, 0.007893079, -0.01915744, 0.0016956741, -0.005481676, 0.0056288354, -0.007926524, -0.003122114, 0.013766064, 0.012722573, -0.0042007235, 0.035291426, -0.004725814, 0.024374899, 0.007150594, -0.009244267, -0.008301111, -0.035398453, -0.033686057, 0.012214205, -0.015933316, -0.015719267, -0.02252872, 0.0111640245, 3.114589E-5, 0.019438379, 0.004548554, -0.02054876, -0.003752557, 0.00901015, 0.020923348, -0.014822935, -0.034729548, 0.032000415, -0.010916529, 0.046448763, -0.023010332, 0.018247727, 0.008281044, -0.0043679494, 0.027665911, 0.025712708, -0.025030425, -0.004140522, -0.005625491, 0.001879623, -0.034863327, -0.03371281, 0.018341376, 0.0054716426, 0.0098663485, 0.02252872, -2.1373604E-4, -0.012983446, 0.002598696, -0.004113766, 0.01570589, -0.039759714, 0.009511829, -0.015906561, 0.0032124163, -0.008929881, 0.0034381717, 0.014180786, 0.011043621, -0.021739412, 0.003324458, -4.1513916E-4, -0.023679236, 0.016254392, -0.018675826, 2.5815552E-4, -0.02985992, 0.050167874, -0.0058261626, -0.008187397, -0.02844184, 0.005531844, 0.004187345, 0.021297935, 0.024401654, -0.04406746, 0.020695921, -0.04133833, -3.5953644E-4, -0.01189982, 0.029726138, -0.0063044294, 0.017351395, -0.02541839, -0.009846281, -0.005695726, 0.014087139, -0.010735925, 0.006344564, -0.015251034, 0.026408369, -0.0050669555, -0.013511881, -1.4350102E-4, -0.012776085, -0.029458575, 0.018782852, 0.025458524, 0.008174019, 0.0033211133, -0.0070235026, -0.015251034, 0.015478461, -0.00935798, 0.008836235, -0.004561932, -0.001439818, 0.024455167, 0.0074449126, 0.013712552, 0.020160796, -0.02477624, 0.024910022, -0.012240961, -0.014903204, -0.0027491995, -1.3879778E-4, -0.019103926, 0.00809375, -0.03154556, 0.02442841, 0.0076054498, -0.030876655, -0.0027308047, -0.0015878133, -0.0104750525, -0.038100827, -0.0015451706, -0.0069365446, 0.020134041, -0.029966943, 0.0011137268, -0.16770786, 0.0100937765, 0.03202717, -0.021231044, 0.021364825, 0.010254313, 0.011893131, 9.648955E-4, -0.010087087, -0.006237539, 0.019906612, -0.01871596, -0.051719733, -0.020816322, 0.035184402, 0.0043077483, -0.021953462, 0.012187449, 0.003561919, -9.322863E-4, -0.0043746387, -0.026502015, 0.0039766403, -0.022622367, 0.012073735, -2.9055562E-4, -0.013752687, 0.045993906, -0.012515212, 0.005006754, 0.013284453, -0.029137501, 0.030154238, -0.0065285126, 0.006117136, -0.014916581, -0.012628926, 0.005779339, 0.0027207711, 0.056830168, 0.004605411, 0.00355523, 0.02041498, 0.008434892, 0.0235187, 0.013471747, -0.021458471, 0.0085419165, -0.0034883395, -0.003923128, 0.034194425, -0.0018612281, 0.0027692667, -0.013177428, 0.020227687, 0.005324484, -0.0066054366, 0.0058361962, 0.017364774, -0.013846333, -0.02604716, -0.023465186, 0.005167291, -0.01696343, -0.012735951, -0.017351395, -0.010582077, 0.025297986, -0.019612294, -0.0045385202, -0.0027809725, 0.010167356, 0.00612717, 0.032936882, 0.024669217, -0.0021873193, -0.021739412, -0.013652351, 0.027478617, -0.008883058, -4.5569154E-4, 0.052468907, -0.011016865, 6.1622873E-4, -0.009545274, -0.02280966, -6.2459003E-4, -7.3914E-4, -0.001586141, -0.0012057013, -0.006849587, -0.02302371, -0.010802816, 0.0086957645, -0.014769422, 9.648955E-4, 0.01204029, -0.0063880426, 0.012521901, -0.021645766, 0.011779417, -0.010923219, -0.018863121, -0.003859582, 0.042515602, 0.008642253, 0.017779494, 0.013217563, 0.016950052, 0.002963249, -0.0063244966, 0.032375, 0.025217718, 0.03863595, -0.0019582193, 0.02056214, -0.03400713, -0.02386653, 0.0103479605, 0.012869732, 0.02710403, 0.00313382, -0.005056922, 0.0052709715, -0.02943182, -0.020695921, -0.0660343, -0.02886994, 0.027585642, -0.011478409, -0.027371593, -0.015170765, -0.016883163, 0.029833162, -0.00332613, 0.0147292875, -0.0037391789, -0.026662553, 0.0048261494, 0.015853047, 0.028201034, 0.011184092, 0.008655631, -0.0073980894, -0.0077592977, 0.012200827, -0.013143983, -0.024548814, -0.024976913, 3.3131702E-4, -0.028976964, -0.009250956, -0.03654897, 0.02111064, 0.01935811, 0.0010568699, 0.009846281, -0.017378151, 0.017685847, -0.001089479, -0.016000208, 0.0040736315, -0.03823461, -0.009531897, 0.023130735, -0.03141178, 0.004046875, -0.015197521, 0.00559539, -0.007337888, -0.017338017, -0.01880961, 0.011311184, 0.00563218, 0.013612216, -0.015692512, 0.0055084326, -0.008000104, 0.01696343, -0.0244953, 0.003173954, -0.011103823, 0.0036087425, -0.01901028, -0.008929881, 0.0014832969, -0.0028328127, 0.009478384, -0.0074114674, 0.010588766, 0.015879804, -0.0068629654, 7.813646E-4, 0.0086957645, 0.034890085, -0.018220972, -0.017217614, 0.0042575803, -0.023879908, 0.027585642, -0.021030372, 0.009679055, -0.025859866, -0.019237708, 0.027853204, 4.7952126E-4, -0.031090705, -0.022983575, 0.013117227, -0.047572523, 0.0161875, 0.024254495, 0.017618958, 0.0010669035, 0.017659092, -0.043666117, 0.03676302, 0.0062910514, 0.032990392, 0.00538803, -0.012776085, -0.020267822, -0.016481819, 0.013545326, -0.01295, 0.022368183, -0.038957026, -0.00623085, -0.08321178, 0.031652585, -0.0012098819, -0.02977965, 0.010354649, 0.01689654, 0.027639154, -0.01189982, 0.008421514, 0.011592124, 0.008642253, -0.006478345, -0.0066990834, -0.007384711, -0.012455011, -0.0027893337, 0.010401472, -0.02485651, 0.028789671, 0.021351447, 3.733326E-4, -0.00844827, -0.006541891, 0.0216859, -0.018889876, 0.023986934, -0.023786262, 0.019558782, 0.006381354, -0.011458343, 0.036308162, -0.02315749, -0.007210796, 0.039117564, -0.015411571, -0.0067325286, 0.0050034095, 0.009337913, -3.6852484E-4, -0.03341849, -0.023224382, -0.019398244, -0.023491943, -0.04181994, -0.019037036, 0.01605372, 0.014515238, 0.006160615, -0.010287759, 0.01907717, -0.0023996967, 0.0082877325, -0.0019348076, -0.05014112, 1.00753816E-4, -0.019799588, 0.008294422, -0.00433116, 0.010990109, 0.0033211133, 0.04259587, 0.015531974, 0.0040435307, -0.013752687, 0.0020618995, -0.017083833, -0.01745842, -0.0021120675, 0.008735899, -0.008742589, -0.020736055, 6.927347E-4, 0.026502015, 0.020040393, -0.006475, 0.0104750525, 0.00767234, 0.0080067925, -0.036227893, 0.007913146, 0.008555295, 0.004625478, -0.009939929, 0.012281096, 0.0034448607, 0.008087061, -0.007939902, -0.006173993, -0.01668249, 0.01260217, -0.03935837, 0.019598916, -0.017833007, -0.009411493, 0.020468492, 0.003702389, -0.020829702, -0.009893104, 0.015826292, 0.020214308, -0.0016990186, 0.0039799847, -0.0061706486, -0.014100517, -0.002847863, -0.0071773506, -0.021364825, 0.00355523, 0.014488482, -0.005421475, -0.007913146, 0.005829507, -0.018689206, 0.012789464, -0.024669217, 0.0024114025, 0.005672314, -0.025030425, -0.032267977, 0.021792924, 0.030020457, 0.019518647, 0.016468441, 0.003287668, 0.042622626, 0.0075786933, -0.013618906, -0.003408071, 0.0041973786, 0.015170765, 0.009391426, -0.0026154185, 0.0032659287, 0.0036990447, -0.020187553, -0.02090997, -0.024174226, 0.007384711, 0.024013689, 0.098890916, 0.022729391, 0.0061673042, -0.018327996, -0.016080476, 0.0013745998, 0.0166156, -0.0056288354, -0.020669164, -0.018903255, 0.028227791, -0.016776137, -0.02280966, 0.016816271, -0.035451964, 0.031277996, 0.0050636106, 0.018435022, -0.006180682, -0.011177402, 0.022742769, 0.0026973593, 0.008816168, -0.012327919, -0.0031254585, 0.0073311985, 0.040669423, 0.016588844, -0.0029331483, -0.040669423, -0.0012717557, 0.019451758, -0.025003668, -0.012702506, 0.018327996, 0.0027910061, -0.010508497, 0.015184144, 0.024053823, -0.01612061, 0.026528772, 0.023826396, -0.0149834715, -0.018970145, 0.013030269, 0.010240936, -0.022729391, -0.018996902, -0.0489906 ], - "id" : "3d3c75cf-cc0f-418c-991c-f66437ba2862", - "metadata" : { - "name" : "SwiftRide Hybrid" - }, - "text" : "price: 3999.99\nname: SwiftRide Hybrid\nshortDescription: SwiftRide Hybrid is a versatile and efficient bike designed for riders who want a smooth and enjoyable ride on various terrains. It incorporates advanced technology and high-quality components to provide a comfortable and reliable cycling experience.\ndescription: ## Overview\n\nIt's right for you if...\nYou are looking for a bike that combines the benefits of an electric bike with the versatility of a hybrid. You value durability, speed, and ease of use.\n\nThe tech you get\nThe SwiftRide Hybrid features a lightweight and durable aluminum frame, making it easy to handle and maneuver. It is equipped with a powerful electric motor that offers a speedy assist, helping you reach speeds of up to 25 mph. The bike comes with a removable and fully-integrated 500Wh battery, providing a long-range capacity for extended rides. It also includes a 10-speed Shimano drivetrain, hydraulic disc brakes for precise stopping power, wide puncture-resistant tires for stability, and integrated lights for enhanced visibility.\n\nThe final word\nThe SwiftRide Hybrid is designed for riders who want a bike that can handle daily commutes, recreational rides, and adventures. With its efficient motor, intuitive controls, and comfortable features, it offers an enjoyable and hassle-free riding experience.\n\n## Features\n\nEfficient electric assist\nExperience the thrill of effortless riding with the powerful electric motor that provides a speedy assist, making your everyday rides faster and more enjoyable.\n\n## Specs\n\nFrameset\n- Frame: Lightweight Aluminum, Removable Integrated Battery (RIB), rack & fender mounts, internal routing, 135x5mm QR\n- Fork: SwiftRide Alloy, threaded steel steerer, rack mounts, post mount disc, 460mm axle-to-crown, ThruSkew 5mm QR\n- Max compatible fork travel: 50mm\n\nWheels\n- Hub front: Formula DC-20, alloy, 6-bolt, 5x100mm QR\n- Skewer front: 132x5mm QR, ThruSkew\n- Hub rear: Formula DC-22, alloy, 6-bolt, Shimano 8/9/10 freehub, 135x5mm QR\n- Skewer rear: 153x5mm bolt-on\n- Rim: SwiftRide Connection, double-wall, 32-hole, 20 mm width, Schrader valve\n- Tire: SwiftRide E6 Hard-Case Lite, reflective, wire bead, 60tpi, 700x50c\n- Max tire size: 700x50mm with or without fenders\n\nDrivetrain\n- Shifter: Shimano Deore M4100, 10 speed\n- Rear derailleur: Shimano Deore M5120, long cage\n- Crank: ProWheel alloy, 170mm length\n- Chainring: FSA, 42T, steel w/guard\n- Cassette: Shimano Deore M4100, 11-42, 10 speed\n- Chain: KMC E10\n- Pedal: SwiftRide City pedals\n\nComponents\n- Saddle: SwiftRide Boulevard\n- Seatpost: Alloy, suspension, 31.6mm, 300mm length\n- Handlebar:\n - Size: XS, S, M - SwiftRide alloy, 31.8mm, comfort sweep, 620mm width\n - Size: L - SwiftRide alloy, 31.8mm, comfort sweep, 660mm width\n- Grips: SwiftRide Satellite Elite, alloy lock-on\n- Stem:\n - Size: XS, S - SwiftRide alloy quill, 31.8mm clamp, adjustable rise, 85mm length" - }, - "370429cc-b123-4840-a9d7-c60e4e356b04" : { - "embedding" : [ 0.012277171, 0.013709738, -0.022353586, -0.0051489375, 0.013419072, -0.0041004643, 0.012111076, -0.033246636, 0.017799823, -0.034935266, 0.016221922, 0.0029637534, -0.028249951, 0.008456992, 0.013605929, 0.0043253843, 0.014796275, -0.013751262, -0.0121041555, -0.024845008, 0.02036045, 0.041717466, -0.011910379, 0.0033426571, -0.021010987, -0.009280545, 0.015848208, -0.030312294, 0.012256409, -0.020844892, 0.024111424, 0.004342686, -0.018533407, 0.010297875, -0.012394821, 0.02970328, 0.017426109, -0.010540097, 0.0058825226, 0.026851986, 0.048555035, 0.0037890368, -0.002103867, 0.01743995, -0.029454138, 0.011121429, 0.006124744, -0.011557427, 0.009072926, 0.011052222, -6.1809743E-4, 0.012637043, -0.021287812, -0.006335823, 0.0023564694, -0.018256582, 0.026616685, 0.012754694, 0.031807147, 0.0064084893, 0.016484905, 0.021661526, -0.04658958, -0.0076749623, -0.0055053495, -0.018727183, -7.2752964E-4, 0.009806512, -0.02260273, -0.005889443, 0.03432625, 0.021966033, 0.012685487, -0.0021748033, 0.023543932, -0.020235877, -0.011986505, -0.010886127, 0.013197613, 0.018824073, 0.02633986, -0.0019498833, -0.006661092, 0.017744457, 0.019668387, 0.012291012, -0.029730963, -0.001552813, -0.025979988, 0.020997146, -0.0063427435, 0.010664668, -0.0063323625, 0.0021298192, 0.01136365, 0.023156378, -0.008789181, 0.032222383, 0.0069136946, -0.009474322, -0.0065780445, 0.006173189, 0.002069264, -0.011377491, -0.04614666, -0.036430117, 0.009758067, 0.0051939217, -0.008014073, -0.0046298914, -0.013259898, 0.017343061, 0.024845008, -0.0020813749, 0.0040070363, -0.0027025002, 0.04556533, 0.006616108, -0.0013797976, -0.03429857, 0.0103878435, 0.043240003, 0.011737363, -0.016609477, 0.012630123, -0.017855186, -0.024471294, 0.0087130545, 0.01597278, -0.0010424176, 0.011183714, 0.016111191, 0.027308747, 0.01633265, -0.01576516, 0.007827216, -0.029149631, 0.014920846, -0.030533753, -0.0070694084, -0.0056299204, 0.027779348, -0.026450591, -0.009626576, -0.018311948, -0.013121486, -4.805502E-4, 0.018381154, 0.012374059, 0.01993137, 0.023917645, -0.010643906, 0.02037429, 0.030921308, 0.007245884, 0.01620808, 0.006996742, 0.03601488, -0.011142191, -0.014090372, -0.010540097, 0.0076057557, 0.0078341365, -0.010138701, 0.0016107731, 0.0023028348, 0.0036437039, -0.016166557, -0.018865597, -0.008567722, -0.01677557, 0.020401973, -0.011072984, 0.0060416968, 0.025620116, 0.015294559, 0.015336083, 0.005605698, -0.0069482974, -5.0347473E-4, 0.014124976, -0.008110961, 0.014865481, 0.032139335, -0.0020536925, 0.0063046804, 0.018685661, -0.022049079, 0.013301422, 0.0031886734, 0.0032371178, 0.031668734, 0.010664668, 0.0033841808, -0.6054708, -0.022865713, -0.010200987, -0.03825716, 0.014381038, -0.0068029645, -0.009391274, 0.021440065, 0.027018081, 0.0018737565, -0.019170104, 0.034353934, -0.008173246, 0.0022197873, -0.018657979, -0.021509271, 0.016221922, -0.011778886, 0.018353472, -0.0070036626, -0.0369284, 0.008934514, -0.009155974, 0.010263272, -9.142781E-5, 0.010996858, 0.01743995, 0.0013227025, -0.004602209, 0.0025277548, -0.049136367, 0.0359872, 0.0060832207, -0.0095504485, 0.041163817, -0.031474955, 0.010263272, -5.2077626E-4, 0.027391795, 0.019225469, 2.2059461E-4, -0.007142075, -0.015834367, -0.016138874, -0.010159463, 0.008339341, 0.018491883, -0.016277287, -0.0068894722, -0.03260994, 0.0028218809, 0.015695956, -0.014477926, 0.015820526, -0.00427694, -0.007910263, 0.036734626, -0.013979643, 0.007515788, 0.00833242, -0.0040831626, 0.0069829007, -0.02937109, -0.006906774, -0.016927825, 0.02476196, -0.03260994, -0.02632602, 0.0020536925, -0.045399234, 0.005007065, -0.0013797976, -0.0035987198, 0.019834483, 0.012526313, 0.02263041, 0.047973704, 0.032250065, -0.00855388, 0.006574584, 0.02250584, 0.01058162, 0.0154744955, 0.0067233774, -0.00213674, -0.0065192194, -1.6479715E-4, 0.0010614493, 0.00809712, 0.012090314, 0.037952654, 0.022865713, 0.014907004, -0.008470832, 0.0014195911, 0.02948182, 8.8151335E-4, 0.019862166, 0.041329913, -0.02768246, 0.0021419304, -0.0022024857, 0.011612792, -0.0045849076, 0.019668387, 0.0062769977, 0.0068687103, -0.027696302, 0.026284495, -0.03036766, 0.0048582717, -0.005460365, -0.02733643, -0.016221922, -0.0026436748, -0.03161337, 0.010996858, 0.008187087, 0.019502293, -0.026630526, 0.016457222, -0.019308517, 0.030976674, -0.0016150986, -0.00944664, 0.0112252375, -8.088469E-4, 0.0052942703, -0.01936388, 2.0556389E-4, 0.039115317, 0.014990052, 0.042935494, -0.015737478, 0.025827736, 0.014256467, 0.019405404, -0.0057752533, 0.0061870296, -0.056112345, -0.01813201, 0.006536521, -0.01305228, -0.02766862, -0.021010987, 5.0477235E-4, -0.031917877, 0.00439113, -0.009086767, -0.011322126, -0.006114363, -0.024277518, -0.023488568, -0.0039447504, 0.010200987, -0.013218375, -0.016692523, -0.015571384, -0.033468094, -0.017606044, 0.021979874, 0.008934514, -0.018035123, -0.008920672, -0.01912858, 0.02575853, 0.0053150323, 0.021218605, -7.513193E-4, -0.07219586, 0.008630007, 0.0150869405, -0.028249951, 0.0290389, -0.018962486, 3.3348714E-4, -0.021329336, -0.0038167192, 0.015986621, -0.010027971, 0.001530321, 0.026395226, -0.029647915, 0.018367313, 0.028180744, 0.01338447, 0.034492344, 0.028305316, -0.015737478, 0.011010699, 0.013543644, -0.0026298338, -0.020914098, -0.002633294, -0.01597278, -0.02892817, 5.705182E-4, -0.002463739, 0.0058236974, 0.012235647, 0.028983535, 0.0059932526, 0.019723753, 0.014616339, 0.0107753975, -0.01271317, 0.002688659, 0.029897057, 0.0036852276, 0.023613138, 0.01193114, -0.031447276, -0.0054292227, -0.0031333084, -2.2427118E-4, -0.017882869, 0.027945444, 0.021924509, -0.004861732, -0.0033686094, -0.0027128812, 0.008249373, 0.0070036626, -0.014644021, -2.0502321E-4, 0.012789297, 0.011765045, 0.03117045, 0.0055537936, -0.042686354, 0.009024482, 0.015958939, 0.024097582, 0.003951671, 0.020789528, 0.037675828, 0.003083134, -1.3165389E-5, 0.037315957, 0.006401569, 0.028263792, 0.014796275, 0.02036045, -0.016014304, 0.0028962775, -0.006166268, 0.05663831, 0.016138874, 0.022229016, 0.0073427726, -0.00855388, -0.020208197, 0.00933591, -0.001215433, 0.0272257, -0.0051800804, 0.0027163413, -0.0019014389, -0.006162808, 0.025855418, 0.014173419, 0.024097582, 0.008948355, -0.0014040198, 0.00956429, 0.0017111221, -0.028249951, 0.001731884, -0.01903169, -0.026187608, 6.267482E-4, -0.004197353, 0.018976327, -0.018076647, 0.030146198, -0.0017085269, 0.0013201074, 0.013356787, 0.0047683036, 0.038783126, -0.027876237, -0.035461232, -3.1726694E-4, 0.029537184, -0.019419245, 0.0040658615, -0.0041696704, 0.0026159924, -0.011356729, 0.038866173, 0.011003778, -0.008630007, -0.01810433, -2.7552698E-4, -0.013972722, -0.006377347, 0.008290897, -0.015695956, -0.012664725, -0.014754752, -0.024886532, 0.0031419592, -0.0016332652, -0.024554342, 0.017509157, -0.004636812, 6.345339E-4, -0.02476196, 0.0076265177, 0.0013201074, 0.020775687, -0.026547479, -0.023197902, -0.0077441684, 0.00123706, 0.00911445, -0.013979643, -0.014644021, -0.005007065, -0.018394995, -0.024748119, -0.0064603942, -0.018685661, -0.0018979787, 0.048914906, 0.018741025, -0.0050831917, 0.014353355, -0.006055538, -0.014270308, 0.0063531245, -0.0062285536, 0.023710027, 0.020886416, -0.026727416, 0.01654027, -0.013882753, 0.003320165, -0.007847978, -0.017495316, 0.014214943, -0.011446698, -0.0062493156, 0.01463018, -0.032942127, -0.0344093, 0.009834194, 0.009944924, 0.007529629, -0.011827331, 0.025011104, 0.029177314, 0.012955392, -0.0028876266, -0.0025069928, 0.008367023, 0.009834194, 0.004069322, -0.022921078, 0.023474727, 0.01001413, -0.012235647, 0.014685545, -0.0142287845, 0.015903573, 0.014297991, 0.0014533291, 0.013550565, 0.016983189, -0.013342946, 0.011910379, 0.01136365, -0.008353182, -0.0107961595, 0.020554226, 0.010906889, -0.013806627, 0.010844604, 0.0051143346, 0.018519565, -0.0027267223, -0.03105972, 0.008498515, -0.04005652, -0.02047118, -0.0038236398, 0.012464028, -2.9888406E-4, -0.004937859, 0.0027647857, 0.018408837, 0.018699503, -0.015848208, -0.018436518, -0.0155160185, -0.015585225, -0.014021166, 0.028983535, 0.011412094, 0.003972433, 0.022893395, -0.04174515, 0.0028668647, 0.012740852, 0.008048675, -0.015073099, 0.0037890368, -0.011944981, 0.0023668504, 0.0077234064, 0.0067164567, -0.0023322473, 0.008360103, 0.03980738, 0.011730443, 0.0055053495, 0.011066063, -0.012062632, -0.0027059605, 0.0029948961, 0.03308054, 0.030921308, 0.0011375761, -0.0032405779, 0.019529976, -0.017246172, 0.005356556, 0.011986505, 0.009363592, 0.010692351, 0.009730385, -9.1784657E-4, -0.016692523, 0.007079789, -0.016720206, 0.028512934, 2.4676317E-4, -0.0028391823, -0.01767525, -0.014782433, 0.018311948, -0.0057475707, 0.018381154, -0.02463739, 0.012623202, -0.040997725, 0.017398426, 0.0015666542, -0.016609477, 0.025135674, 0.029786328, -0.016913984, -0.007924104, 0.0125539955, 0.024014534, 0.013861991, 0.012581678, -0.011896538, -0.03997347, -0.042824768, -0.030063152, 0.004467257, -0.008401627, -0.009716543, -0.0077372477, 0.0100002885, 0.009854956, 0.0067129964, -0.0056783645, -0.021315495, 6.470775E-4, -0.008014073, -0.0240699, 0.02690735, -0.013481358, -0.012090314, -0.0120833935, -0.022353586, -0.007861819, -0.0034603076, -0.010810001, -0.035267454, 0.01677557, 0.0129830735, 0.045897517, 0.007356614, 0.028402204, 0.014644021, -0.018118171, 0.015723638, -0.014713228, 0.004716399, -0.017343061, 0.0046125897, 0.02116324, 0.009841114, -0.009017562, 0.008270135, 0.0046644947, 0.01474091, 0.010692351, -0.015792843, -0.02496958, -0.0353505, -0.002181724, -0.018311948, 0.0027734365, -0.01597278, -0.03701145, 0.0012638774, 0.017606044, -0.013605929, 0.007951787, 0.019889848, 0.024568183, 3.646299E-4, 0.02395917, -0.017343061, 0.02599383, 0.0066991556, -0.024443612, -0.016830936, -0.05547565, 0.030090835, -0.010989937, -0.008387785, 0.007301249, -0.022921078, -0.012318695, 0.013266819, -0.010636985, -0.025703164, 0.023903804, -0.020083625, -0.01136365, -0.034741487, -0.041689783, -0.025218721, -0.02600767, 0.03554428, 5.584071E-4, 0.018256582, -0.01586205, 0.009951845, 0.015017735, -0.011571269, 0.009349751, 0.008117882, 0.015654432, 0.015114623, -0.025038784, -0.03872776, -0.030893626, -0.025813894, -0.017052395, 0.022021398, 0.04321232, -0.010484732, -0.007847978, -0.003062372, -0.0063081407, -0.0028893568, -0.012581678, 0.004647193, 0.031142768, 0.011211396, -0.02586926, -0.016000463, -0.005595317, 0.037675828, 0.01709392, -0.012284092, 0.020678798, -0.016927825, -0.0064811558, 0.03667926, -0.0018702962, 0.009322069, 0.032582257, -0.005692206, 0.028222268, -0.026990399, -0.010117939, -0.0064396323, 0.02215981, 0.056223076, -0.0073427726, 0.012733932, 0.026990399, -0.02362698, -0.011460539, 0.007474264, 0.012457107, 0.020969464, -0.023779234, 4.762248E-4, -0.024498977, -0.010540097, -0.0029897057, -0.02870671, -0.024831166, -0.013979643, 0.013114565, -0.016913984, 0.009370512, 0.0019758355, -0.01541913, -4.1848095E-4, -0.0078964215, -0.0057198885, -0.014699386, 0.00213674, 0.021080194, -0.034243204, -0.027654778, -0.012630123, 0.0065572825, -0.001597797, 0.0060901414, -0.016720206, 0.008588484, 0.025620116, -0.03836789, 0.004138528, 0.027267223, 0.010166383, -0.0069621387, 0.0053461753, -0.019100897, -0.031862512, 0.018934803, -0.0076749623, -0.023363996, -0.016526429, 0.0017621616, -0.0029239599, -0.0071766777, -0.0076334383, 0.017190808, 0.018810231, -0.0022457396, -0.012055712, -0.028679028, 0.0047786846, -0.018284265, -0.0015121544, 0.0014784164, -0.038284842, 0.020900257, 0.008415468, 0.005602238, -0.005221604, -0.00854696, -0.024498977, 0.004377289, -1.8350444E-4, -0.0052146832, -0.010325558, -0.006145506, -0.002486231, -0.02656132, -0.010041812, -0.0359872, 0.010526256, 0.0044153524, 7.5088674E-4, -0.014782433, 0.011391332, -0.034713805, -0.030284612, 0.010117939, 2.893682E-4, -0.02127397, -0.024678914, 0.027087288, 0.047669195, 0.027198017, -0.0036713863, -0.009854956, 1.6252632E-4, -0.03903227, 0.0026246433, -0.010747715, 0.026741257, -0.0011064333, 0.030561436, 0.002430866, 0.008415468, -0.0020640735, 0.03363419, -0.009066005, -6.449148E-4, 0.0137789445, 0.010754636, -7.70351E-4, -0.007661121, -0.056140028, -0.0061178235, 0.021066353, 0.0070002023, 0.010027971, -8.0019614E-4, -0.0071628364, -0.025606276, 0.0020225497, -0.009245941, 0.014810116, 0.011162952, -0.017827505, -0.02970328, -0.014048848, -0.01564059, 0.0099034, 0.005975951, 0.008062516, 0.01272009, 0.0053081117, -0.002453358, -0.027710143, -0.015114623, 0.0048651923, -0.025274087, 0.044651806, -0.028319156, 0.0015856859, 0.049551602, 0.0067822025, -0.0070728688, 0.028845124, 0.014464085, -0.021910667, -0.013135327, -0.0091213705, -0.0155160185, -0.01867182, -0.010041812, 0.03385565, -0.0032907524, -6.8860117E-4, -0.009626576, -0.029869374, -0.017869027, 0.034686122, -0.022478158, -0.03332968, -0.021204764, 0.009598893, -0.004761383, 0.006142046, 0.0053842384, 0.004152369, -0.028955853, 0.019723753, -0.005256207, -0.018325789, -0.021052511, 0.031558003, 0.011758125, -0.014131896, -0.0055883965, 0.20130685, 0.009744226, -0.010540097, 0.03432625, 0.014381038, -0.00788258, 0.009578131, 0.021329336, -0.005353096, 0.0050451285, 0.0072182016, 0.033661872, -0.012145679, -0.009038324, 0.024595866, -0.008076358, -0.023571614, -0.018644137, -0.016152715, -0.019654546, -0.022478158, -0.011453618, -0.010138701, -0.026173767, -0.015073099, -0.0070071225, -0.01294155, -0.032831397, 0.022824189, 0.0016920904, 0.0048202085, -0.02710113, -0.0129000265, -0.0021159782, -0.031474955, -0.015986621, 0.005076271, 2.3724734E-4, 0.011515903, 0.028056173, -0.009771909, 3.9198796E-5, 0.017536838, -0.023474727, -5.7527615E-4, -0.0041800514, -0.026699733, 0.009668099, -0.030533753, -0.0078341365, -0.02700424, 0.005391159, -0.0014645752, 0.021481588, 5.817642E-4, -0.00878226, 0.0072043603, -0.003193864, 0.00652614, 0.019183945, -0.024319042, 0.025011104, -0.005321953, 0.031142768, -0.028056173, 0.001970645, -0.034077108, -0.025024943, 0.014644021, 0.0042319563, -0.0076126764, -0.0028876266, -0.014976211, 0.016789412, -0.024457453, -0.016609477, -0.00416621, 0.00989648, -0.011315205, 0.021024829, -0.011128349, -0.014713228, 0.0107961595, 0.013772024, -0.0042907814, -0.0145748155, 0.0053946194, -0.0053980798, -0.0027803571, -0.007384296, -0.004020877, -0.0062942994, 0.009273624, 0.0014169959, -0.0069898213, -0.006605727, -0.0065538227, 0.009460481, -0.010706192, 0.009128291, -0.035738055, 0.032582257, 0.010138701, -0.0029170392, 0.014408721, -6.751925E-4, -0.0070867096, 0.0544514, 0.010623144, -0.031308863, -0.023779234, -0.03418784, -0.0024447073, -0.010567779, 0.0028530236, -0.010457049, -0.0066680126, -0.010180225, -0.011329046, 0.01767525, 0.041579057, 0.020554226, 0.022353586, 0.0087130545, 0.012311774, -0.016055826, -0.044873267, 0.003982814, -0.0025035325, -0.0454546, 0.010650827, 0.001474956, 0.0031125466, -0.006110903, -0.011446698, -0.011571269, 0.026699733, -0.016457222, 0.012339457, 0.008020992, -0.02305949, 0.013045359, 0.024720436, -1.5301048E-4, 0.027959285, -0.017287696, 0.0033893713, -0.004910176, -3.1872678E-5, -0.019100897, -0.0016981459, -0.027723983, 0.018325789, -0.03136423, -0.00281323, 0.006456934, -0.01900401, -0.019529976, 0.0071766777, -0.0031384989, -0.040194932, 0.022353586, 0.005211223, -0.006377347, -0.02710113, -0.035876468, -0.17639263, 0.011232158, 0.017910551, -0.021315495, 0.011903458, 0.010782318, 0.0075573116, 0.024512818, -0.018436518, 9.7494165E-4, 0.01676173, -2.960185E-5, -0.016291128, -0.026063036, 0.031696416, -0.027765507, -0.015460654, 0.014879323, 0.0027301826, 0.0010605842, 0.015557542, -0.029620232, 0.028512934, 0.012893106, 0.0011782347, 0.01856109, 0.008685372, 0.049330145, 0.009924162, 0.005273509, -0.012761614, -0.018353472, 0.032914445, 0.0182289, 0.01677557, -0.014028086, -0.011806569, -0.0049655414, 0.020097466, 0.040665533, 0.016581794, 0.007335852, 0.034520026, 0.0050555095, 0.008020992, 0.033606507, -0.0070694084, -0.021315495, 0.018187376, -0.011529745, 0.047337007, -0.03003547, -0.021190923, -0.003633323, 0.0074119787, 0.00776493, -0.00540154, 0.0040658615, 0.022519682, -0.014450245, -0.013183772, -0.010228669, 0.012450187, -0.01666484, -0.016360333, -0.01709392, -0.0068998532, 0.027723983, -0.024941897, -0.0034222442, 0.01193114, -0.003071023, 0.014560974, 0.023031807, 0.013827389, 0.004228496, -0.040305663, -0.00945356, 0.03230543, 0.005910205, 0.018367313, 0.04838894, -0.006830647, 0.006692235, -0.0016237493, -0.019972894, -0.035488915, 0.012284092, 0.0068341075, 0.014214943, -0.003072753, -0.005422302, -0.018810231, 0.0062735374, -0.00944664, 0.018727183, 0.0045330026, -0.020914098, -2.5692783E-4, -0.002968944, 0.001699876, -0.009799591, -0.027876237, 0.017536838, 0.021204764, -0.0016298048, 0.0067545203, 0.025080308, 0.018035123, -0.007709565, -0.015405289, 0.027350271, 0.026049195, 0.011322126, -0.017827505, 0.024166787, -0.006996742, -0.03806338, -0.008920672, -0.035848785, 0.03072753, -0.012657805, -0.0121249175, 0.0047406214, 3.696041E-4, 2.1064622E-4, -0.07335852, -0.023350155, 0.016401857, -0.008228611, -0.014339514, -0.015391448, -0.024997262, 0.061510425, -0.02689351, 0.0077926125, -0.015612908, -0.0285683, -0.024097582, 0.020997146, 0.0076057557, -0.017426109, 0.0051212553, -0.0011609332, 0.012318695, 0.014131896, -0.005449984, -0.002340898, -0.019446928, -0.011986505, -0.040250298, -0.0075019468, -0.025121832, 0.017799823, 0.027945444, 0.005276969, 0.020997146, -0.0065503623, -0.008616165, -0.010083336, -0.005038208, -0.021024829, -0.02870671, -0.009495084, 0.010844604, -0.03285908, 0.0010822112, -0.0039343694, 0.025287928, -0.017647568, -0.02080337, -0.016374175, -0.016678682, 0.020014418, 8.6637447E-4, -0.006252776, 7.828946E-5, -0.010664668, 0.0028149602, -0.0133291045, 0.022367427, -0.0069413767, 0.014152658, -0.017467633, 0.008650769, 0.008353182, -0.007335852, 0.013647453, -0.007280487, -7.412628E-5, 0.016886301, -0.014214943, -0.017550679, 0.0074188993, 0.026063036, 0.010602382, -0.007062488, 0.016969347, -0.02160616, 0.025384815, -0.026505956, -0.017024713, -0.012457107, -0.0029412613, -0.0069898213, -0.009363592, -0.022658093, -0.023377838, 0.0059621097, -0.03072753, 0.0077164858, 0.03781424, 0.024208311, -0.0074188993, 0.026519796, -0.040776264, 0.034935266, 0.025952306, 0.06261773, 0.00731509, -0.026090719, 0.002519104, -0.0077926125, 0.0013010757, 0.00843623, -1.9345281E-4, -0.025606276, -2.6114509E-5, -0.07917184, 0.02813922, 0.005546873, 0.006162808, 0.013183772, 5.17316E-4, 0.010560859, -0.014014245, 0.005840999, 0.021107877, -0.0023443582, -0.014948528, -0.013308343, -8.3912455E-4, -0.014602498, -0.019183945, -1.9907582E-4, -0.0024845009, 0.024734277, 0.014035007, 0.021620002, 0.006211252, -0.006827187, 0.0052977307, -0.027599413, 0.0063738865, 0.012180283, -0.005211223, 0.007979469, 0.0019619945, 0.025620116, -0.017869027, 0.007190519, 0.024346724, -0.024111424, -0.040333346, 0.003692148, -0.017066237, 0.009294386, -0.04110845, -0.028457569, -0.004567606, -0.022824189, -0.03997347, -0.019308517, 0.001956804, 0.014394879, -0.019613024, 0.014823957, 0.0041731307, 0.018090488, -4.061536E-4, -0.023710027, -0.047198594, -0.0023755012, 0.005706047, 0.005107414, 1.6847372E-4, 0.01720465, -0.005460365, 0.034603074, 0.009418957, 0.009197498, -0.017910551, 0.035101358, 3.2159232E-4, -0.028762076, 0.013079963, 0.0051247156, -0.011273682, -0.028374521, -0.005117795, 0.014934687, 0.002948182, 0.0037163703, -0.0064430926, -0.009951845, 0.0030589118, -0.007924104, 0.01777214, 0.008519277, -0.031336546, -0.016180398, 0.016000463, 0.010159463, -2.58658E-4, -0.02586926, 0.0031904036, -0.0076680416, 0.009799591, -0.03806338, 0.004176591, -0.014256467, -0.0038893856, 0.028762076, 0.0013573057, -0.030146198, -0.0032803714, 0.016291128, 0.015059258, -0.0036506245, 0.008180167, -0.016152715, -0.002948182, -0.020872574, 0.005422302, -0.0045260824, -0.005996713, 0.01990369, -0.012256409, -0.015571384, -0.01597278, -0.012540154, 0.024360565, -0.040554803, 0.002724992, 0.0010951874, -0.0038790046, -0.014948528, 0.012657805, 0.02386228, -0.0037682748, 0.014685545, -8.023588E-4, 0.013827389, 0.021315495, -0.0037405924, -0.024235994, 0.02992474, -0.0061593475, 0.0015389718, -0.00968194, -0.029204996, -0.008166325, -0.02080337, -0.035156723, -0.018491883, 0.0146578625, -6.4534735E-4, 0.09251478, 0.010754636, 0.008318579, -0.004536463, -0.012353298, 0.016706364, 0.010380923, -0.016484905, -0.024000693, -0.038672395, 0.014325673, -0.011633554, -0.03703913, -0.0043980507, -0.055420287, -0.0017889789, 0.008796101, 0.009557369, 0.014083452, -0.012913868, 0.022851871, -0.029315725, 0.004692177, 6.3596667E-6, -0.0035502755, 0.020664956, 0.020789528, 0.020055942, 0.0032267368, -0.037094496, 0.0037682748, 0.03676231, -0.02676894, -0.01810433, 0.012028029, 0.013432913, -0.018976327, 0.02544018, 0.003453387, 0.014893164, 0.006515759, 0.037758876, -0.009522766, -0.017841345, 0.016706364, -0.018478042, -0.008512356, -0.026533637, -0.032831397 ], - "id" : "370429cc-b123-4840-a9d7-c60e4e356b04", - "metadata" : { - "name" : "Swift AeroFlow Bike Helmet" - }, - "text" : "price: 136.99\nname: Swift AeroFlow Bike Helmet\nshortDescription: \ndescription: ## Overview\nSpeed and style meet in the Swift AeroFlow Bike Helmet. Designed for road racing and optimized for aerodynamics, this helmet combines lightweight construction, advanced ventilation, and a sleek design to enhance your performance on the road. The Swift AeroFlow also prioritizes safety with an integrated rotational force management system, ensuring maximum protection during any ride.\n\nProduct details:\n- Lightweight construction for optimal speed and comfort\n- Enhanced ventilation system for improved airflow and cooling\n- Integrated rotational force management system for enhanced safety\n- Adjustable fit system for a personalized, secure fit\n- Convenient sunglasses storage port for easy access on the go\n- Wide field of view design for better visibility\n- Crash Replacement Guarantee for added peace of mind\n- 30-Day Money-Back Guarantee for customer satisfaction\n\n## Features\n1. Aerodynamic Design: The Swift AeroFlow features an aerodynamic shape and sleek profile to reduce drag and improve speed. Its advanced design has been tested in wind tunnels for optimal performance.\n\n2. Ventilation System: Designed with multiple vents and specialized channeling, the helmet provides efficient airflow to keep you cool during intense rides. The improved ventilation system allows air to flow through the helmet, preventing overheating.\n\n3. Rotational Force Management System: The integrated rotational force management system provides additional protection by minimizing the rotational forces that can occur during an impact. This technology helps reduce the risk of head injuries.\n\n4. Adjustable Fit System: The Swift AeroFlow offers an adjustable fit system to ensure a comfortable and secure fit. The system utilizes a dial or similar mechanism that allows for easy adjustments to customize the helmet's fit according to your head shape and size.\n\n5. Sunglasses Storage Port: The helmet includes a convenient sunglasses storage port, equipped with a rubberized grip, to securely hold your sunglasses when not in use. This feature allows you to easily access and store your sunglasses during your ride.\n\n6. Wide Field of View: The Swift AeroFlow is designed with a beveled front edge that improves your field of view, providing better visibility while riding in various positions. This feature enhances safety by allowing you to see the road ahead without obstruction.\n\n7. Crash Replacement Guarantee: We stand behind the durability and performance of the Swift AeroFlow. In the unfortunate event of a crash within the first year of ownership, we offer a Crash Replacement Guarantee, providing a free helmet replacement.\n\n8. 30-Day Money-Back Guarantee: Customer satisfaction is our top priority. If you are unsatisfied with your Swift AeroFlow for any reason, you can return it within 30 days of purchase for a full refund.\n\n## Specs\n| Size | Small | Medium | Large |\n|---------------|-------------|------------|-------------|\n| Circumference | 51-56 cm | 55-60 cm | 59-64 cm |\n| Fit system | Adjustable | Adjustable | Adjustable |\n| Pad material | Moisture-wicking pads | Moisture-wicking pads | Moisture-wicking pads |\n| Buckle type | Lightweight buckle | Lightweight buckle | Lightweight buckle |\n| Includes | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag |\n| Weight | 250g | 270g | 290g |\n\n## Sizing\n| Size | Circumference |\n|:----:|:--------------------:|\n| S | 51 - 56 cm |\n| M | 55 - 60 cm |\n| L | 59 - 64 cm |\ntags: [helmet]" - }, - "d04ac3ec-baf1-480c-8626-bb9d114746c3" : { - "embedding" : [ 0.037097342, -0.0025184324, -0.030485397, -0.03002473, 0.010906998, 0.006076756, -0.0040985923, -0.011279597, -0.0114760585, -0.034008153, 0.014903972, -0.0020899433, -0.0028893382, 0.005998849, 9.3065144E-4, 0.010283741, 0.007960076, 2.4875237E-5, 0.02231531, -0.011936727, -5.017388E-4, 0.013684556, -0.017518941, -0.014903972, -0.013941988, -0.009369179, 0.039509077, -0.006279992, 0.0026166632, -0.036934752, 0.018751906, 0.0145381475, -0.016407918, -0.007872007, -0.007655222, 0.011625098, 0.032273874, 0.003891969, 0.020431992, 0.0275317, 0.021258485, -0.016272428, 0.006662753, 0.008203959, -0.019009339, 0.0010348099, 0.026501972, 0.0059446525, 4.035081E-4, 0.0071268086, -0.009389502, 0.032653246, -0.016367272, 0.0026556167, -5.004686E-4, -0.042273086, 0.012309326, 0.008840765, 0.04482031, -0.008386872, 0.002174625, 0.021393975, -0.042977635, 0.022897922, -0.012024796, -0.016882136, 0.009626611, 0.009660483, 0.0077771638, 0.014511049, 0.04449513, 0.02738266, 0.035579845, 0.0055212444, 0.009599513, -0.017505392, -0.0056906077, -0.0013328893, -0.0046507167, 0.009951789, 0.024605103, -0.014362009, 0.009111746, 0.0045660352, 0.030837674, -0.001043278, -0.020039069, 0.008285253, -0.009579189, 0.011096684, 0.0040613324, 0.015838858, -0.002166157, 0.0054839845, 0.013230663, -0.009030452, -0.008156537, 0.007838135, -0.0115234805, -0.010276966, -0.0031569323, 0.0010475122, -0.027585898, -0.016909234, -0.009674033, -0.014145224, -0.03002473, 0.005914167, 0.011706392, -0.009240462, -0.020919757, 0.019199027, 0.014890423, -0.0010144863, -2.1996061E-4, -0.041622728, 0.0550634, 0.010906998, 0.015933702, -0.010426006, 0.014294264, 0.036636673, 0.0038818072, -0.027802682, 0.014470402, 0.009667258, -0.008048145, -9.230301E-4, -0.003121366, -0.009768876, 0.010846027, -0.0012321181, 0.012573533, 0.029103393, -0.0045050643, 0.03322231, -0.012912259, 0.028995, -0.024008945, -0.023372138, 0.015879504, 0.013792949, -0.015215601, -0.007601026, -0.013725203, -0.006791469, -0.014971717, 0.015527229, 0.008854315, -0.010547947, 0.023995396, -0.006408708, 0.022139173, 0.02421218, 0.018928045, 0.015039463, 0.0126887, 0.030485397, -0.03132544, -0.0037937383, -0.019388713, 0.014158773, 0.019077085, -0.010466653, 0.026027754, 0.01768153, 0.012417719, -7.638286E-4, 0.008596882, -0.01827769, -0.032409366, 0.014375558, -0.012438042, 0.006767758, 0.011157655, 0.029374374, 0.015987897, -0.008183636, -0.0045863586, 0.0025269007, 0.024821889, 0.0033771046, 0.013650684, 0.0073029464, -0.0045660352, 0.018047355, 0.030864771, -0.025716126, 0.013996185, 0.0019442909, 0.029022098, 0.012078992, -0.0105073005, -0.0031518515, -0.60049456, -0.02942857, -0.014890423, -0.00877302, -0.010188897, 0.00943015, -0.0029587771, 0.018033806, -0.009104972, -0.014307813, -0.011537029, 0.018941594, 0.0030045053, -0.0039224545, -0.0044068336, -0.017315706, 0.012458365, -0.008847539, -0.010358261, -0.01781702, -0.03563404, -0.007960076, -0.012187384, 0.022152722, 0.017654432, 0.0074452115, -0.004681202, -0.02174625, -0.017640883, 0.010514075, -0.021556564, 0.039048407, -0.004945409, -0.008739147, 0.04232728, -0.040782686, 0.00482008, 0.0120383445, 0.017871218, 0.014158773, -0.016299525, 0.0073435935, 0.0013405107, -0.048343066, 0.009152394, 0.008617206, 0.02842594, -0.01508011, 0.0062901536, -0.032924227, -0.0020763944, 0.0043289266, 0.021813996, -0.00790588, -0.023588924, -0.030214416, 0.02566193, -0.008420744, 0.0050165416, 0.011706392, 0.0024845598, 0.010717311, -0.0073706917, -0.020404892, 6.1097817E-4, 0.012648053, -0.058694553, -0.036582477, 3.3830322E-4, -0.011868982, 0.0260955, 0.02392765, -0.016299525, 0.022803077, 0.016705997, 0.043682188, 0.031406734, 0.0032280649, -0.0010026308, 0.01898224, 0.015039463, 0.007492633, 1.5486158E-4, -0.008847539, 0.015906602, 1.3178583E-4, -0.022410154, -0.012343199, 0.020526834, -0.010243094, 0.032707445, 2.7182812E-4, 1.3940719E-4, -0.010514075, 0.012736121, 0.037097342, -0.010568271, -0.0048946, 0.025119968, -0.03883162, -0.015865956, -0.0057244804, 0.01008728, 0.0059209415, 0.024428966, 0.0027572347, 0.0067813075, -0.008718824, 0.017166667, -0.010771507, 0.016001446, -0.021299131, -0.031217046, -0.010846027, -0.00241004, -0.025201261, 0.015987897, 0.022518547, 0.010270191, -0.015188502, 0.00862398, -0.0015496743, 0.038127072, 0.010906998, -0.017600236, 0.0036955075, 0.027355563, 0.020377794, 0.0035634043, -0.037449617, 0.020675873, 0.019320967, 0.041839514, -0.0021678505, 0.031948697, 0.019348066, 0.012275454, 0.0061715995, 0.01871126, -0.021854643, -0.036907654, -0.008041371, -0.006547586, -0.021190738, -0.013874243, -0.019090634, -0.018928045, -0.008739147, 0.0019019501, -0.003471948, -0.01986293, -0.00423747, -0.023019861, -0.004765884, -0.010276966, -0.018738357, -0.032273874, -0.032382265, -0.032436464, -0.014673638, 0.017722178, 0.0020611517, -0.021353327, 0.0023575374, 0.009179492, 0.02002552, 0.024374768, 0.021719152, -0.0040206853, -0.033384897, -0.01008728, 0.003891969, -0.016516311, 0.028290449, -0.00920659, -0.0013354297, -0.020377794, 0.0046676532, 0.004654104, -0.022843724, 0.0059040054, 0.009701131, -0.06828729, 0.018670613, 0.014890423, 0.02334504, 0.025634833, 0.011496382, -0.03059379, 0.02045909, -0.012207708, -0.0013845451, -0.010493752, 0.013996185, 0.0030248289, -0.025214812, 0.013677781, 4.695598E-4, 5.207922E-4, 0.011530255, 0.027680742, -4.903068E-4, 0.018291239, -0.014863325, 0.0066356547, -0.010859576, 0.025418047, -9.797668E-4, 0.012377071, 0.015689818, 0.017166667, -0.03221968, -0.013576164, -0.0021966423, -0.009877269, -0.0056668967, 0.029536963, 0.029970532, 0.004359412, -0.023046961, -0.0057007694, 0.006588233, 0.01652986, -0.0029011937, -0.024076689, 0.02189529, -0.0017004077, 0.030837674, -0.0067203366, -0.042137593, -0.015215601, 0.019984871, 0.009213365, -0.009701131, 0.019049985, 0.021001052, 0.017044725, -0.018047355, 0.041080765, -0.019646145, 0.015405287, 0.033981055, 0.020811364, -0.0059243287, 0.017207313, -0.014456853, 0.026474874, 0.0110695865, 0.038208365, 0.016733095, 0.00724875, 0.009044001, -9.103278E-4, 0.025919363, 0.00781781, 0.003925842, 0.011530255, 0.013169692, 0.0038140619, 0.01724796, 0.028940804, 0.025201261, -0.005937878, 0.00928111, 0.020323599, -0.01370488, -0.005988687, -0.017275058, 0.0024473, -0.011896079, 0.014687187, -0.0038750328, -0.013969086, -0.0029435344, 0.009768876, -5.267199E-4, 0.0064696786, 0.0032382268, 0.020621678, 0.033141013, -0.022532096, -0.029699551, 0.014971717, 0.039210994, -0.012485464, 0.002835142, 0.0063477373, 0.012681926, -0.014023283, 0.020635227, 0.008129439, 0.026054854, -0.006523875, 0.00964016, -0.029889239, -0.017017627, 0.01333228, -0.023873454, -0.006943896, -0.019266771, -0.008102342, 0.0044034463, -0.016082741, -0.018873848, 0.030106023, -0.003222984, 0.023033412, -0.035877924, 0.016069192, 0.0074181133, 0.0026386804, -0.045579057, -0.012228032, 0.0030942678, 0.00768232, 0.0054230136, 0.0067169494, -0.039536174, 6.567063E-4, -0.03883162, -0.018751906, -0.008495264, -0.01913128, -0.0014336605, 0.015432386, 0.013637135, 0.0023863292, 0.01652986, -0.028073663, 0.016001446, -0.014470402, 0.0027961885, 0.006903249, 0.030783476, -0.021759799, 0.009030452, -0.0019019501, -0.024862535, 0.0018816264, -0.01682794, 0.013203564, -0.017938962, 0.010846027, 0.018765455, -0.0047760457, -0.0070116413, 0.015445935, 0.016136937, 0.025147066, -0.0021966423, 0.007899106, 0.0141316755, 0.0025269007, -0.0050131544, 0.00568722, 0.014511049, 0.0064019333, -0.009050775, -0.028995, 0.011110234, 0.013901341, -0.00790588, 0.025255458, 0.011584451, 0.00171311, 0.019348066, 2.0125126E-5, -0.003250082, 0.019049985, -0.0115234805, -0.0034363817, -0.0075874766, 0.0110221645, -0.042977635, 0.022003682, 0.02306051, -0.015716916, -0.004339088, 0.008048145, 0.018589318, 0.01174704, -0.006384997, -0.013393251, -0.03682636, 1.5679338E-5, -0.011503156, 0.014104577, 0.008251381, -0.010202446, -0.016570507, -0.019253222, 0.008542686, -0.021543015, -0.007953301, -0.014185872, -0.013969086, -0.008657853, 0.023101157, -0.009348855, -5.6059257E-4, 0.047936592, -0.051269665, 0.02551289, 0.011327019, -0.020852013, 0.016191132, -0.013657458, -0.0112254005, 0.0049386346, 0.017085372, 0.021150092, -0.011875756, 0.017952511, -0.009145619, 0.007235201, -0.017749276, 0.035877924, -0.022003682, -0.007045514, -0.013081622, 0.012505787, 0.030322809, -0.0012888549, -0.02509287, -0.0030316033, -0.020852013, 0.012289003, 0.020120362, 0.0014709204, -0.0056533474, 0.013914891, -0.0060869176, -0.0072419755, -0.028724018, -0.02220692, 0.001172841, -0.010608918, -0.01044633, -0.035037883, -0.006879538, 0.019537752, 0.024605103, 0.01768153, -0.009667258, 0.0066796895, -0.05002315, 0.0348482, 0.010744409, -0.0076619964, 0.045443565, 0.00985017, -0.008461392, -0.0030163608, 0.026840698, 0.025580635, 0.035444357, -0.018047355, -0.0025387562, -0.032571953, -0.04771981, -0.041405946, 0.018331885, 0.0060665943, -0.012295777, -0.029103393, 0.016611155, 0.01566272, 0.037205733, -0.0027419922, -0.01609629, -0.036907654, -0.009213365, -0.018399632, 0.01984938, -0.0057617403, 0.014592344, 0.0038851944, -0.030946065, -0.029293079, -0.004352637, -0.002155995, -0.030756379, -0.0028961129, 0.0275317, 0.031840306, 0.011604775, 0.022071429, 0.03579663, -0.012078992, 0.016597604, -0.01137444, -0.01037181, -0.04576874, 0.0082107335, 0.01508011, 0.011875756, -0.024483161, -0.025567086, -0.016841488, 0.020960404, -0.012471915, -0.0069371215, -0.006242732, -0.044278346, -2.764856E-4, -0.025269007, -0.014470402, -0.013996185, -0.014632991, -0.023155352, 0.026921993, -0.008888187, 0.031596422, 0.017180216, 0.0036311497, -0.006574684, 0.02292502, -0.0075265057, 0.031650618, 5.3180085E-4, -0.012221257, -0.004146014, -0.011550578, 0.021055248, -0.015012365, 0.008420744, 0.02017456, -0.015974348, -0.019388713, 0.0052739736, 0.012261904, -0.030349907, 0.014294264, -0.013264535, -0.010466653, -0.014917521, -0.003929229, -0.042706653, -0.02014746, 0.023155352, -0.007770389, 0.02769429, -0.0051689683, -0.008325901, 0.035877924, 0.0033787983, 0.010358261, -0.00587352, -0.009619837, 0.006384997, -0.012214483, -0.0033144401, -0.0126006305, 0.009585964, 0.017153118, 0.024428966, 0.028182056, -0.0016538328, -0.0062495065, 0.0028893382, -0.009226914, -0.018115101, -0.02698974, 0.014267166, 0.02261339, 0.023548275, -0.007960076, -0.012228032, -0.011713167, 0.019957773, -0.011909628, -0.010703762, 0.008400421, -0.025567086, 0.009735003, 0.008610431, -0.027938172, -0.0010026308, 0.032382265, -0.0035261442, 0.021637857, -0.023765061, -0.004823467, -8.874638E-4, 0.012349973, 0.051486447, -0.008827216, -0.008048145, 0.028805314, 0.012546435, -0.01696343, -0.004681202, 0.005670284, 0.01812865, -0.0117267165, 0.0121941585, -0.030946065, -0.0123161, -0.020106813, -0.003065476, -0.025919363, -0.019890029, 0.023277294, -0.019686792, -0.0010669889, -0.0073571424, -0.025160614, -0.015405287, -0.01796606, -0.020987503, -0.026908444, -0.0036209878, 0.01609629, -0.03872323, -0.019077085, -0.034035254, 0.012797092, 0.016990528, 0.007492633, -0.02320955, -0.009057551, 0.006445968, -0.027802682, -0.013657458, 0.016787292, 0.0013803111, 0.0011186447, 0.0035295316, -0.002572629, -0.009050775, 0.0033313765, -0.0049555707, -0.012749671, -0.01914483, 0.003776802, -0.015323993, 0.008021046, -0.013366153, -0.0022847112, 0.01210609, -0.006869376, -0.010398908, -0.010669889, 0.0065272623, 0.016136937, 0.0018223493, 0.009247237, -0.03381847, 0.024036042, 0.010432781, -0.004996218, 0.023724414, -0.012986779, -0.00478282, 0.023385687, 0.017952511, -0.016800841, -0.008441068, -0.055659562, 0.0061512757, -0.015987897, 0.0043932847, -0.035552748, 0.0069980924, 0.01784412, -0.010873125, -0.023236647, 0.019605497, -0.033411995, -0.04468482, 0.036717966, -0.0036040514, -0.030133123, -0.036040515, -0.0039732633, 0.032815836, 0.00692696, -0.030051827, -3.2496586E-4, 0.0013599874, -0.025106419, -0.0123161, -0.029780846, 0.023087608, 8.569784E-4, 0.01941581, -0.0042848918, 0.007147132, 0.0014709204, 0.028182056, -0.02522836, -0.013284858, -0.0101482505, 0.018155748, 0.0030587015, -0.011496382, -0.035444357, -0.01899579, 0.01898224, 0.0333578, 0.0023016476, 0.018928045, 0.0036684095, -0.011096684, -7.4731564E-4, -0.012519336, 0.025648382, 0.011279597, -0.009762102, -0.033141013, -0.024821889, 0.006611944, -0.0012736121, 0.009836622, 0.01766798, -0.009240462, -0.011448961, 0.0069506704, -0.011503156, 0.0012084072, -0.005697382, 1.1802506E-4, 0.029211786, 0.004400059, -0.0014743077, 0.043898974, 0.0032788739, -0.014145224, -0.0035159825, 0.017695079, -0.01080538, -9.899286E-4, 0.010649566, -0.036311496, -0.014280715, -0.012939357, 0.031135753, 0.010331162, -0.0016479051, 0.0053349445, -0.025119968, -0.0085697835, 0.021515915, 0.013305183, -0.025269007, -0.02028295, 0.01797961, -0.027043935, 0.010798605, 0.002987569, -0.004034234, -0.056906074, 0.018873848, -0.009884044, -0.027179426, -0.007953301, 0.026122598, -0.0108189285, 0.0053620427, 0.0071606813, 0.18947013, 0.012234806, 0.0031569323, 0.031515125, 0.008461392, -0.0046845893, -0.012200934, -0.006903249, -0.008048145, -0.0076213493, 0.010561497, 0.018060904, -0.006002236, 8.345377E-4, 0.04742173, -0.017180216, -0.04148724, -0.03536306, 0.0052976846, 7.6763926E-4, -0.007770389, 0.0046303933, -0.018304788, -0.029076295, -0.0041053668, 0.005148645, -0.010161799, -0.022952117, 0.021963036, 0.006141114, 0.014009734, -0.009633386, -0.002340601, 0.009552091, -0.024388317, 0.0038648709, 0.021014601, 0.006598395, 0.0027961885, 0.03579663, 0.013941988, -0.012851289, 0.05332912, -0.015120757, -0.0012126414, -0.0057278676, -0.026461326, 0.0013261148, -0.029022098, -0.010825703, -0.012939357, 0.008644304, 0.011706392, 0.020486187, -0.012051893, -0.019293869, -6.4061675E-4, -0.042408574, 0.004464417, 9.0185966E-4, -0.026921993, 0.040999472, 0.0050267032, 0.011577676, 2.764856E-4, 0.009552091, -0.024767691, -0.037151538, 0.014091028, -0.012078992, -0.0152562475, 0.011008616, -0.001652986, 0.0037124439, -0.01842673, -0.024550907, 0.013630359, 0.0056431857, 0.012709023, -0.012980005, 0.009552091, -0.0017088759, 0.015391738, 0.025323203, -0.0116792945, -0.027626544, 0.0048878253, 0.012024796, 0.013250986, -0.018629964, -0.0015877811, -0.017397, -0.005934491, 0.0025252071, -0.008000723, -0.00949112, -0.01841318, 0.022234017, -0.010141475, -0.009450473, -0.03780189, 0.058965534, -0.020486187, -0.002696264, -0.025878714, 0.013643909, -0.012153512, 0.043275714, 0.0060632066, -0.0304583, -0.00344485, -0.04032202, -3.827611E-4, -0.016800841, -0.009646934, -0.009450473, -0.0107105365, -0.008095566, 0.003250082, -0.0074858586, 0.011198303, -0.009125296, 0.0055889897, -0.0024862536, 0.011144106, -0.026935542, -0.023155352, 0.017058274, -0.006215634, -0.013027427, 0.01942936, 0.002216966, -0.005148645, 0.009619837, -0.028073663, 0.0011457428, 0.009138845, -0.001662301, 0.020784266, -0.02231531, -0.0030756379, 0.010541173, 0.0038242238, -0.008840765, 0.018589318, -0.019822283, -0.007899106, 0.009633386, -6.25374E-4, -0.009091423, -0.009545317, -0.016705997, -1.7275059E-4, -7.151366E-4, 0.020337148, 0.013176466, -0.011801236, -0.023317942, -0.0154594835, 0.016597604, -0.021732701, -0.015242699, 0.019497106, -0.025851617, -0.03232807, -0.014172322, -0.17071822, 0.005324783, 0.03259905, -0.015093659, -3.4317243E-4, -0.007601026, 0.017031176, -0.0038851944, -0.040023938, -0.013969086, 0.039752956, -0.015933702, -0.012573533, -0.03202999, 0.016611155, -0.009159168, -0.012126413, 0.0068863127, 0.018223492, 0.023575375, -0.0044949027, -0.027545251, 0.010724085, -0.010331162, -0.01297323, 0.0130071025, 0.016868586, 0.0391297, 0.030295711, 0.0036176005, -0.026894895, -0.02869692, 0.03536306, 9.4674097E-4, 0.0029536963, -0.0041900487, -0.0139284395, 0.0053078462, -0.012004472, 0.037666403, 0.0061241775, 0.015527229, 0.026651012, -0.009667258, 0.017654432, 0.03525467, 0.010195672, -0.014362009, 0.011977374, 0.007919429, 0.0406201, -0.024767691, 0.013400026, -0.010934096, -0.006015785, 0.012410944, -0.019727439, 0.016421467, 0.013582938, -0.023954747, -0.035742436, -0.015066561, 0.016177583, -0.01370488, -0.0011101766, -0.023114705, 0.0101482505, 0.05351881, -0.018833201, -0.010514075, -0.0052841357, -8.925447E-4, 0.0018088003, 0.014931071, 0.016502762, 9.077874E-4, -0.03522757, 0.021150092, 0.034441724, -0.006611944, 0.0060225595, 0.045795843, 0.010019534, 0.014971717, -0.03682636, -0.010026309, -0.018182846, -0.003453318, -0.013034201, -0.014036831, 0.0018799328, -0.018088002, -0.025214812, 0.010398908, 0.012363522, 0.008651079, 4.5643415E-4, -0.018318336, 0.011692843, -0.01349487, 0.0037734148, -8.86617E-4, -0.031975795, -3.666716E-4, 0.039102603, 0.023358589, 0.0074452115, 0.014104577, -0.0074181133, 0.020242304, -0.020472638, 0.018508023, 0.027775584, 0.016136937, -0.00928111, 0.02031005, 5.8430346E-4, -0.039969742, 0.006906636, 0.0013049444, 0.016340174, -0.015120757, -0.007797487, -0.0028910318, -0.0026166632, -0.0117267165, -0.06774533, -0.0027352176, 0.009701131, 0.021841094, -0.02682715, 0.00805492, -0.011787687, 0.017573139, -0.022708233, 0.023670217, -0.035877924, -0.022897922, -0.0023067284, 0.018806104, 0.010276966, 0.001625041, 0.006215634, -0.01986293, -0.029645355, 0.017315706, -0.021827545, -0.020852013, -0.0028046565, 0.01770863, -0.0077297417, -0.0046337806, -0.004112141, 0.014700736, 0.018033806, -0.01073086, -2.460002E-4, -0.022112075, -0.01022277, 2.6166634E-4, -0.0016724628, -0.026867798, 1.10403715E-4, -0.020675873, 0.008718824, -0.023236647, 0.0123161, 9.293812E-5, -0.002289792, -0.030133123, -0.018941594, -0.030539593, -0.009843396, 0.02234241, -0.018020257, -0.0033533936, -0.0053959154, -0.0077094184, 0.0026031141, 0.009572415, 0.023250196, -0.0015632234, 0.0071268086, 6.1351864E-4, -0.017586688, 0.0016131856, 0.012424493, 0.008373323, -0.021082345, 0.012546435, 0.021475269, -0.0010288821, 0.003817449, 0.016597604, 0.03276164, -0.0023795546, 0.0020916369, -0.003439769, 7.7864784E-4, 0.02131268, -0.03495659, -0.0060191723, -0.02292502, -0.026501972, 0.035877924, -0.020052617, -0.019984871, -0.022667587, 0.0029147428, -0.04395317, 0.002498109, 0.06102499, -0.002498109, 0.001154211, 0.011598, -0.056580897, 0.012885162, 0.024036042, 0.06216311, 0.017952511, -0.0174241, -0.0062766047, 0.012932583, -0.0023253583, -0.016705997, -0.027192974, -0.06216311, -0.013210339, -0.07695869, 0.03276164, 0.01681439, 0.00510461, -0.0195784, 0.016475664, 0.013488094, -0.0017596849, 0.007824586, 0.01624533, -0.017871218, 0.005223165, 2.6738233E-4, 0.007031965, -0.015134307, -9.6283044E-4, 0.018358983, -0.0063477373, 0.011740265, 0.014240067, 0.017004076, 0.016475664, -0.027477505, 0.03696185, -0.010480202, -0.0115234805, -0.013467771, 0.01376585, 0.017586688, 0.02682715, 0.0333578, -0.018006708, -0.0042171464, 0.04525388, 0.006520488, -0.009884044, -0.012187384, -0.0054738224, -0.017695079, -0.029943435, -0.014267166, 0.004132465, 0.0099450145, -0.021014601, -0.0073300446, -0.017126018, 0.021908838, 2.6410093E-5, 0.018833201, 0.00402746, 0.013474545, -0.023670217, -0.008867864, -0.047503024, -0.0017579913, -0.0062257955, 0.0045253877, -0.015567876, 0.022410154, -3.6963544E-4, 0.039075505, -0.0040884307, 0.0016258878, -0.028019467, -0.013372928, -0.018508023, 8.2437595E-4, 0.006340963, 0.017762825, 0.0072419755, -0.036148906, 5.8472686E-4, 0.005937878, 0.028995, 0.007872007, -0.002257613, 0.027287818, 5.1105383E-4, -0.030404104, 0.0027928012, 0.0073300446, 5.017388E-4, 0.0058430345, -0.0038750328, 0.011076361, -0.011699618, -0.022369508, 0.006114016, -0.005165581, 0.019524204, -0.034712706, 0.032571953, -0.0048912126, 0.013115495, 0.023548275, 0.004196823, -0.012322875, -0.022220468, 0.060699813, 0.039942645, 0.0025573862, -0.011489607, -0.004538937, -0.013901341, 0.0038140619, 0.013156143, -0.020987503, -0.010771507, 0.019903578, -0.0096943565, 0.002501496, -0.012438042, 0.0019375164, 0.021651406, -0.020716522, 0.0040748813, -0.0014489032, -0.019984871, -0.025323203, 0.018779004, 0.0052942974, 0.008813667, -0.00291813, -0.0014658396, 0.018941594, -0.015987897, 0.01581176, -0.0046744277, 0.025363851, -0.029347276, 0.01370488, -0.010378584, -0.013433899, -0.025987107, -0.008136214, 0.013250986, -0.0023202775, 0.016042093, -0.004376348, 0.11088555, 0.0022322086, -0.013969086, 0.005226552, 0.015852407, 0.014714285, 0.011191528, -0.018738357, 0.01001276, -0.033032622, -0.005246876, -0.0013769238, -0.015161404, 0.022071429, -0.028913707, 0.009294659, 0.0063714483, 0.0045592603, -0.0049928306, -0.011157655, 0.019890029, -0.021217836, 0.022708233, -0.003057008, -0.0077907126, 0.009735003, 0.014118127, 0.02261339, -0.0047760457, -0.01709892, 0.0051689683, 0.012410944, -0.016177583, -0.030322809, 0.0021729313, -0.0020255854, -0.024713496, 0.024469612, 0.023006313, -0.0060733687, 0.0062766047, 0.023114705, -0.016584055, -0.0041223033, 0.010337937, -0.037043147, -0.003209435, -0.036582477, -0.06774533 ], - "id" : "d04ac3ec-baf1-480c-8626-bb9d114746c3", - "metadata" : { - "name" : "Aero Pro X" - }, - "text" : "8mm clamp, 7 degree, 90mm length\nBrake\tShimano hydraulic disc, Ultegra lever, Ultegra caliper\nBrake rotor\tShimano RT800, centerlock, 160mm\nRotor size\tMax brake rotor sizes: 160mm front & rear\n\nWeight\nWeight\tM - 8.36 kg / 18.42 lbs\nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg).\n\n## Sizing\n| Size | Rider Height |\n|:----:|:-------------------------:|\n| S | 155 - 165 cm 5'1\" - 5'5\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" |\n| XL | 186 - 197 cm 6'1\" - 6'6\" |\n\n## Geometry\n| Frame size | S | M | L | XL |\n|--------------------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 50.6 | 52.4 | 54.3 | 56.2 |\n| B — Seat tube angle | 75.5° | 74.5° | 73.5° | 72.5° |\n| C — Head tube length | 12.0 | 14.0 | 16.0 | 18.0 |\n| D — Head angle | 72.5° | 73.0° | 73.5° | 74.0° |\n| E — Effective top tube | 53.8 | 55.4 | 57.0 | 58.6 |\n| F — Bottom bracket height | 26.5 | 26.5 | 26.5 | 26.5 |\n| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 |\n| H — Chainstay length | 41.0 | 41.0 | 41.0 | 41.0 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 6.0 | 6.0 | 6.0 | 6.0 |\n| K — Wheelbase | 97.1 | 98.7 | 100.2 | 101.8 |\n| L — Standover | 73.8 | 76.2 | 78.5 | 80.8 |\n| M — Frame reach | 38.8 | 39.5 | 40.2 | 40.9 |\n| N — Frame stack | 52.8 | 54.7 | 56.6 | 58.5 |\ntags: [bicycle, road bike]" - }, - "c7f6fd50-6df1-4612-b137-85f6f85578b2" : { - "embedding" : [ 0.01955665, 0.00801174, -0.028099746, -0.02394551, -0.0029259068, 8.10835E-4, 0.0016708376, -0.028541392, 0.010240673, -0.04132153, 0.01135169, 0.0058725155, -0.012048663, -0.0014180987, 0.0033899804, 0.0016337463, 0.02567069, -0.022082316, -8.936437E-4, -0.032378193, 0.016051082, 0.014712342, -0.019128805, -0.009467793, -0.02052275, -0.019142607, 0.03861645, -0.009943943, 0.02471839, -0.011137768, 0.011862343, 0.029341877, -0.016575538, 0.009046848, 0.02173728, 0.025436066, 0.0238489, 0.0068558687, 0.02507723, 0.019956892, 0.033785943, -0.0061554452, 0.014160285, 0.008336074, -0.030611608, 0.024511369, 0.0055585327, -0.003985168, -0.011703627, 0.0017484708, -0.013152779, 0.033730734, -0.009102054, 0.011220576, 0.011475903, -0.032792237, 0.023890303, 0.0018511191, 0.034752045, 0.0013818699, 0.0068282657, 0.017238008, -0.032516208, -0.013049268, -0.016064884, -0.025367059, 0.004188739, 0.0070525394, -0.0024359555, 0.012980261, 0.031329285, 0.004399211, 0.028375775, -0.0019201263, 0.011206775, -0.009716218, -7.879764E-4, -0.01316658, 0.012869849, 0.0027723657, 0.032102164, -0.0042128917, -0.006686801, -0.0066695493, 0.026305558, 0.016989581, -0.020481346, -0.0037229403, 0.0028586246, 1.17312295E-4, 0.00810835, 0.0024031769, -0.0013171756, 0.011261981, 4.1059303E-4, 0.019032195, -0.0024031769, 0.032267783, -0.0050685816, -0.012504111, 0.0023307193, -0.00658329, -0.028624201, -0.018452534, -0.036877465, -0.032184973, -0.019446239, 0.0061174915, 0.0043060514, -5.8311113E-4, -0.021143816, 0.028955435, 0.0013948088, 6.5384357E-4, 0.009260771, -0.02652638, 0.04093509, 0.016989581, 0.0056930967, -0.021668272, 0.024594178, 0.030059552, 0.0021254227, -0.019998297, 0.014084376, -0.017224206, -0.016768757, 0.0028586246, 0.036132187, 0.0048615597, -0.0014491519, 0.023683283, 0.01249721, 0.0040576253, -0.013221786, 0.02471839, -0.014008468, 0.009171061, -0.024635583, -0.014477718, 0.0044958214, 0.021088611, -0.0035038423, 0.007956534, -0.025298052, -0.0035262697, -0.022979409, 0.024690788, 0.00457863, 0.008715614, 0.019680863, -0.020564156, 0.035524923, 0.027713304, 0.0076322, -0.0037367416, 0.0018907982, 0.048222255, -0.013366701, -0.027299263, -0.0019235767, 0.0035504221, 0.01687917, -0.0078944275, 0.013573723, 0.010454596, 0.013504716, -0.014670938, -0.0011144668, -0.017721057, -0.02843098, 0.026126139, -0.031632915, 0.0013068245, 0.018328322, 0.030059552, 0.02147505, -0.0038471534, -0.0029655858, -0.01164152, 0.006265857, -0.0018114399, 0.0155956345, 0.032212578, -0.007784016, 0.019694665, 0.024939215, -0.035938967, 0.01458813, -0.019584253, 0.032792237, 0.032516208, 0.002996639, -0.0067316554, -0.59489757, -0.037622742, -0.029424684, -0.018424932, 0.0065694884, 0.025298052, -0.008846727, 0.011551811, -0.0056068376, 0.009012344, -0.0025446417, 0.010509802, -0.02012251, -0.0058104093, -0.002672305, -0.019515246, 0.012559316, -0.016906772, 0.014836555, -0.021433648, -0.035828557, -0.013235588, -0.003129478, 0.026567785, 0.0019097752, 0.009895638, 0.016230501, 0.0115587115, 8.293807E-4, 0.005082383, -0.04159756, 0.027354468, 0.0047960025, 0.011758832, 0.042425647, -0.04168037, 0.027809916, 0.014084376, 0.024028318, 0.032957856, -0.021392243, -0.0032881948, -0.0029069297, -0.019625658, -0.020715972, 0.0072250576, 0.024387157, -0.008570698, -0.002289315, -0.020081105, -0.010447695, 0.011220576, 0.003396881, 0.01325629, -0.021820087, -0.024207737, 0.0352765, -0.011455201, 0.013718638, 0.008273968, -0.0031915845, 0.0095644025, 9.065825E-4, -0.022675777, -0.029038245, 0.027133644, -0.03204696, -0.029700713, -0.0077495123, -0.020384736, 0.014243093, 0.0058138594, -0.015954472, 0.028486187, 0.005717249, 0.015968274, 0.05186584, 0.012814644, 0.0022565366, 0.010440795, 0.028707009, 0.016133891, -0.0074665826, -0.0011601842, 0.018935585, -0.008474088, -0.00135858, 0.0071491497, 0.027023233, 0.0061795977, 0.028403377, 0.012828445, -0.009612707, -0.010647817, -0.0145743275, 0.0486363, -0.010102659, 0.017831469, 0.029562699, -0.033785943, -0.0140912775, 0.011469002, 0.009792127, 3.5279948E-4, 0.030970447, 0.00829467, 0.011876145, -0.03682226, 0.035524923, -0.01173123, -0.0105305035, -0.01841113, -0.036408216, -0.012752537, -0.012731834, -0.0391133, 0.03320628, 0.0140912775, 0.0043198527, -0.025615485, 0.011745031, -0.019197812, 0.031025652, -0.006027782, 0.0019011493, 0.004913315, 0.016161494, 0.016961979, -0.022178926, -0.0039955187, 0.045241144, 0.023641879, 0.039334122, -0.0025222143, 0.023007011, 0.0171828, 0.01745883, -0.0061071403, -0.0032847442, -0.037650347, -0.025505073, 0.01182784, -0.009605807, -0.037429523, -0.030004345, -0.02183389, -0.017845271, 0.004902964, -0.006528084, 0.004285349, 0.0052341986, -0.027865121, -0.007328568, -0.019515246, 0.009909439, -0.002586046, -0.005741402, -0.011027356, -0.028927833, -0.016534133, 0.017086191, 0.013408106, -0.010068156, -0.01402227, 0.005372213, 0.018921783, 0.012303989, 0.033923957, -0.019529046, -0.06735106, 0.005392915, 0.018535344, -0.019515246, 0.01687917, -0.009502296, 0.0012611072, -0.0120969685, -0.013787645, 0.026816212, -0.021212824, 0.0120969685, 0.021033404, -0.043999013, 0.029259067, 0.016658347, -0.0020650416, 0.034199987, 0.035938967, -0.017155198, 0.01288365, 0.0147399455, -0.007107745, -0.008094548, 0.0037815964, -0.017389823, -0.03138449, -8.198922E-4, 0.0032881948, 0.010765129, -0.0038091992, 0.043253735, -0.0120969685, 0.015430017, -0.0066937017, 0.016230501, -0.030777227, 0.0052341986, 0.0051375884, -0.012559316, 0.01602348, 0.016106289, -0.029728316, -0.017665852, -0.0029586852, 0.0023393452, -0.0019874084, 0.02346246, 0.037153494, -0.017610647, -0.012428203, -0.009398785, -0.0017424327, 0.018838976, -0.011027356, -0.022275535, 0.015057378, 0.006421123, 0.026636792, -0.0037436425, -0.025905315, 0.0026981828, 0.025035825, 0.023710886, -0.012676629, 0.004454417, 0.035221294, 0.02223413, -0.010737525, 0.034310397, 0.00214785, 0.033040665, 0.019225415, 0.011469002, -0.009212466, 0.004847758, 1.8599606E-4, 0.03673945, 0.00534461, 0.026139941, 0.02147505, -0.0035607733, 0.0052341986, -8.0091524E-4, 9.7127684E-4, 0.020715972, 5.8785535E-4, 0.008087648, 0.009716218, -0.0022427351, 0.0022065062, 0.015816458, 0.02060556, -0.0011653596, 0.008977842, 0.012083166, -0.0029328074, -0.030197566, -0.008129052, -0.019956892, -0.03444841, 0.0021823538, -0.010040552, 0.005275603, -0.020343333, 0.0171828, -0.016851567, 0.0053066565, 0.013421907, 0.0038368022, 0.053273585, -0.014988371, -0.037650347, -0.011006654, 0.035331704, -0.014477718, -1.7111638E-4, 0.0069490285, -0.008501691, 0.011130867, 0.03842323, 0.014891761, 0.009950843, -0.0132286865, -0.0012645576, -0.009226267, -0.010772029, 0.025643088, -0.020591758, -0.012241883, -0.018162703, -0.019680863, 0.026277954, -7.6447075E-5, -0.031356886, 0.017127596, -0.023393452, -0.0025532676, -0.037457127, 0.009557502, -0.0058552637, 0.010592611, -0.025643088, -0.014615732, -0.017472632, -0.0031588061, 0.005027177, 5.3566863E-4, -0.017348418, -5.598212E-4, -0.0073906747, -0.006783411, 0.0041093808, -0.01660314, -9.842156E-4, 0.04347456, 0.012269486, 0.009405686, 0.014463916, -0.021337036, -0.0429225, -0.014098178, -0.017307015, 0.020729773, 0.029507494, -0.028541392, 0.006628145, -0.023986915, 0.0022565366, -0.004664889, -0.04314332, 0.013463311, -0.026553983, 0.0016164945, 0.016851567, -0.028196355, -0.018811371, 0.010992852, 0.009074451, 0.013104474, -0.0068938225, 0.022040911, 0.034338, 0.01001985, -0.007984137, 0.0044302642, 0.010102659, 0.0031070507, 0.0013999842, -0.029424684, 0.013946362, 0.0032226378, -0.012055564, 0.03958255, 0.011075661, 2.3586457E-8, 0.01917021, -0.005520579, 0.027409673, 0.024745993, 0.0023911006, 0.009315977, 0.004226693, 0.017955683, -0.022841394, 0.011324087, 0.004119732, -0.020495148, -0.014187887, -0.015761252, 0.005717249, -1.3941618E-4, -0.028596599, -0.0021305983, -0.025380861, -0.0022686129, -0.024166333, 0.022303138, 0.0057690046, 0.003653933, -0.00944709, -0.007501086, 0.0086466065, -0.02805834, -0.027313063, -0.029369479, -0.0043198527, -0.004164587, 0.013842851, 0.017113794, 0.004858109, 0.026471175, -0.055675037, 0.01736222, 0.021281831, -0.014519122, 0.0113447895, -0.0022996662, -0.003176058, -0.0016225326, -0.009115855, 0.005006475, -0.024842605, 0.01773486, 0.012221181, 0.0065108323, -0.006807564, 0.006752358, -0.018645754, -0.0077495123, 0.0029811126, 0.031439696, 0.013180382, -7.832321E-4, -0.020370936, 0.014422512, -0.002805144, 0.023986915, 0.020384736, 0.022385947, -0.0032260881, 7.043051E-4, 0.0014638159, 3.1506116E-4, -0.022675777, -0.0018838975, 0.01574745, -0.0021789034, -0.0039023592, -0.023007011, -0.0026395267, 0.01831452, 0.0048132543, 0.03825761, -0.026015727, 0.0028758764, -0.039278917, 0.03290265, -0.017790064, -0.01660314, 0.023600474, 0.027685702, -0.023145026, 0.0051582907, 0.013994667, 0.04184599, 0.017831469, -6.745457E-4, -0.012241883, -0.037070688, -0.030004345, -0.02089539, 2.2621434E-4, -0.002080568, -0.027409673, -0.0027827166, 0.004561378, 0.017831469, 0.020729773, 0.0065867403, -0.019377232, -0.023931708, -0.025905315, -0.017997086, 0.023835098, -0.017665852, -0.018176505, -0.015195393, -0.02470459, -0.039554946, -0.013760042, -0.034089573, -0.019045997, 0.0066937017, 0.011745031, 0.037153494, 0.027823716, 0.005806959, 0.018480137, -0.01010956, 0.011786436, -0.02395931, -0.010288979, -0.0352765, 0.0033485761, 0.023324445, 0.0033986063, 0.0038678555, -0.0127456365, -0.013049268, 0.013559922, 0.0022168574, -0.01687917, -0.02689902, -0.034669235, -0.00629691, -0.0059380727, 0.0048029036, -0.016064884, -0.04626245, -0.010413191, 0.034144778, -0.017127596, 0.01984648, 0.028762216, -5.826798E-4, -0.013318396, 0.02157166, 0.0040369234, 0.025629288, 0.010150964, -0.016106289, -0.011386193, -0.027865121, 0.04855349, -0.013207984, 0.020343333, -7.495911E-4, -0.02746488, -0.02184769, 0.012221181, -0.016823964, -0.033344295, 0.02165447, -8.267929E-4, -0.012649026, -0.019115005, -0.02832057, -0.04156996, -0.017320815, 0.01946004, -0.011006654, 0.026195146, -0.029617906, -0.0060208812, 0.04339175, -0.012000358, 0.0068248156, -0.019294422, 0.022855196, 0.011800237, -0.017238008, -0.02328304, -0.037181098, -0.007873725, 0.0074941856, 0.03453122, 0.054432906, -0.011434498, -0.019335827, 0.0018045391, -0.014712342, -0.013083772, -0.027906526, -0.012683529, 0.019736068, 0.011013554, -0.004902964, -0.032378193, -0.017941881, 0.004709744, 0.011779535, -0.0065039317, 0.033896353, -0.023448657, 0.014850357, 0.03845083, -0.020646965, 0.0066799005, 0.026981829, -2.8120447E-4, 0.023779893, -0.011938252, -0.0071698516, -0.004875361, 0.004092129, 0.047062933, 0.009412587, 0.008929536, 0.023255438, -0.008694911, -0.015292003, 0.010716824, 0.0077288104, 0.02423534, 2.7427679E-5, -0.0034555371, -0.01402917, -0.024276745, -0.0033813545, -0.029038245, -0.024511369, -0.028983038, 0.009315977, -0.0048684604, -0.003051845, 0.025491273, -0.026926622, -0.0038471534, -0.0031260278, -0.016754957, -0.036601435, 0.012435104, 0.014015369, -0.025422266, -0.025491273, -0.019998297, 0.019432437, 0.0035745748, 0.013497815, -0.005392915, -0.0017959132, 0.017872874, -0.027451077, 4.576042E-4, 0.025298052, 0.006455627, -0.011579414, 0.015222996, -0.012393699, -0.005858714, 0.019639459, -0.015485223, -0.03364793, -0.01450532, -0.00410593, -0.0030759973, 0.014070575, -0.029507494, 0.0061002397, -0.0023669482, 0.00515139, 0.0047338963, -0.017403625, 0.020853987, -0.012559316, -5.015963E-4, 0.0058690654, -0.019680863, 0.017569242, 5.675845E-4, -0.015084981, 0.023241637, -0.0107513275, -0.008998543, 8.3369366E-4, 0.0112343775, 0.005520579, -0.014519122, -0.02012251, -0.01745883, -0.02832057, -0.005675845, -0.03679466, 0.012241883, 0.036214996, 0.002917281, -0.031632915, 0.015250599, -0.04637286, -0.028292965, 0.0146295335, -0.026167544, -0.002460108, -0.024607979, -7.9099543E-4, 0.05802128, 0.028458584, -0.024497569, 3.765207E-4, -0.014601931, -0.045461964, 0.0036815358, -0.0089709405, 0.017748661, -0.015485223, 0.016271906, 0.005675845, 0.00496162, 0.021240426, 0.035690542, -0.0033071716, -0.014187887, 0.0066729994, 0.0071284473, 0.016258104, 0.008405081, -0.0381748, -0.01727941, 0.019473841, 0.012303989, 0.014601931, 0.02061936, -0.012800842, -0.00190805, -0.0020357133, -0.014146483, 0.03262662, 0.008115251, -0.0024083524, -0.039720565, -0.023766091, 0.0024928863, -0.004540676, -0.0010696121, 0.008515493, 0.002232384, 0.0024997871, -0.013076871, -0.0040817778, -0.010288979, -0.006286559, -0.008895032, 0.0238627, -0.022855196, 0.0030570205, 0.044440657, 0.0073423698, -0.013214885, 0.008929536, 0.028251562, -0.025629288, -0.02157166, 0.010047453, -0.011089463, -0.0065487865, -5.46451E-4, 0.025905315, 0.011993458, 0.009902538, -0.011206775, -0.0029949138, -0.019708466, 0.034227587, 0.0034520868, -0.026015727, -0.03577335, -0.010295879, -6.4521766E-4, 0.0058621643, 0.011324087, -0.0018045391, -0.022758586, 0.012248784, 0.0018252414, -0.0077909166, -0.024028318, 0.030197566, -0.018590549, -0.006528084, -0.0031726076, 0.17897716, 0.019404834, -0.009909439, 0.029535096, 0.012124571, -0.006659198, -0.009957744, 0.014601931, 4.226693E-4, -0.007183653, 0.036132187, 0.021392243, -0.0085914, -0.0011593215, 0.029921537, -0.0053066565, -0.024870208, -0.018866578, 0.0053687626, -0.017099993, -0.019115005, -0.010413191, -0.013270091, -0.035442114, -0.010006049, 4.6148588E-4, -0.005803508, -0.022358343, 0.014367306, 0.0034934913, 0.012655927, -0.030749623, -0.00515139, 0.0025636188, -0.024925413, -0.008549997, 0.013746241, -0.009302175, -0.0073147668, 0.03157771, 0.011482804, 0.0037401922, 0.027865121, -0.027437275, -0.0077012074, 0.014298299, -0.010772029, 0.0010178566, -0.030639213, -0.0013758318, -0.02231694, 0.0020495148, 0.0061209416, 0.013670333, -0.011510407, -0.020439943, -0.0044371653, -0.01287675, -0.00992324, 0.0053480607, -0.004637286, 0.021695875, 0.0043509062, 0.015706046, -0.0023393452, 0.006648847, -0.020564156, -0.028845023, 0.0067282054, -0.012269486, -0.0065384354, 0.013318396, 8.207548E-4, 0.003691887, -0.011869244, -0.025532676, 0.008439585, 5.913057E-4, -0.011510407, 0.0050996346, 0.008784621, -0.008694911, 0.006038133, -0.0074458807, 0.0028241212, -0.015761252, 0.016327111, -0.0070801424, 0.010613313, 0.0070249364, -0.01583026, -0.027119843, -0.017348418, -0.0072871638, -0.014422512, 0.007991037, -0.021502655, 0.021102412, -0.017610647, 0.008260166, -0.03166052, 0.04681451, -0.001116192, -0.010737525, -0.006914525, -0.010288979, -0.010744426, 0.049657606, -0.001459503, -0.02423534, -0.026553983, -0.032267783, 0.0033157975, -0.01668595, 0.013435708, -0.0071422486, -0.020191517, -0.021047207, -0.009336678, 0.0066419463, 0.027119843, 0.010979051, 0.024483766, 0.005641341, 0.024511369, -0.026567785, -0.03958255, 0.03806439, -0.0023496964, -0.024884008, 0.015236797, 0.010792731, 0.0067696096, -0.019253017, -0.013104474, 0.0027068087, 0.022468755, -4.4682185E-4, -0.007846123, 7.2188035E-5, -0.015899267, 0.0050306274, 0.0012645576, 0.005665494, 0.021102412, -0.014098178, -0.019970693, 0.0012680079, 0.0015379987, -0.006541886, -0.02585011, -0.010834136, 0.018700961, -0.027644297, 0.009654112, 0.013932561, -0.0077771153, -0.03099805, -0.0075424905, 0.0090261465, -0.025808705, 0.0039023592, -0.005972576, -0.013456411, -0.034890056, -0.026305558, -0.1745607, 0.004133533, 0.028265363, -0.020094907, -3.1204207E-4, 0.009702417, 0.020301929, 0.011600116, -0.032405797, -0.0014689915, 0.023724686, -0.012248784, -0.025505073, -0.033813544, 0.021406043, -0.020343333, -0.0108548375, 0.025505073, 0.0036470324, -0.004378509, -0.0028016937, -0.022523962, 0.028955435, -0.0038644052, -0.0133529, 0.0063486653, 0.0041266326, 0.05103775, 0.021406043, -0.0011248179, -0.009198665, -0.032405797, 0.030639213, 0.0010575359, 0.016478928, -0.012945757, 0.0072733625, 0.025546478, 0.0013163129, 0.02843098, 0.014477718, 0.015664643, 0.026471175, 0.009309076, 0.0033399502, 0.030970447, -0.010344184, -0.018383527, 0.031191269, -7.4182777E-4, 0.051286176, -0.021433648, -0.0064452756, -0.006628145, 0.021695875, 0.003291645, -0.008950238, 0.0030552952, 0.021392243, -0.013456411, -0.01612009, -0.021323236, 0.0073147668, -0.021323236, -0.02012251, -0.04264647, 0.0043371045, 0.030307977, -0.03386875, -0.009550601, 0.009999149, -0.011489704, 0.0027896175, 0.005020276, 0.013628929, 0.0066971523, -0.039168507, -0.015775053, 0.028292965, -0.017872874, 0.01823171, 0.035745747, -0.007563193, 0.009861134, -0.031550106, -0.017348418, -0.02718885, 0.01592687, 0.0010954898, 0.011648421, -0.02242735, -0.0018545694, -0.010979051, 0.0010808258, 0.0050409785, 0.007935832, -0.0047269957, -0.007307866, 0.003270943, 0.0059863776, 0.007908229, -0.010571908, -0.019667061, 0.014491519, 0.043170925, 0.013477113, 0.022358343, 0.037457127, 0.007280263, 0.009102054, -0.02012251, 0.012248784, 0.034338, 0.014643335, -0.018907983, 0.004540676, -0.007880626, -0.030473594, -0.016630743, 0.0015319606, 0.027037034, -0.011144668, -0.018562946, 0.006514283, -0.0012723209, -0.010972151, -0.07353411, -0.009495395, 0.011296485, 0.018659556, -0.0128491465, 0.0049685207, -0.012531714, 0.054212082, -0.007576994, 0.018369725, -0.0095091965, 0.002259987, -0.0024411308, 0.025615485, 0.0062693073, -0.0124006, 0.019322025, 4.2741356E-4, -0.0074803843, 0.013056168, -0.01650653, -0.016630743, -0.03014236, -0.004226693, -0.02815495, 0.0024532073, -0.027161248, 0.018631954, 0.016520333, 0.0033313243, 0.009467793, -0.0063693677, -0.015719848, 0.010916945, -0.0018580197, -0.016961979, 0.0042404947, -0.0048891627, 0.002432505, -0.044716686, 0.018714761, 0.0051651914, 0.013801447, -0.022648174, -0.030169962, -0.015416216, -0.0069179754, 0.023917908, 0.010599511, -0.013504716, 6.8144646E-4, -0.013076871, 0.017169, -0.015222996, 0.00371949, -0.00792203, -0.0057966076, -0.007432079, -0.023434857, 0.0200397, -0.015126386, 0.034503616, -0.03958255, 0.02422154, 0.026070934, -0.004426814, -0.0043647075, 0.008846727, 0.0333995, -0.003214012, -0.016575538, 0.015443819, -0.0013076871, 0.035718143, -0.013421907, 0.0032554162, -0.0032881948, -0.004447516, 0.003940313, -0.01773486, -0.019598054, -0.019791275, 0.0088605285, -0.01669975, -0.008460287, 0.05112056, 0.020150112, -0.0073975753, 0.02823776, -0.033068266, 0.024028318, 0.032516208, 0.059843075, 0.0045268745, -0.023007011, -0.0010238949, -0.009792127, -0.0052997554, -0.006383169, -0.005713799, -0.03789877, -0.011855443, -0.07364452, 0.031274077, 0.018052293, -7.2586985E-4, 0.00782542, 0.007818519, 0.018424932, -0.020067304, 0.009592005, 0.027892724, -0.01373244, 0.004461318, -0.005924271, -5.9303093E-5, -0.01889418, -0.006421123, 0.023710886, 0.013408106, 0.017859071, 0.020577958, 0.024690788, -0.0036884367, -0.006610893, 0.005572334, -0.040024195, 0.012738735, 0.001044597, 0.014450115, 0.005524029, 0.006379719, 0.020453744, -0.028458584, 0.017403625, 0.035359308, -0.01631331, -0.02720265, -0.021626867, -0.021530258, -0.003940313, -0.046014022, -0.030970447, -0.022924203, -0.022096116, -0.02326924, -0.020108707, -0.012055564, 0.009177962, -0.016520333, 0.028348172, 0.016672147, 0.022178926, -0.011986556, -0.021723477, -0.03701548, -0.009819729, 0.0077219093, -0.004920216, -0.0054136175, 0.0343656, 0.004226693, 0.04637286, 0.008232563, 0.021626867, -0.03193655, 0.024304347, -0.01994309, -0.02336585, 0.008888132, -0.012980261, 0.0057552033, -0.011006654, -0.015995877, 0.021240426, 0.023503864, -0.012800842, -0.011227477, -0.0038402525, 4.4595925E-4, -0.030280374, -0.0025722447, -0.0025929469, -0.022068514, -0.019611856, 0.012821544, 0.009081352, 0.015692245, -0.040024195, 0.0061657964, -0.0033209731, 0.014450115, -0.027782312, 0.006955929, -0.012538615, -0.008570698, 0.036104586, 0.0010385589, -0.026305558, -0.007873725, 0.030584006, 0.018383527, 0.015899267, 0.021088611, -0.0055895858, 0.00753559, -0.008480989, -0.0027533886, -0.007680505, -0.018521542, 0.008425783, 0.0010428719, -0.003833352, -0.017914278, -0.018521542, 0.022868996, -0.021268029, 0.008384379, 0.009529899, 0.0077978172, -0.027713304, 0.03615979, 0.01650653, 0.009592005, 0.01897699, -0.008405081, 0.023931708, -0.008342975, 0.0039541144, -0.014477718, 0.027796114, -0.033344295, 0.00677306, -0.008060045, -0.01135169, -0.010116461, -0.023076018, 0.0012326417, 9.548876E-4, 0.017969484, 0.011703627, 0.08280868, 0.004399211, 0.0030466693, 0.0080048395, 0.002154751, 0.015940672, 0.019625658, 0.0049581695, -0.0257673, -0.038671654, 0.006717854, 0.0035279947, -0.017196603, 0.0074044764, -0.04559998, 0.0030087153, 0.008018641, 0.009868034, -0.0048512085, -0.004281899, 0.027147446, -0.036767054, 0.016796362, -0.011103264, -0.016189096, 0.002613649, 0.030611608, 0.020357134, -0.002689557, -0.034972865, 0.017320815, 0.027547687, -0.025698293, -0.026774807, -0.012103869, -0.0026412518, -0.014960769, 0.039361726, 0.006231353, 0.0027827166, -3.0255358E-4, 0.029893933, -0.002347971, -0.020564156, 0.008688011, -0.024014518, -0.013622028, -0.025532676, -0.019970693 ], - "id" : "c7f6fd50-6df1-4612-b137-85f6f85578b2", - "metadata" : { - "name" : "Velocity Pro-X Road Bike Helmet" - }, - "text" : "price: 140.99\nname: Velocity Pro-X Road Bike Helmet\nshortDescription: An innovative road bike helmet that combines lightweight design, enhanced ventilation, and advanced safety features for a fast and secure riding experience.\ndescription: ## Overview\nLightweight, sleek, and aerodynamic, the Velocity Pro-X Road Bike Helmet is designed to optimize performance and protection. With its advanced ventilation system and state-of-the-art safety features, this helmet ensures a comfortable and secure ride for road cycling enthusiasts.\n\nProduct Details:\n- Lightweight construction for improved speed and comfort\n- Enhanced ventilation system for superior airflow and cooling\n- Advanced safety features for maximum protection\n- Adjustable fit system for a customizable and secure fit\n- Convenient storage options for sunglasses\n- Wide field of view for improved visibility\n- Crash Replacement Guarantee for added peace of mind\n- 30-Day Satisfaction Guarantee for customer satisfaction\n\n## Features\n1. Lightweight Design:\n - Incorporates high-quality materials to reduce weight and enhance speed.\n - Streamlined profile and optimized components ensure a lightweight feel without compromising safety.\n\n2. Enhanced Ventilation System:\n - Strategically placed vents and channels to maximize airflow and keep riders cool during intense rides.\n - Improved sweat management for added comfort and performance.\n\n3. Advanced Safety Features:\n - Utilizes a cutting-edge impact protection system to mitigate rotational forces and enhance overall safety.\n - Provides reliable head protection for road cycling accidents.\n\n4. Adjustable Fit System:\n - Equipped with a user-friendly fit system that allows riders to customize the helmet's fit.\n - Provides a secure and comfortable fit, ensuring optimal protection.\n\n5. Convenient Storage Options:\n - Features a dedicated docking port for securely storing sunglasses during rides.\n - Easy and quick access to sunglasses without compromising safety or convenience.\n\n6. Wide Field of View:\n - Unique beveled design above the brow enhances the rider's field of view.\n - Ensures excellent visibility, especially when in riding positions such as hoods or drops.\n\n7. Crash Replacement Guarantee:\n - Provides a free helmet replacement within the first year of ownership if involved in a crash.\n - Demonstrates our commitment to customer safety and satisfaction.\n\n## Specifications\n| Size | S | M | L |\n|---------------|------------------------|------------------------|------------------------|\n| Circumference | 52-56cm | 55-59cm | 58-62cm |\n| Fit system | Adjustable BOA system | Adjustable BOA system | Adjustable BOA system |\n| Pad material | Moisture-wicking pads | Moisture-wicking pads | Moisture-wicking pads |\n| Buckle type | Lightweight buckle | Lightweight buckle | Lightweight buckle |\n| Includes | Travel bag | Travel bag | Travel bag |\n| Weight | 250g | 270g | 290g |\n\n## Sizing\n| Size | Circumference |\n|:----:|:----------------:|\n| S | 52 - 56 cm 20\"-22\" |\n| M | 55 - 59 cm 21.5\"-23\" |\n| L | 58 - 62 cm 23\"-24.5\" |\ntags: [helmet]" - }, - "f28a57cf-d6f7-445a-9211-dedfa4d3a127" : { - "embedding" : [ 0.03343262, 0.013766774, -0.034359034, 0.0071252077, 0.018855235, 0.01236353, -0.01426404, -0.021634474, -0.0069480995, -0.03814643, 0.0038759497, 0.011260008, -0.004642284, -0.0034536142, -0.002074212, 0.0013172439, 0.023582667, -0.026021313, 0.014509266, -0.03749249, 0.013215013, -0.011886699, -0.017778961, -0.020312972, -0.025285633, -0.007186515, 0.035612416, -0.011512048, 0.0128812315, -0.0021491426, 0.009223262, 0.021975068, -0.013991565, 0.0122204805, 0.006982159, 0.0026515173, 0.02019036, -0.0055721034, 0.03858239, 0.0141822975, 0.03599388, 0.017601851, -0.015054216, 8.7447284E-4, -0.0032356346, 0.0283101, 0.017329378, 0.026103055, 0.017424744, -0.0025016563, -0.009625161, 0.040980164, -0.012847172, 0.0050203423, -0.006426992, -0.02959073, 0.010415337, 0.017588228, 0.036784057, 0.029182017, 0.0049079466, 0.019958757, -0.044386093, -0.028010378, -0.045040034, -0.017574605, 0.012479331, 0.017942445, -0.0011776007, 0.017928822, 0.014781741, 0.00958429, 0.029481739, 0.019522797, 0.0062396657, -0.016457459, -0.009781834, 0.0048159864, 0.0061068344, 0.018664502, 0.03171603, 0.013834892, -0.007840454, 2.7141013E-4, 0.02959073, 0.017901573, -0.00958429, -0.012445272, -0.001978846, 0.0059399437, 0.013446616, 0.007894948, 0.021811582, 0.022574512, 0.010619693, -0.0152177, -0.02615755, 0.0059501617, -0.0041348003, -0.013344438, 0.010919415, 0.012165986, -0.009638785, -0.017179517, -0.038364407, -0.028228357, -0.024481833, -8.03374E-4, 0.011927571, -0.0068254857, -0.030326411, 0.025421869, -0.009809081, 0.010326783, 0.016689062, -0.033078402, 0.043105464, 0.023732528, 0.02461807, -0.030135678, 0.026539015, 0.0250949, 0.003763554, -0.017792584, 0.013548794, -8.0805714E-4, -0.021893324, -0.008807738, 0.015680907, -0.011246384, 9.0342324E-4, 0.0101496745, 0.02465894, 0.021130396, -0.028909544, 0.01719314, -0.01931844, 0.01934569, -0.024985911, -0.022029562, 0.0071252077, 0.019291194, -0.01832391, -4.3638493E-4, 8.67661E-4, 0.0029308037, -0.0151223345, 0.0064303977, 0.017819831, -0.0046865614, 0.015708154, -0.0074930484, 0.010156486, 0.027492676, 0.015422056, -0.0024045873, -6.42018E-4, 0.012104679, -0.014400276, -0.0057083406, -0.008548887, 0.01726126, -0.00395088, -0.008971223, 0.026661629, 0.014495643, 0.004155236, -0.014522891, -0.011532483, -0.028964039, -0.012084244, 0.023323815, -0.02344643, 0.020026876, 0.008971223, 0.005868419, 0.020462833, -0.010067932, -0.022710748, 0.0025033595, 0.039808523, 3.6549897E-4, 0.023092212, 0.01086492, -0.006014874, 0.004138206, 0.008971223, -0.024168488, 0.02253364, -0.024345595, 0.016443836, 0.01613049, 0.019986004, -0.007765523, -0.6024956, -0.039427057, -0.011055652, -0.009298192, 0.007676969, 0.03384133, 0.011716403, 0.017397497, 0.01543568, 0.0013002142, -0.006409962, 0.014400276, 1.830688E-4, -0.009652409, -0.040244482, -0.03533994, 0.006079587, -0.011219137, -0.018337533, -0.013964318, -0.024577199, -0.0064133685, -0.018228544, 0.0046865614, 0.023473676, -0.0051088966, 0.0061613293, -0.010435773, -0.0025561512, 0.021634474, -0.021593602, 0.05242409, 0.0072750687, -0.013787209, 0.03672956, -0.030735122, 0.015013345, 0.0035796335, 0.03427729, 0.030380905, -0.009856764, 0.0022121524, -0.0038827616, -0.0156127885, -0.014277663, 0.005643628, 0.027383687, 0.003458723, 0.005234916, -0.03343262, -8.957599E-4, 0.009168766, 0.013548794, 0.018664502, 3.8082566E-4, -0.023936884, 0.04937238, -0.012179609, -0.010061121, 0.016648192, 0.014917978, 0.021062277, -0.002171281, -0.023582667, -0.016253103, 0.021007784, -0.02926376, -0.022724373, 0.011355374, -0.003668188, 0.006300973, 0.028691564, 0.010292724, 0.023105837, 0.014836236, 0.02008137, 0.04217905, 0.010912604, -0.0107899895, 0.026103055, 0.016770804, 0.00495563, -0.008760055, -0.03408656, 0.037764963, -0.0048227985, 0.0032220108, 0.0059705973, 0.022683501, 0.006587071, 0.010544763, 0.01104884, -0.002968269, -0.02183883, -0.0034229609, 0.05190639, 0.0066517834, 0.030081183, 0.019958757, -0.041715845, -0.021198515, 0.0037260887, 0.019795272, 0.01020417, 0.023623537, -0.0022411027, 0.010435773, -0.03640259, 0.019877015, -0.028609822, 0.009815893, -0.03553067, -0.036130115, 0.0044208984, -0.024849674, -0.026539015, 0.016307598, 0.0056708753, 0.016743558, -0.044794805, 3.9700384E-4, -0.018487394, 0.029972194, -0.01499972, -0.005841172, 0.009059777, 0.017247636, 0.009863577, -0.016103242, -0.019999627, 0.030517142, 0.029100275, 0.04046246, -0.0066620014, 0.028664317, 0.009270945, 0.007663345, 0.009754587, 0.0032203079, -0.028228357, -0.028282853, -0.0036886234, -0.006072775, -0.04114365, -0.0103199715, -0.009468488, -0.0042744437, 0.017329378, -0.019182203, -0.0046695317, -0.008964411, -0.012997033, -0.020748932, -0.0014849859, -0.004788739, -0.021975068, -0.002123598, -0.03419555, -0.040080998, -0.019195829, 0.029454492, -0.0050033126, -0.0023296569, -0.016552825, 0.024890544, 0.0033940102, 0.013140082, 0.013603289, -0.020926042, -0.02600769, 0.011498423, 0.010674188, -0.006386121, 0.017942445, -5.7943404E-4, 0.011130583, -0.033895828, -5.1685004E-4, 0.019808896, -0.012888043, 0.0070162183, 0.028446337, -0.039699532, 0.024182111, 0.013739526, 0.013235448, 0.016620943, 0.02301047, -0.005623192, 0.009686468, 0.0020112023, 1.8072722E-4, -0.0272202, -0.0012491252, -0.019877015, -0.0065904767, 0.009522984, -0.0021372219, 0.003906603, 0.011409869, 0.027792398, 0.0031879516, 0.0132013885, 0.0023041123, 4.1935526E-4, -0.013085587, 0.005769647, 0.0035762277, 0.016402964, 0.0093799345, 0.021743463, -0.01916858, -0.0064133685, -0.016702686, -0.013133271, -0.0031130211, 0.008031186, 0.03602113, -0.013364874, -0.012847172, -0.017765336, 0.016580073, 0.026198423, -0.020599071, -0.008528451, 0.007186515, 0.004601413, 0.052969042, 0.0063452497, -0.019522797, -0.008187858, 0.0379012, 0.035721406, -0.032615196, -0.0023415776, 0.034849487, 0.021634474, -0.016007876, 0.021593602, -0.012104679, 0.032288227, 0.02194782, 0.019032342, -0.017983316, 0.029018532, 0.017424744, 0.0136714075, 0.0053711534, 0.010497079, 0.019005096, 1.5230899E-4, -0.0037363064, -0.009536607, -0.0037465242, 0.009652409, -0.008562511, 0.011764086, -0.0040087807, -0.005756024, 2.9993482E-4, 0.0077518993, 0.020898793, 0.027819645, 0.014740869, -7.0800795E-4, -0.0058582015, -0.018460147, -0.009216449, -0.02172984, -0.041061904, 0.001289145, -0.024209358, 0.022465521, -0.00300914, 0.019454679, 0.0067437436, 0.0066756248, -0.017329378, 0.024863297, 0.04561223, 0.005783271, -0.031552546, -0.0065496056, 0.03354161, -0.015244948, -0.021661721, -0.0052110744, -0.0013453428, 0.01836478, 0.041198142, 0.0135011105, 0.01375315, -0.017928822, 0.0019175392, -0.027111212, 0.013746338, 0.036293603, -0.017969692, 0.003068744, -0.010769554, -0.0024386467, 3.1079122E-4, 0.007336376, -0.030380905, 0.03438628, -0.019468302, 0.009073401, -0.019291194, 0.03343262, -0.0060046567, 0.0025919136, -0.0357759, -0.010190546, -0.01832391, -0.0010728684, 0.008848609, -0.0038316725, -0.013698655, 0.012704123, -0.030299162, -0.0022342908, -0.0082287295, -0.020680813, -0.021307506, 0.047138087, 0.014659127, -0.01730213, 0.018759869, -0.028364595, -0.014604633, -0.01854189, -0.027056716, 0.008092492, 0.015313067, -0.009080213, -5.6495884E-4, -0.0032969413, -0.01499972, -0.017274883, -0.021239387, 0.013834892, -0.043214455, 0.007567979, -0.0024199141, -0.03596663, -0.020490082, 0.013759961, -0.00760885, 0.016593697, 1.8434602E-4, 0.012009313, 0.011648284, 0.008528451, -0.021988692, -0.011348562, -0.0050680256, 0.015149581, -0.0020605882, -0.031443555, 0.010721871, -0.006518952, 0.004301691, 0.011205513, 0.010156486, -0.012492956, -0.0043629976, 0.003162407, 0.008044809, 1.7710842E-4, -0.0055755093, 0.012588321, 0.0010771257, 0.016280351, -0.017956069, 0.025231138, 0.0045775715, -0.013051528, -0.015353938, -0.017765336, 0.034577012, -0.018936977, -0.03397757, -0.023841517, -0.026566263, -0.0071115843, -0.02553086, 0.0103199715, -0.011423493, 0.0014807285, -0.01927757, 0.002471003, -0.0058173304, -0.0033531392, -0.014808988, -0.04038072, -0.010844485, -0.012969785, 0.022084057, 9.15344E-4, 0.004104147, 0.014740869, -0.045802962, 0.0062941606, 0.021797959, -0.02915477, 0.012077432, -0.004254008, -0.021021407, -0.016539201, -0.006324814, 0.023800647, -0.0059944387, 0.032724187, -5.458005E-4, 0.0044822055, -0.0135419825, 0.030953102, -0.012499767, -0.004410681, -0.0017089259, 0.022424651, 0.025653474, 0.019100461, -0.009631973, 0.004005375, -0.007009406, 0.012349906, 0.02253364, 0.018337533, 2.0584596E-4, 0.019904261, 0.012043373, 0.011661908, -0.021893324, -0.013085587, -0.0010498783, -0.0018494206, 0.006570041, -0.038800366, 0.005888855, 0.021416495, 0.016784428, 0.0013606695, -0.012601946, 0.017492862, -0.045012787, 0.028991286, -0.0033650598, -0.022819739, 0.031579792, -0.002866091, 0.001310432, 0.013174142, 0.0189506, 0.05555755, 0.02472706, 0.003606881, -0.0069889706, -0.022152176, -0.026974974, -0.0080788685, -0.01708415, 0.012288599, -0.021525485, -0.017220387, 0.016811676, 0.021062277, 0.02772428, 0.015176829, -0.020462833, -0.029018532, -0.0014815801, -0.010381278, 0.031198328, -0.021362, -0.020272102, -0.021607228, -0.02999944, -0.014591008, -0.020067746, -0.018896107, -0.017601851, 0.0045741657, 0.026865985, 0.02600769, 0.0043221265, 4.3808788E-4, 0.012056996, -0.002373934, 0.0044311164, -0.024495456, -0.021062277, -0.03054439, 0.022874234, 0.047219828, 0.0032220108, 0.0067505552, -0.02761529, 0.0045741657, 0.03138906, -0.008651065, -0.02465894, -0.0050237486, -0.024277477, 0.009264133, -0.022520017, -0.0066960608, -0.021934196, -0.040680442, -0.009318627, 0.036920294, -0.0074113063, 0.030353658, 0.027751526, 0.0060353098, -0.0020878357, 0.034250043, -0.0027928634, 0.019672658, 0.006478081, -0.0102995355, -0.02850083, -0.020871546, 0.03452252, -0.010006625, -0.0010447694, 0.002121895, -0.028037624, -0.012533827, 0.008746431, -0.009012094, -0.008201482, 0.011661908, -3.6507324E-4, -0.024740683, -0.022710748, -4.431968E-4, -0.04784652, -0.007813206, 0.010040685, -0.02871881, 0.011750462, -0.022724373, -0.0068016443, 0.032369968, 0.015871638, 0.012540638, -0.008848609, 0.017070526, 0.009121084, -0.0168253, -0.018841611, -0.0352582, -0.0067846146, 0.002821814, 0.035067465, 0.021498237, -0.028882295, -5.585727E-4, 0.0029801896, -0.0060114684, -0.009543419, -0.024849674, -0.011368998, 0.0059978445, 0.030462649, -0.011682344, -0.019672658, -0.0020060935, 0.013153706, -0.007595226, -0.0031607042, 0.026511768, -0.014073308, -0.0027077151, 0.02568072, -0.023855142, 0.01038809, 0.010994346, -0.03395032, 0.0125610735, -0.008780491, -0.013841704, 0.008112928, 0.010108803, 0.041824833, -0.0041279886, 0.0026821708, 0.028119367, 0.0017472426, -0.012888043, 0.0013010657, 0.006641566, 0.032397218, -0.008201482, 0.009427617, -0.0021389248, -0.01730213, -0.0057253703, -0.010306347, -0.022288414, -0.022506393, 0.02077618, -0.008003938, -0.015272195, 0.01170278, -0.016838923, -8.717055E-5, -0.0023466866, -0.029209265, -0.014114179, -0.0035149208, -0.0058139246, -0.033814084, -0.0067471494, -0.013317191, 0.025081277, 0.019372936, 0.014591008, -0.016798053, 0.0031760307, 0.02023123, -0.030053936, -0.011498423, 0.027588041, -0.0017523515, -0.010272288, 0.01934569, -0.0030108432, 0.009161955, 0.022983223, 0.0027332597, -0.02301047, -0.008562511, -0.0076292856, -0.017751712, 0.009121084, -0.020748932, 0.0040803053, 0.008678312, 0.019059591, -0.009386746, -0.018637255, 5.0280057E-4, -0.009223262, -0.016580073, 0.006876575, -0.026266541, 0.021266634, 0.006031904, -0.005946756, -0.0017046685, -0.0066041006, -0.017383872, 0.0015428868, 0.010381278, 0.0040258104, -0.006679031, -0.028800553, -0.009305004, -0.02980871, 0.010633317, -0.031171082, -4.1509786E-4, 0.009148331, -0.0075747906, -0.036157366, 0.021920573, -0.014386653, -0.01916858, 0.006876575, -0.020830674, -0.0114507405, -0.034141053, -0.0047819274, 0.042097308, 0.029617976, -0.006386121, 0.014509266, -0.0024454584, -0.050925482, -0.0062941606, 0.0031368625, 0.018501017, 0.01671631, 0.024018627, 0.024931416, -0.0026447056, 0.019590916, 0.031498052, -0.014795365, -0.008773679, -0.0036409404, 0.033487115, 0.011539294, 0.009666032, -0.058908984, -0.033677846, 0.019250322, 0.016198609, 0.018896107, -0.0059978445, -0.015204077, 0.01675718, 0.021212138, -0.023705281, 0.026770618, 0.024863297, 0.008698748, -0.042260792, -0.01294935, -0.006464457, -0.010231417, 0.005643628, 0.00231433, -0.024577199, -0.01284036, 0.0058105183, -3.5932573E-4, -0.006883387, -0.012383966, -0.0056606573, 0.010735495, 0.0010626505, -0.027192954, 0.051960886, 0.010687812, -0.016907042, 0.009298192, 0.024045873, -0.0047648977, -0.0062260423, -0.0042369785, -0.022819739, -0.001977143, -0.004560542, 0.024331972, 0.013576041, 0.0041586417, 3.8465735E-4, -0.0028848236, -0.030081183, 0.016144114, 0.007070713, -0.0135215465, -0.027601665, -0.0080788685, 0.0030551201, 0.007404494, 0.0031777336, 0.009189202, -0.034549765, 0.009066588, -0.002530607, -0.03877312, -0.017424744, 0.044822052, 0.010565198, -0.0045537297, 0.003709059, 0.19389285, 0.027737902, -0.0065802587, 0.040217236, 0.01873262, -8.67661E-4, 0.0053098467, 0.011845828, 0.0037942072, -0.010217793, 0.012969785, 0.0069617233, -0.011423493, -0.002324548, 0.021893324, -0.0143321585, -0.04964485, -0.019073214, 0.008943975, -0.015844392, -0.019100461, -0.0066347537, -0.014454772, -0.033568855, 0.0060932105, 0.014005189, -0.01554467, -0.02553086, 0.017792584, 0.008637441, 0.008037997, -0.015531046, -0.005779865, 0.017329378, -0.02637553, -0.00543246, 0.015503799, -0.0016953022, -0.013964318, 0.034413528, -0.01623948, 0.0030840705, -6.122161E-4, -0.017942445, -0.011948006, 0.0090393415, -0.023037719, 0.011934383, -0.008916727, -0.014100554, -0.030735122, 0.013705467, -0.011655096, 0.0275063, -0.018392028, -0.014686375, 0.0149724735, -0.010033873, 0.009815893, -0.008187858, -0.0272202, 0.028582575, -0.0069753467, 0.015054216, 0.0059671914, -1.0015566E-4, -0.031852268, -0.025735216, 0.028555326, 0.001460293, -0.022915104, 0.0013802536, 0.0114303045, 0.0066620014, -0.0029887045, -0.010824049, -0.0057492116, 0.0068118623, -0.005102085, 0.013337626, 0.012908479, 0.0046252543, 0.013044716, -0.01912771, 0.013385309, -0.022247542, 0.0027877546, -0.0015599164, 0.008153799, -0.0056606573, -0.014086931, -0.019413806, -0.013834892, -0.01437303, -0.006665407, -0.0119207585, -0.026348284, 0.01569453, -0.0037771775, 0.002319439, -0.02724745, 0.041715845, -0.014591008, 0.001606748, -0.02425023, -0.011253197, -0.02322845, 0.022669878, 0.0038929794, -0.03588489, -0.010926227, -0.03258795, -0.0013794021, -0.006130676, 0.011334939, -0.0019345689, -0.009073401, -0.038091935, 0.012683688, -0.0031760307, 0.027479053, -0.0012993627, -0.002081024, -0.0065972884, 0.026607133, -0.023623537, -0.007036654, 0.017288506, -0.011334939, -0.02172984, 0.01708415, 0.025503613, -0.0014500752, -0.013303567, -0.0069480995, -0.009468488, 0.005435866, -0.018896107, -0.007336376, -0.017016033, -0.012935726, 0.0055312323, 0.015626412, 0.011416681, 0.013705467, -0.028282853, 0.0029870016, -0.021307506, -0.015163206, -0.009563855, -0.013903011, -8.076314E-4, 0.0011954819, -0.027860517, 0.019631786, 0.011913947, -0.008657877, -0.019904261, -0.010619693, 0.0093594985, -0.020694437, -0.004165454, 0.0067505552, 0.0120706195, -0.014917978, -0.034250043, -0.17231287, 0.015449303, 0.027233826, -0.005589133, 0.0125610735, -0.0015939758, 0.01031316, 0.0109602865, -0.02516302, 0.008685124, 0.005974003, -0.015558293, -0.01617136, -0.03869138, 0.0069344756, 0.0045298883, -0.039045595, 0.012315847, 0.014304911, -0.004642284, 0.0010660564, -0.02852808, 0.009563855, -0.022806115, -0.011900323, 6.2158244E-4, -1.07393265E-4, 0.034141053, 0.014536514, -0.005868419, -0.0058071124, -0.040080998, 0.036675066, -0.022819739, 0.025353752, -0.0013989862, -0.006491705, 0.003709059, -0.00145859, 0.039154585, 0.027342815, 0.011144207, 0.014209544, 0.003600069, 0.008344531, 0.013712279, -0.012227293, 0.004560542, 0.005190639, -0.0027775369, 0.045339756, -0.027165707, 0.021048654, -0.024754308, 0.04100741, -0.0045401063, -4.5724626E-4, 0.024195734, 0.021661721, -0.024536328, -0.039372563, -0.007104772, -0.0025340128, -0.0062805368, -0.012785865, -0.034331787, -0.0050135306, 0.028964039, -0.028664317, 0.00345702, -0.0022632412, -0.004594601, -0.0023603102, 0.011001158, 0.01580352, 0.009196014, -0.030162927, 0.0029001504, 0.03504022, -0.0039713155, 6.760773E-4, 0.035557922, 0.0042846613, 0.018896107, -0.019086838, 0.0017021141, 0.005796895, 0.012349906, -0.0028746058, -0.010708247, -0.023827894, -0.009686468, -0.01880074, -0.0058718254, -0.013446616, 0.005936538, -0.0109398505, -0.011151019, 0.0065155462, 0.0015428868, 0.01634847, -0.022697125, -0.01854189, 0.0016876388, 0.055366818, 0.0067948326, 0.010374466, 0.026171174, 0.023569044, 3.9913255E-4, -0.026607133, 0.024672564, 0.033923075, 0.037955698, -0.0035489802, 0.011982066, -0.00969328, -0.023269322, 0.013255884, -0.002327954, 0.028391842, -0.00543246, -0.022915104, -0.0017744901, -0.02659351, -0.0331329, -0.05972641, -0.004546918, 0.0315253, 0.012636004, -0.02183883, 0.00790176, 0.0014432633, 0.031007597, -0.013766774, 0.015585541, -1.7231883E-4, -0.015422056, -0.009311816, 0.011110147, 0.019005096, -0.0077246516, 0.023650786, -0.0075747906, -0.025857829, 0.007935819, -0.021607228, -0.030326411, -0.024454586, 0.004533294, -0.012424837, 0.002968269, -0.011539294, 0.026661629, 0.025639849, 0.006518952, -0.004696779, -0.010142863, 0.008882668, -0.0026242698, -0.005882043, -0.018351156, -0.01708415, -0.01316733, 0.0066109123, -0.03438628, -0.009332251, -4.2680575E-4, 0.010599257, -0.01788795, -0.017942445, -0.0073704347, -0.0029273978, 0.034222797, 0.0068118623, -0.012159174, 0.0012193234, -0.019372936, 0.0098499525, -0.020312972, 0.010892168, -0.018555513, 0.0044719875, -0.0149724735, -0.016362093, 0.017588228, -0.014699998, 0.022915104, -0.010674188, 0.030190174, 0.0046729376, -0.018187672, 0.014917978, 0.013732715, 0.015040591, -0.0031079121, -0.011348562, 0.029645225, -0.004601413, 0.027451804, -0.021784335, 0.018051434, -0.010626505, -0.016266728, 0.011396245, 0.02227479, -0.037792213, -0.013378497, 0.010803614, -0.037764963, 0.0037839895, 0.042914733, 0.021934196, 0.0010592446, 0.021757089, -0.05798257, 0.0064440216, 0.019059591, 0.05651121, -0.00749986, -3.8231577E-4, -0.0087191835, -0.0064712693, 0.010946662, -0.012118303, 0.0052212924, -0.040108245, -0.017383872, -0.08163336, 0.027955882, 0.0122409165, -0.019795272, 0.0025084682, 0.02264263, 0.03482224, -0.01938656, 0.006372497, 0.031062093, -0.010449396, 0.0011733433, -0.0031555952, 0.014209544, -0.0020163113, 0.009625161, 0.021566356, -0.0018102524, 0.010156486, 0.026620757, 0.00958429, 0.020421963, -0.014509266, 0.007894948, -0.022915104, 0.015939757, -0.0160215, 0.012888043, 0.015640035, 0.0071797026, 0.03514921, -0.025707968, 0.008978034, 0.040326223, -0.008310472, 0.0020248261, -0.004693373, -0.013685031, -0.008644253, -0.03054439, -0.019590916, -0.015503799, -0.02190695, -0.0018613413, -0.022683501, 0.008698748, 0.009059777, 0.012424837, 0.006791427, 0.036811303, 0.015626412, 0.012383966, -0.012274976, -0.03651158, 0.003460426, -0.018010564, -0.007758711, -0.014005189, 0.00532347, -0.0015956787, 0.0662113, 0.011219137, 0.001261046, -0.021702593, -0.0038861674, -0.029536234, -0.027124835, 0.026089432, 0.007874513, -0.003804425, -0.015176829, -0.02209768, 0.0095297955, 0.016907042, -0.0046082246, 0.003462129, 0.01953642, -0.015340313, -0.016225856, 0.010946662, 0.014209544, -0.015599164, -0.020762555, -0.006617724, 0.014114179, -0.021784335, -0.020108618, 0.006151112, 0.0019022125, 0.014808988, -0.022588136, 0.012636004, -5.0578074E-4, -0.0025289038, 0.031143835, -0.025190266, -0.009924883, -0.01708415, 0.010415337, 0.030517142, 0.0022955975, 0.020421963, 0.008746431, -6.037013E-4, -0.0056810933, 0.005606163, -0.026484521, -0.021988692, -0.0076701567, -0.01949555, -0.009352687, -0.0038657319, 0.002622567, 0.0088690445, -0.011416681, 0.011477988, -0.005456302, -0.012274976, -0.031498052, 0.01247252, 0.020994158, 0.010047497, 0.0062532895, -0.009175578, 0.027887763, 0.0039304444, 0.013255884, -0.0115801655, 0.027124835, -0.014441147, 0.015967006, -0.008841797, 0.009965754, -0.008337719, -0.018024188, -0.022002315, 0.005282599, 0.0031879516, 0.0034468023, 0.09313178, 0.029726967, -0.0013402338, -0.008501204, -0.01543568, 0.013051528, 0.018569136, -0.016212232, -0.01934569, -0.034740496, 0.017206764, 0.0020129052, -0.011498423, 4.2063248E-4, -0.03258795, 0.031007597, 0.008221918, -0.007772335, -0.012969785, -0.008753243, 0.024345595, -0.023500925, -0.0061000227, -0.015817145, -0.006287349, 8.1188884E-4, 0.02238378, 0.017274883, -0.0058139246, -0.057219643, 0.019250322, 0.0043800273, -0.02483605, -0.03065338, -0.014441147, -0.012131927, -0.01463188, 0.03054439, 0.011477988, 0.016334845, 6.556417E-4, 0.020122241, -0.016961537, -0.026048562, -0.007997126, -0.00852164, -0.019304818, -0.022928728, -0.050271545 ], - "id" : "f28a57cf-d6f7-445a-9211-dedfa4d3a127", - "metadata" : { - "name" : "Velocity X1" - }, - "text" : "price: 1799.99\nname: Velocity X1\nshortDescription: Velocity X1 is a high-performance road bike designed for speed enthusiasts. It features a lightweight yet durable frame, aerodynamic design, and top-quality components, making it the perfect choice for those who want to take their cycling experience to the next level.\ndescription: ## Overview\nIt's right for you if...\nYou're an experienced cyclist looking for a bike that can keep up with your need for speed. You want a bike that's lightweight, aerodynamic, and built to perform, whether you're training for a race or just pushing yourself to go faster.\n\nThe tech you get\nA lightweight aluminum frame with a carbon fork, Shimano Ultegra groupset with a wide range of gearing, hydraulic disc brakes, aerodynamic carbon wheels, and a vibration-absorbing handlebar with ergonomic grips.\n\nThe final word\nVelocity X1 is the ultimate road bike for speed enthusiasts. Its lightweight frame, aerodynamic design, and top-quality components make it the perfect choice for those who want to take their cycling experience to the next level.\n\n\n## Features\n\nAerodynamic design\nVelocity X1 is built with an aerodynamic design to help you go faster with less effort. It features a sleek profile, hidden cables, and a carbon fork that cuts through the wind, reducing drag and increasing speed.\n\nHydraulic disc brakes\nVelocity X1 comes equipped with hydraulic disc brakes, providing excellent stopping power in all weather conditions. They're also low maintenance, with minimal adjustments needed over time.\n\nCarbon wheels\nThe Velocity X1's aerodynamic carbon wheels provide excellent speed and responsiveness, helping you achieve your fastest times yet. They're also lightweight, reducing overall bike weight and making acceleration and handling even easier.\n\nShimano Ultegra groupset\nThe Shimano Ultegra groupset provides smooth shifting and reliable performance, ensuring you get the most out of every ride. With a wide range of gearing options, it's ideal for tackling any terrain, from steep climbs to fast descents.\n\n\n## Specifications\nFrameset\nFrame with Fork\tAluminium frame, internal cable routing, 135x9mm QR\nFork\tCarbon, hidden cable routing, 100x9mm QR\n\nWheels\nWheel front\tCarbon, 30mm deep rim, 23mm width, 100x9mm QR\nWheel rear\tCarbon, 30mm deep rim, 23mm width, 135x9mm QR\nSkewer front\t100x9mm QR\nSkewer rear\t135x9mm QR\nTire\tContinental Grand Prix 5000, 700x25mm, folding bead\nMax tire size\t700x28mm without fenders\n\nDrivetrain\nShifter\tShimano Ultegra R8020, 11 speed\nRear derailleur\tShimano Ultegra R8000, 11 speed\n*Crank\tSize: S, M\nShimano Ultegra R8000, 50/34T, 170mm length\nSize: L, XL\nShimano Ultegra R8000, 50/34T, 175mm length\nBottom bracket\tShimano BB-RS500-PB, PressFit\nCassette\tShimano Ultegra R8000, 11-30T, 11 speed\nChain\tShimano Ultegra HG701, 11 speed\nPedal\tNot included\nMax chainring size\t50/34T\n\nComponents\nSaddle\tBontrager Montrose Comp, steel rails, 138mm width\nSeatpost\tBontrager Comp, 6061 alloy, 27.2mm, 8mm offset, 330mm length\n*Handlebar\tSize: S, M, L\nBontrager Elite Aero VR-CF, alloy, 31." - }, - "08d5d13e-75d8-4caf-bac0-9860191462a7" : { - "embedding" : [ 0.044367902, 0.0047551463, -0.008944925, -0.008796852, -0.018172532, 0.011919836, -0.014834171, -0.027891474, -0.0028790003, -0.026101142, 0.017714854, 0.009530484, -0.011307354, -0.011569846, -0.0023153154, 0.030260634, 0.0051724412, -0.02194165, 0.015709145, -0.010176619, 0.025535773, -0.0126265455, -0.025818458, -0.01090352, -0.0150764715, -0.00349653, 0.037529647, -0.01860329, 0.013164991, -0.0365066, 0.010896789, 0.020716688, -0.019235963, 0.0059464565, -0.01422842, -0.0042907367, 0.02443196, -0.031714436, 0.023099309, 7.2437734E-4, 0.02772994, 0.00936222, -0.007504583, -0.0059565525, -0.016032213, 0.0303414, 0.016584119, -7.100749E-4, 0.008689163, -0.001092876, -0.0039373823, 0.019478263, -0.010566992, 0.0057916534, -0.015480306, -0.015264927, 0.006508459, 0.013191913, 0.032172114, 0.010371805, 0.0069190236, 0.022857009, -0.024606956, 0.005206094, -0.013205374, -0.03281825, 0.009826629, 0.015628379, 0.002476849, 0.019074429, -0.010674681, 0.02939912, 0.031579822, 0.014174576, 0.0063469256, -0.012276555, 0.0038599807, -0.0029109705, -0.020555153, 0.010816023, 0.04757165, -0.020205164, 0.0037960403, 0.012007333, 0.032737482, -0.01718987, -0.006023858, 3.6650046E-5, -0.007396894, -0.008029567, 0.011367929, 0.0030859653, 0.0074709305, 0.01588414, 0.004553229, -0.016301434, -0.0076055415, -0.0027948683, -0.027703017, -0.02950681, 0.0045565944, 0.031122146, -0.02204934, -0.014659177, -0.020797454, -0.037502725, -0.041837208, -0.0015025992, 0.014376493, -0.019962864, -0.011933297, -0.0034460507, -0.01020354, 0.017028337, 0.004193144, -0.016516814, 0.04991389, 0.01659758, 0.017297558, -0.019249424, 0.02429735, 0.009819899, 0.0071680546, -0.014955321, 9.485894E-5, 0.011993872, -0.010708333, -0.010391996, -0.01304384, -0.0054584905, -0.011300623, 0.006013762, -0.0048224516, 0.017593704, -0.012263094, 0.026478054, 0.007120941, 0.024149278, -0.04229489, -0.024149278, 8.6740195E-4, 0.014605332, -0.018885974, 0.011105437, -0.0074843913, 9.624712E-4, -0.017216792, 0.022587785, -0.007894956, -0.014968783, 0.011435235, 0.0069055627, 0.042025667, 0.032199036, 0.008985308, -0.006414231, -0.018159073, 0.011690997, -0.017257176, -0.033383615, -0.035160486, 0.017661009, -0.0031987024, -0.019195579, 0.031579822, 0.019720564, 0.0071747852, -0.026599204, 3.5356515E-4, -0.0010533339, -0.012929421, 0.03510664, -0.0128553845, 0.03190289, -0.0088708885, 0.02346276, 0.028079929, -0.017701393, -0.01422842, 0.0027847725, -0.015143777, 0.010270846, 0.014955321, 0.004277276, -0.012229442, -0.0034426854, 0.0081237955, -0.022305101, 0.020366699, -0.020460926, 0.026881889, 0.009039152, -0.0028924616, -0.018172532, -0.597459, -0.03448743, -0.023893517, -0.0063704825, -0.001926625, 0.019114813, 0.019464802, 0.021255134, -0.004270545, -0.018428294, -0.014968783, 0.03583354, -0.0078074588, -0.017028337, -0.025266552, -0.01968018, 0.005051291, -0.0086016655, -0.027285721, -0.012411167, -0.015466845, -0.016705269, -0.031364445, 0.037179656, 0.014726482, -0.014066887, -0.0051488844, -0.009651634, 0.007598811, 0.0048056254, -0.026935732, 0.059821285, -0.014268803, 8.9095894E-4, 0.0350528, -0.034056675, -0.008406479, 0.0050445604, 0.016543735, 0.022089723, -0.011798685, -0.021039754, -0.0054416643, -0.0088910805, 0.012747696, -0.0015900966, 0.023933899, -0.011758302, 0.0071882466, -0.044529438, 0.018051382, 0.010169888, 0.016247591, -0.0151168555, -0.01611298, -0.028376075, 0.041837208, -0.008837235, 0.011300623, -0.0047484157, 0.009066075, 0.0074978527, -0.026935732, -0.017593704, -0.011886183, 0.020272471, -0.057182904, -0.030395243, 0.010997748, 0.004149395, 0.027595328, 0.020932065, -0.014713021, 0.02086476, 0.018805206, 0.027056882, 0.032037504, -0.010688142, 0.019626336, 0.002185752, 0.003957574, -0.001748265, -0.01113909, -0.015143777, 0.02488964, -0.01683988, 0.0038801723, -0.0047282237, 0.008682433, 0.007847842, 0.04636015, 0.009375681, 0.0103650745, -0.016705269, -0.01280154, 0.020649383, -7.382592E-4, 0.0074238162, 0.014511104, -0.016059134, -0.011293893, -0.005357532, 0.011832338, -0.005478682, 0.036695056, 0.01149581, -0.012942882, -0.010243924, 0.021968573, -0.025333857, 0.01671873, -0.02762225, -0.03639891, 0.0013276045, -0.005512335, -0.0298568, 0.0175264, 0.0155745335, 0.0074642, -0.033222083, 0.006067607, 0.010217002, 0.03176828, 0.0018021095, -0.025899224, 0.021955112, 0.020662842, 0.010721794, 0.012471742, -6.2762544E-4, 0.012963073, 0.021255134, 0.033383615, -0.0061214515, 0.0421872, 0.021847423, 0.026531897, -0.0038633458, 0.0088910805, -0.032522105, -0.035752777, -0.013252488, -0.009429526, -0.012168867, -0.021282054, -0.018926356, -0.0066901846, 0.0054248376, 0.0027477543, -0.014914938, -0.021187827, -0.013609208, 5.211983E-4, 0.0021184462, -0.0030826, -0.02488964, -0.022143569, -0.019545568, -0.008702625, -0.019384036, 0.0026064124, -1.1252668E-4, -0.029829876, -0.0076997695, 0.008460323, 0.008857427, 0.0118592605, 0.02727226, -0.011233318, -0.036291223, -0.030852923, -0.014605332, -0.014430338, 0.011993872, -0.013010188, -0.01469956, -0.012572701, -0.008345904, 0.0061954875, -0.010499686, 0.012740965, 0.024970407, -0.0490793, 0.014134193, 0.018562905, 0.008992039, 0.018576367, 0.018078305, -0.03914498, 0.030691389, -0.010479494, 0.009698749, -0.019060967, 0.0044455403, 0.021147445, 0.00794207, 0.0105939135, -0.01647643, 0.003950843, 9.220878E-4, 0.040221874, 0.0078074588, 0.022897393, 0.004869566, 0.00340735, -0.01740525, 0.0111323595, 0.0037522914, 0.034325894, 0.014039964, 9.835042E-4, -0.038445003, -0.013797664, -0.0028015987, -0.0012703947, -0.012101561, 0.029668342, 0.0051724412, -0.00204441, -0.003994592, -0.008588204, 0.011179473, 0.04210643, 0.016422585, -0.010566992, 0.04016803, 0.004469097, 0.04113723, -0.008231484, -0.021483973, -0.025993453, 0.0095977895, 0.027204955, -0.012303478, 0.0088910805, 0.026181908, 0.03343746, -0.0039205556, 0.045929395, -0.01220925, 0.032037504, 0.020757072, 0.0096179815, -0.031095224, 0.013225566, -0.003698447, 0.018764824, 0.026222292, 0.03782579, 0.012983265, 0.0081237955, 0.003950843, -0.019424418, 0.02227818, 0.012458281, 0.013090954, 0.018455217, 0.0036479677, -0.010021815, 0.014026503, 0.021712812, 0.014363032, 0.01884559, 0.022547401, 0.027164571, 0.0043950607, -0.026572281, -0.0051421537, -0.014982244, -0.018468678, -0.0023573814, -0.023220459, 0.008554552, -8.274392E-4, -9.5574063E-4, -0.0093689505, 0.011832338, 0.01303711, 0.014941861, 0.0357797, -0.01291596, -0.032522105, 0.0021756561, 0.027097266, -0.011872722, 0.0018021095, 0.0042234315, 0.009786245, 0.006185392, 0.03876807, 0.019478263, 0.023624294, -0.028402995, 1.0293036E-5, -0.021995496, -0.002152099, 0.01671873, -0.01694757, 0.011791955, 0.0067911427, -0.005700791, 7.189088E-4, 0.0023203632, -0.030502934, 0.030718312, -0.02025901, -0.0029362103, -0.019249424, 0.027945317, 0.005266669, -0.0073093968, -0.0365066, -0.021470511, -0.0024213218, -0.0032491817, 0.006198853, 0.019693641, -0.020891683, 0.020918604, -0.039656505, -0.026881889, -0.017930232, -0.03569893, -0.021887807, 0.03376053, 0.020057091, -0.0054315683, 0.009799707, -0.01731102, -0.007619003, -0.007955532, 0.0011753254, 0.0074103554, 0.018401373, -0.0093487585, -0.0054248376, 0.0078747645, -0.014161115, -0.021430127, -0.020757072, 0.009934318, -0.01708218, -0.012135214, -0.004277276, 0.002744389, -0.0348105, 0.009591059, 0.025535773, 0.013689975, 0.0035739315, 0.010795831, 0.012673659, 0.008110334, 0.0018273492, -0.004647457, 0.00687191, 0.0013116194, 0.002199213, -0.008843966, 0.031929813, 0.004718128, -0.025737692, 0.014013042, -0.01599183, 0.010122774, -6.8609725E-4, 0.0029143358, 0.021416666, 0.018414833, 5.582165E-4, 0.0020073918, 0.009732401, 0.015561073, -0.022614708, 0.053952232, 0.008460323, -0.023933899, -0.002518915, -0.0032878823, 0.018764824, -0.017930232, -0.025656924, -0.024741568, -0.02488964, 0.002857126, -0.03559124, 0.032549027, 0.0012283287, -0.009792976, 0.01955903, -0.026653048, 0.008790121, -0.011408312, -0.024014667, -0.02572423, -0.031364445, 0.0064075007, 0.01989556, 6.3898327E-4, -0.006373848, 0.02429735, -0.04253719, 0.011172743, 0.00598684, -0.037502725, 0.020662842, -0.018064843, -0.016328357, -0.008157448, 0.011125629, 0.026168447, -0.00793534, 0.016732192, -0.004906584, 0.0115900375, -0.011415043, 0.010156427, -0.02455311, -0.0077939974, -0.007948801, -0.0015337281, 0.017445631, 0.018926356, -0.029210664, 0.016503353, -0.0015253149, 0.029776031, 0.024135817, 0.0055897366, -0.004596978, 0.01469956, -0.01708218, -0.00622241, -0.014914938, -0.01612644, -0.018401373, -0.0029951027, 0.006511824, -0.037287347, 0.010533338, 0.010089121, 0.015386078, 0.012949612, -0.011704457, -0.0056637726, -0.049483135, 0.027595328, -0.011664074, -0.020084014, 0.03744888, 0.009967971, -0.0013730358, -0.009779515, 0.016880265, 0.041541066, 0.023987744, -0.009045883, -0.0133534465, -0.0208513, -0.01553415, -0.035725854, 0.019249424, 0.012841923, -0.011765032, -0.02086476, 0.023274304, 0.012249634, -0.0028352516, -0.004139299, -0.022897393, -0.01989556, 0.011038131, 0.0024448787, 0.036237378, 0.004967159, 0.0091199195, -0.010923712, -0.030179866, -0.028510686, 0.010062199, -0.018684056, -0.007120941, 0.01599183, 0.026653048, 0.022251258, 0.016287973, 0.014430338, 0.018468678, -0.01992248, 0.0029648151, -0.021470511, -0.0013755598, -0.04695244, 0.0046642837, 0.027339566, 0.011549654, -0.016139902, -0.022722397, -0.022708936, 0.037852712, -0.021753196, -0.0068449876, -0.014901477, -0.036479678, -0.01599183, -0.026531897, -0.008628588, -0.007928609, -0.0298568, -0.010021815, 0.031014457, 0.010021815, 0.015238006, 0.012942882, -0.008231484, -0.015668761, 0.043641, 0.0046239, 0.016422585, 0.020568615, -0.033841293, -0.00503783, -0.023516605, 0.0083324425, -0.029883722, 0.021308977, -4.8165626E-4, -0.0076661166, -0.016462969, -0.016664885, -0.009786245, -0.02040708, 0.008716085, -0.010291038, -0.017257176, -0.0071882466, -0.033948984, -0.034891263, -0.021080138, 0.007679578, -0.031310603, 0.02904913, -0.019128274, -0.017162947, 0.022789702, 0.0029782762, 0.03176828, -0.0068348916, 0.013784203, 0.01553415, 0.012397706, -0.01968018, -0.0054012807, 0.02264163, 0.01968018, 0.039387282, 0.020555153, -0.0060171275, 0.0075315055, -0.0053205136, -0.0076593864, -0.016422585, -0.030799078, -0.013111146, 0.012841923, 0.024108894, -0.030826, 0.026410747, -0.018468678, -0.0042368923, -0.0044253482, 0.019464802, 0.012808271, -0.015547612, 0.008689163, 0.021887807, -0.01671873, 0.002453292, 0.0078343805, -0.004193144, 0.0067911427, -0.0043075634, -0.02335507, -0.0062526977, 0.01410727, 0.04789472, 0.0018710978, -0.01955903, 0.04302179, 0.015587995, -0.008702625, -0.010519877, -0.013737089, 0.019599413, -0.016247591, -0.0041426644, -0.0024465614, -0.016099518, 0.006118086, -0.0120880995, -0.014766865, -0.021982035, 0.010277577, -0.012303478, -5.5527186E-4, -4.5010672E-4, -0.026370365, -0.0078343805, -0.02239933, -0.025670385, -0.022722397, 0.0044253482, 0.007888226, -0.025576157, -0.011549654, -0.020057091, 0.018280223, 0.045552485, -0.011825607, -0.029722188, 0.013932276, 0.023960821, -0.020447465, 0.01837445, 0.013811125, -0.0052195555, -0.027595328, 0.019814791, -0.0038633458, -0.012963073, 0.0126265455, -0.002641748, -0.0024028127, -0.03190289, 0.0153456945, 0.009631443, -0.004536403, -0.002683814, -0.008036298, 0.01779562, 0.018885974, -0.016530275, -0.022183951, 0.017203331, 0.01244482, 0.0036176802, 0.019235963, -0.007053635, 0.040248796, -2.5912686E-4, -0.0057411743, 0.012121753, 0.008406479, -0.016489891, 0.0022261352, 0.0125861615, 0.0045229415, 0.0074372776, -0.018953279, -0.043667924, -0.011085245, 0.022426251, -0.027649172, -0.0026148255, 0.029614499, -0.03448743, -0.001818936, 0.042241044, -0.00924107, -0.032737482, 0.012902498, -0.02038016, -0.031499058, -0.018899435, 0.013090954, 0.048998535, 0.02040708, -0.012963073, -0.015184161, -0.010176619, -0.033006705, -0.0098468205, 0.0021117157, 0.024472345, 0.017755238, 0.027810706, 0.0029362103, 0.023530064, 0.028106852, 0.03804117, -0.03281825, -0.008143987, 0.010647758, 0.015951445, 0.009261262, 0.0043210248, -0.025926147, -0.043102555, 0.02110706, 0.021955112, 0.013050571, 0.017297558, -0.0010306182, -0.0019417688, -9.6015756E-5, -0.023045463, 0.017822543, 0.012646737, -0.007019982, -0.04067955, -0.008924733, 4.6062324E-4, -4.6230588E-4, 0.022493558, 0.0013755598, -0.024095433, -0.026262676, 0.009941049, -0.012101561, -0.0010499685, -0.026370365, -0.015736068, 0.008568013, 0.0051589804, -0.011717918, 0.041110307, 0.012882307, -0.030045254, -0.0027410237, 0.03462204, -0.004199874, -0.019841714, 0.010452572, -0.039575737, -0.008271867, -0.003129714, 0.02418966, 0.004758511, 0.0058892467, 0.008493977, -0.019249424, -0.017512938, 0.042025667, 0.011441966, -0.044610202, -0.02583192, 0.027703017, 4.0025846E-4, 0.011886183, 0.0133534465, -0.007968992, -0.036533523, 0.0038936334, 8.774978E-4, -0.028887598, -0.004354677, 0.023180075, -0.0051051355, -0.009180495, -0.0045565944, 0.19653258, -0.001992248, 3.6576428E-4, 0.029102976, 0.00924107, 0.007100749, 0.003148223, 7.6938805E-4, 0.018159073, 2.8352518E-4, 0.0016027165, 0.024445422, 0.0057411743, 0.0070738266, 0.016287973, -0.0011753254, -0.053279176, -0.016341818, 0.008211292, -0.0033299485, -0.012189059, 0.021026295, -0.027864551, -0.031472135, 0.010580452, 0.009193956, -0.00984009, -0.020191703, 0.0078545725, -0.0019198945, 0.0056402157, -0.02904913, -0.0017533129, 0.006532016, -0.017243715, 0.0078074588, 0.025737692, -0.019047506, 0.0064377883, 0.027595328, 0.003092696, -0.012619815, 0.0300991, -0.027945317, -0.018737901, -0.00877666, -0.015722606, 0.008305521, -0.028726064, -0.0038700765, -0.015709145, -6.7011215E-4, 0.0012544096, 0.041298766, -0.010937173, -0.009072806, 0.016705269, -0.018078305, 0.005559449, 2.5807522E-4, -0.021187827, 0.014134193, 0.014295726, 0.025374241, -0.013326524, 0.020366699, -0.023449298, -0.015911063, 0.020810915, -0.009819899, -0.031606745, -0.007948801, -0.0040719933, 0.007444008, -0.036102764, -0.011670805, 0.010694873, -0.0048224516, 0.008224754, 0.0070670964, 0.0023102674, -0.010607375, -0.0017179775, -0.0031751452, -0.0024516094, -0.018455217, -0.001245155, 0.0012300112, 0.010721794, -0.023247382, 0.0025222802, -0.016287973, 0.016449507, 0.010688142, 6.0406845E-4, 1.3292872E-4, -0.02536078, 0.008231484, -0.016220668, -0.003745561, -0.013757281, 0.050317723, 0.0053878194, -0.013366908, -0.025912685, -0.0027595328, -0.012714042, 0.011011209, -0.013696706, -0.05255227, -0.020757072, -0.03639891, -0.0029496714, -0.006114721, 0.014376493, -0.0058993427, 0.0039306516, -0.0051859026, 0.0076257335, -0.01861675, 0.024243506, -0.018549444, 0.017836004, 6.385626E-4, 0.016489891, -0.01375055, -0.02262817, -0.0037556568, -0.01410727, -0.01469956, -0.0019686911, -0.012841923, -0.0039912267, -0.011482349, -0.011798685, -0.007147863, -0.014134193, -0.005569545, 0.018105228, -0.007302666, 0.006353656, -0.02050131, 0.004963794, -0.011300623, 0.023866594, -0.022843547, -0.008944925, -0.0044017914, -0.030799078, -0.0131246075, -0.030018331, -0.018145612, 0.006612783, 0.0018155706, 0.03744888, 0.019060967, -0.0060844333, -0.038687304, -0.006259428, 0.03567201, -0.017512938, -0.014793788, 0.0071882466, -2.6754008E-4, -0.011791955, -0.011428504, -0.16928723, 0.0128351925, 0.027568405, -0.0086420495, 0.0058118454, -0.0046339957, 0.019707102, 0.015709145, -0.029022207, -0.019989787, 0.019626336, 0.0101362355, -0.032872092, -0.021483973, 0.009032422, -0.016543735, -0.024001205, 0.005263304, 0.01884559, 0.019841714, -0.012081369, -0.028645296, 0.023516605, -0.015278389, -0.004846009, 0.011038131, -0.010223732, 0.026504977, 0.021416666, 0.009355489, -0.036668133, -0.015709145, 0.027218416, -0.024216583, 6.166883E-4, 0.00485947, -0.006861814, -0.018293682, -0.024095433, 0.023758905, 0.0105468, 0.010264116, 0.007242091, 0.009651634, 0.019343652, 0.037502725, -0.0065858606, 0.004243623, 0.010250655, -0.023933899, 0.032656714, -0.030691389, 0.018105228, -0.014457259, 0.008130526, -0.014672638, 0.005121962, 0.0076728472, 0.012101561, -0.030476011, -0.025899224, 0.009086266, 0.015493767, -0.018953279, -0.002345603, -0.015587995, -8.85911E-4, 0.034056675, -0.01292269, -0.020218626, -0.021483973, -0.007006521, -0.0035335482, 0.0016649743, 0.026060758, 0.008864158, -0.025441546, 0.0013090954, 0.03354515, -0.011004479, -8.350111E-4, 0.037771948, 0.0043344856, 0.008500707, -0.025078095, -0.019760948, 0.011172743, 0.014888016, -0.0031095224, -0.018293682, -0.0039037294, -0.015816834, 0.00450948, -0.022264719, -0.006945946, 0.0032121635, -0.0105939135, -6.183709E-5, 0.0050041773, 0.0043950607, -0.006306542, -0.013407291, -0.023678137, -0.008345904, 0.036371987, 0.012936152, 0.013339985, 0.011684266, -0.010768908, 0.034568198, -0.0010735255, 0.020084014, 0.022210874, 0.026572281, 4.4547947E-4, -8.404797E-4, -0.02583192, -0.03545663, 0.009658365, 0.002147051, 0.026976116, -0.018441755, -0.007396894, 0.015238006, 0.004233527, 0.005061387, -0.07522082, -0.0054416643, 0.008426671, 0.0246608, -0.014874555, 0.021187827, -0.012996727, 0.016853342, 0.015507229, 0.029883722, -0.02110706, -0.012411167, -0.02274932, 0.02680112, 0.010243924, 0.0076997695, 0.027918395, -0.013010188, -0.011603499, 0.015251467, -0.005764731, -0.017566781, -0.021308977, 0.014753405, -0.02821454, -0.0067036455, -0.021537816, 0.017566781, 0.019720564, 0.0028419823, 0.01245155, -0.01861675, -0.0298568, 0.016045673, -0.016570657, 9.574233E-4, -0.017539859, 0.006124817, 0.009409334, -0.021282054, 0.011401582, 0.010728525, -0.002894144, -0.009967971, -0.019909019, -0.024795411, -0.010270846, 0.029910643, 0.008716085, -0.026545359, -5.00586E-4, -0.030718312, -0.004172952, -0.008359365, 0.005539257, -0.010573722, 0.0069997907, -0.004132569, -0.014591871, 0.011522732, 0.0016506717, 0.010089121, -0.00936222, 0.0063974047, 0.018980201, -0.01860329, -0.011334276, 0.015238006, 0.017714854, -0.008500707, -0.0039205556, 0.008049759, -0.010008355, 0.035375863, -0.033033628, 0.018428294, -0.0215782, -0.02926451, 0.02382621, -0.004862835, -0.008009376, -0.018710978, 0.012020794, -0.037395034, 0.025387703, 0.028295306, 1.2651364E-4, -0.015924523, 0.018212916, -0.016624503, 0.0244185, 0.014174576, 0.07021328, 0.0066296095, -0.012983265, -0.006414231, 0.0028773178, 0.0037792139, -0.012761157, -0.003360236, -0.04444867, 0.01957249, -0.07102095, 0.033814374, 0.0249031, -0.01125351, -0.014295726, -3.6113703E-4, 0.026478054, -0.009059344, 0.01161696, 0.022008957, -0.0035167218, 0.015749529, -0.024728106, -0.002744389, -0.006602687, -0.0029311622, 0.01767447, 0.0081036035, -0.0051825373, 0.029345276, 0.017701393, -0.001520267, 9.456448E-4, 0.033625916, -0.03559124, 0.026868427, -0.010445842, 0.02229164, 0.008749738, 0.0057176175, 0.039387282, -0.010398727, 0.011657343, 0.033868216, -0.0015505545, -0.007773806, -0.006367117, 6.8315264E-4, 0.0016498304, -0.044260215, 6.044891E-4, -0.015736068, 0.00675749, -0.0088910805, -0.006602687, 0.0019720565, 0.026868427, 0.003745561, 0.012552509, 0.050560024, 0.0030035158, 0.005788288, 0.0065623038, -0.03825655, 0.012592892, -0.027460717, 0.010937173, -0.006945946, 0.009025691, -0.0056705032, 0.039898805, -0.029910643, 0.0027410237, -0.0078545725, 0.012397706, -0.01280154, -0.029802954, 0.016516814, -0.011394851, -0.032764405, -0.024728106, 0.0020763802, 0.017351404, 9.75091E-4, -0.0038599807, 0.013656322, 0.016678346, 0.01244482, -0.00901896, 0.012236172, 0.0220628, 0.0026013644, -0.0029126531, -0.016920647, 0.007975723, 0.006259428, -0.02194165, 0.007006521, -0.021416666, 0.015143777, -0.031499058, 0.019491725, -0.003200385, -0.014201498, 0.018764824, 0.027837628, -0.04347947, -0.018912895, 0.033598993, 0.02974911, -0.004492654, 0.0032929303, -0.006447884, -0.011354468, -0.0044051567, 0.0073430496, -0.009092997, -0.006659897, -0.0028201079, 0.01706872, 7.7065E-4, -0.014726482, 0.010230463, 0.016705269, -0.015386078, 0.022143569, 0.02180704, -0.012296747, -0.024001205, 0.034568198, -0.0011475618, 0.0012846971, 0.0036075844, 0.0044455403, 0.03734119, 0.010291038, -0.0012813319, -0.009543945, 0.014645715, -0.01588414, 0.008823775, -0.005239747, 7.2858395E-4, -0.010694873, -0.023839671, -0.011872722, 0.014766865, 0.0074709305, 0.021443589, 0.099181645, -0.0072286297, -0.026047297, 0.016664885, 0.0037994054, 0.029587576, 0.02502425, -0.0026939097, -0.0012316939, -0.0362643, 0.0021588297, -0.0038195972, -0.024108894, 0.0021319073, -0.022008957, 0.034191284, 0.011307354, 0.014955321, 0.014255343, -0.017566781, 0.020703226, -0.013481327, 0.02926451, -0.01529185, 0.0011408313, -0.012027524, 0.021389745, 0.031256758, -0.009570868, -0.03863346, 0.0058286716, 0.030772155, -0.0078747645, -0.013299602, 0.0040484364, -0.007861303, -0.022601247, 0.007989184, 0.01588414, -0.027945317, 0.01611298, -0.0025542504, -0.03225288, -0.0031465404, -0.0015244737, 1.0232566E-4, -0.0054685865, -0.030987535, -0.061652 ], - "id" : "08d5d13e-75d8-4caf-bac0-9860191462a7", - "metadata" : { - "name" : "Celerity X5" - }, - "text" : "Weight Limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 120 kg (265 lbs).\n\n## Sizing \n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| 49 | 155 - 162 cm 5'1\" - 5'4\" | 71 - 76 cm 28\" - 30\" |\n| 52 | 162 - 170 cm 5'4\" - 5'7\" | 74 - 79 cm 29\" - 31\" |\n| 54 | 170 - 178 cm 5'7\" - 5'10\" | 77 - 83 cm 30\" - 32\" |\n| 56 | 178 - 185 cm 5'10\" - 6'1\" | 82 - 88 cm 32\" - 34\" |\n| 58 | 185 - 193 cm 6'1\" - 6'4\" | 86 - 92 cm 34\" - 36\" |\n| 61 | 193 - 200 cm 6'4\" - 6'7\" | 90 - 95 cm 35\" - 37\" |\n\n## Geometry \n| Frame size number | 49 cm | 52 cm | 54 cm | 56 cm | 58 cm | 61 cm |\n|---------------------------------------|-------|-------|-------|-------|-------|-------|\n| Wheel size | 700c | 700c | 700c | 700c | 700c | 700c |\n| A — Seat tube | 47.5 | 50.0 | 52.0 | 54.0 | 56.0 | 58.5 |\n| B — Seat tube angle | 75.0° | 74.5° | 74.0° | 73.5° | 73.0° | 72.5° |\n| C — Head tube length | 12.0 | 14.5 | 16.5 | 18.5 | 20.5 | 23.5 |\n| D — Head angle | 70.0° | 71.0° | 71.5° | 72.0° | 72.5° | 72.5° |\n| E — Effective top tube | 52.5 | 53.5 | 54.5 | 56.0 | 57.5 | 59.5 |\n| G — Bottom bracket drop | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 | 7.0 |\n| H — Chainstay length | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 | 41.5 |\n| K — Wheelbase | 98.4 | 98.9 | 99.8 | 100.8 | 101.7 | 103.6 |\n| L — Standover | 72.0 | 74.0 | 76.0 | 78.0 | 80.0 | 82.0 |\n| M — Frame reach | 36.2 | 36.8 | 37.3 | 38." - }, - "64828f9b-bb26-4dab-ba1f-e8eb8c2af41f" : { - "embedding" : [ 0.037016712, 0.011864332, -0.0043220064, -0.011667723, -0.009959259, 0.013267713, -0.004044042, -0.025803225, 0.004952511, -0.040894654, 0.005511829, 0.010752474, -0.01829141, -0.011660943, -1.6345235E-4, 0.0037525184, 0.0072677503, 0.008237236, 0.02839304, -0.015498207, 0.0074304612, 0.011382978, -0.02040665, -0.0019728688, -0.009511804, -0.005538948, 0.036311634, -0.009145705, 0.008840621, -0.02413544, 0.034033682, 0.023349004, -0.01970157, 0.0032576064, -0.0022050708, -0.012562632, 0.018562594, 0.010176207, 0.0166643, -0.007647409, 0.017016841, -0.009708413, -0.004593191, -0.02181681, -0.007206734, 0.03069811, 0.013504999, 0.008860961, 0.0022372738, 0.013111781, -0.020894783, 0.01755921, -0.017111756, 0.015837187, -0.003532181, -0.014766008, 0.01241348, 0.027077794, 0.03761332, 0.02111173, 0.014589738, 0.01348466, -0.021220203, 9.9734534E-5, -0.012406701, -0.014643975, 4.9109856E-4, -0.0056575914, -0.0061118254, 0.023810018, 0.017654125, 0.024962554, 0.03731502, 0.017328704, 0.005766065, -0.024799842, 0.007864357, -0.006016911, 0.0312676, -0.0019423605, 0.012643987, -0.019593095, 0.00797961, 0.014237198, 0.030372689, 0.0068609733, 0.00567793, 0.009477906, -0.020243939, 0.013898217, -7.834696E-4, 0.018779542, 0.002233884, 0.007010125, 0.006244028, -0.011105014, -0.032542165, -0.0012847376, -0.016081253, -0.011227047, 0.0202575, 0.012271108, -0.012271108, -0.009491465, -0.013511779, -0.02629136, -0.017030401, -0.0055999644, 0.018033784, -0.007857577, -0.007769442, 0.021355797, 0.006244028, 8.6524873E-4, 0.016976163, -0.019932076, 0.042087868, 0.011525351, 0.013749065, -0.03232522, 0.016230406, 0.035850618, -5.0370443E-5, -0.044257347, 0.011227047, 0.0148609225, 0.0072135134, -0.019999873, -0.00444065, -0.0028864224, 0.0035762484, -0.007077921, -0.010949083, 0.008535539, -0.026128648, 0.010928744, -0.0041491264, 0.029532015, -0.022820193, -0.030969294, 0.004010144, 0.0156338, -0.011471113, 0.0060067414, 0.007755883, 0.0154439695, -0.012372803, 0.013545677, -0.003001676, -0.029233713, 0.039267547, 0.0016982943, 0.026589662, 0.015403292, 0.012020263, -0.009721972, -0.0018999879, 0.011410097, -0.024460861, -0.018033784, -0.0073355464, 0.0134711005, 0.01331517, 2.466086E-4, 0.021938844, 0.004932172, 0.01633888, -0.017613448, 3.4660797E-4, 0.002340663, -0.015335496, 0.016840572, -0.0154439695, 0.0130100865, -0.016542267, 0.027104912, 0.01685413, -0.01083383, -0.02056936, -0.015362614, 0.027877789, -0.011932127, 0.018047342, 0.013925335, -0.016135491, -0.011471113, 0.0010237223, -0.011403318, 0.012901613, -0.0031270988, 0.01829141, 0.014345672, 0.0061660623, -0.0053694574, -0.58836234, -0.014033809, -0.0044203107, -0.0055287783, -0.0010127054, 0.015294818, -0.0017762599, 0.028148973, -0.0027965924, -0.018630391, -0.015552443, 0.025748989, -7.360123E-4, -0.018128699, -0.042467527, -0.025152383, 0.011559249, -0.012535513, 0.017843954, -0.018738864, -0.051742043, -0.014413468, -0.028962528, 0.0091931615, 0.010894846, -0.014088046, 0.011098235, -0.018210053, -0.0024152389, 0.017979547, -0.031159123, 0.039321784, -0.010494849, -0.0028457446, 0.032921825, -0.0355252, 0.0025643904, 0.016772775, 0.022562569, 0.02785067, -0.02006767, -0.0037186204, 0.008223676, -0.018237172, -0.0066236868, 0.00939655, 0.05464372, -0.019538859, -0.001073722, -0.03281335, 0.01685413, 0.0030033707, 0.01789819, -0.011410097, -6.860126E-4, -0.033654023, 0.03411504, 0.013789743, 0.0022610025, 0.008216897, -2.610153E-4, 0.02484052, -0.028176092, -0.01810158, -7.788086E-4, 0.020786308, -0.0408133, -0.052609835, 0.042847186, -0.010555865, 0.022101555, 0.014454145, 0.004372854, 0.01898293, 0.013640591, 0.022210028, 0.027186267, 1.8124885E-4, 0.0127728, 0.019037167, 0.015294818, 0.015593121, -0.0011220268, -0.023457479, 0.0333286, -0.009620278, -2.3463834E-5, -0.025925258, 0.022630366, 0.008298253, 0.025301535, 0.0016779554, 2.8537953E-4, -0.009905022, -0.0015915153, 0.019782925, 0.009498245, 0.014454145, 0.014576179, -0.02553204, -0.01189823, 0.01970157, 0.0087321475, 0.01970157, 0.020176142, 0.012372803, -0.016284643, -0.0042338716, 0.013376187, -0.03636587, 0.030562518, -0.023945611, -0.020433769, 0.0041220076, -0.022779517, -0.033409957, 0.004844037, 0.02467781, 0.016528709, -0.011193149, 0.018223614, -0.01632532, 0.018521916, -0.015362614, -0.011721959, 0.0020372751, 0.015484647, 0.02058292, 0.0054508126, -0.015674477, 0.016637182, 2.3135447E-4, 0.03267776, -0.024379507, 0.024772724, 0.017545652, 0.02501679, 0.001500838, 0.014684652, -0.024745606, -0.043253962, -0.009721972, -0.020420209, -0.02858287, -0.007077921, -0.014752449, -0.0066236868, 0.014454145, -0.00887452, -0.011064337, -8.919435E-5, -0.036447227, -0.0166643, 0.0067863977, -0.03620316, -0.022074437, -0.0408133, -0.0054033557, -0.008413506, -0.02093546, 0.007118599, 0.011566028, -0.048650537, -0.009505024, 0.010725356, -0.0036338752, 0.026210003, 0.014955837, 0.014996515, -0.035362486, -0.012569412, 0.0014660924, -0.0126643265, -0.005460982, -0.0044745477, 6.9660577E-4, -0.018521916, -0.0088474015, -0.0015127022, -0.0035592995, 0.0033406566, 0.037559085, -0.051525097, 0.024569334, 0.03319301, -0.007206734, 0.044311583, -0.0031745562, -0.0234168, 0.025342211, -0.011403318, 0.0043931925, -0.020786308, 0.003922009, 0.0021135458, -0.005799963, 0.01896937, -0.015701596, 0.014264316, 0.009627057, 0.031891324, -0.007220293, 0.01472533, -0.0013499914, 0.013152459, -0.014440586, 0.010799931, 0.0012016873, 0.034847237, 0.019199878, 0.017179552, -0.0358235, -0.0033999784, 0.016203286, 4.3559045E-4, -8.8474015E-4, 9.491465E-4, 0.034901474, -0.028609987, -0.01118637, -0.013199916, 0.004725394, 0.046589535, -0.0041457363, -0.0030186248, 0.012528734, 0.017342262, 0.03140319, -0.0053321696, -0.0166643, -0.017640566, 0.03191844, 0.011199929, -0.018318528, 0.021952404, 0.0149829555, 0.043199725, -0.019633774, 0.05141662, -0.010155868, 0.03723366, 0.057545397, 0.029423542, -0.022982905, 0.01206772, 0.0055999644, 0.021749014, 0.03658282, 0.024230355, 0.016921926, -0.0034287919, 0.0023677815, -0.016596505, -0.02343036, 0.0141694015, 0.0033389619, 0.019199878, 0.0123185655, -0.01667786, -0.0013618558, 0.016393116, 0.047674272, 0.026684577, 0.0032372675, -0.0078169, -0.016230406, -0.01826429, 0.02075919, -0.021274442, -0.007362665, 0.00869825, 0.01314568, -0.0098846825, 0.012101618, 0.018684627, -0.0055050496, 0.0042033633, -0.013688048, 0.032542165, 0.023321886, -0.009003333, -0.043172605, 0.0123185655, 0.015715154, -0.003566079, 0.015552443, -0.01045417, 0.008840621, 0.0056304727, 0.02253545, 0.009457567, 0.042467527, 0.005338949, 0.031999797, -0.028799817, -0.0036135362, 0.01826429, 0.010393154, 0.016365997, 0.015294818, -0.007844018, 0.017233789, -0.0072677503, -0.013274492, 0.028176092, -0.01986428, -0.02448798, -0.02893541, 0.028447276, 0.012616869, -0.010711797, -0.038969245, -0.02539645, -0.01029146, -0.0024355778, -0.002520323, 0.0013618558, -0.029667608, 0.014589738, -0.028474396, -0.0055965744, -0.0074914778, -0.027769314, -0.013749065, 0.024989672, 0.018874457, -0.0038203148, 0.0099457, -0.013925335, -0.0023576121, -0.012630428, -0.007023684, 5.3813215E-4, 0.027674401, -0.0017796498, 0.021518508, -0.013111781, -0.0027220165, -0.0029271, -0.019416826, 0.005908437, -0.008989774, 0.0054575927, -0.006067758, 0.015593121, -0.027932025, -0.0034525204, 0.038237046, 0.019660892, -0.01810158, 0.0028118466, 0.012691445, 0.0108134905, -0.018820219, 0.005162679, -0.011498232, 0.017491415, -2.8241347E-4, -0.03598621, 0.0052609835, 0.012108398, 0.009111807, -0.0028830324, -0.0059287758, 0.015593121, 0.018196495, -0.008630454, 0.0059694536, 0.0055592866, -0.011389758, 0.0015050751, 0.007999949, 0.008203338, -0.03178285, 0.041681092, 0.009125366, -0.01846768, 0.0021016817, -0.0030372688, 0.005481321, -9.355873E-4, -0.029233713, -0.031837087, -0.02573543, 0.010047394, -0.02855575, 0.027823552, -0.020650716, -0.014955837, 7.160971E-4, -0.015416851, -1.5593121E-4, -0.018128699, 1.279653E-4, -0.025762549, -0.01595922, -0.03940314, 0.01633888, -0.001916937, 0.0039694663, 0.033030298, -0.03598621, 0.008508421, 0.016460912, -0.029369304, 0.013742286, -0.007166056, -0.004593191, -0.004454209, 0.014589738, 0.0465353, -0.0019932077, 0.012711784, -0.007383004, 0.020311736, 0.0018186325, 0.0298032, -0.03153878, 0.0020796477, -0.010372816, 0.011430436, 0.03514554, 0.00408133, -0.016067695, 0.0011288064, -0.014494823, 0.006288096, 0.023050701, 0.015810069, -0.0123185655, 0.009342314, -0.007044023, 0.016786333, -0.021708336, -0.01635244, -0.02059648, -0.023674427, 0.006298265, -0.035443842, 0.015945662, 0.004576242, 0.004111838, -3.7632177E-5, -0.014088046, 0.007349106, -0.028257448, 0.0262778, 0.0033643853, -0.02183037, 0.0298032, -0.0037321798, 6.4364E-4, -0.024447301, 0.0072474116, 0.050874252, 0.049735278, -0.009633837, 0.0038474333, -0.009728752, -0.029938793, -0.020040551, -0.001534736, 0.021071052, -0.0019355809, -0.02180325, 0.038779415, 0.020610038, 0.022725279, -0.024393065, -0.02626424, -0.019932076, -0.0035254012, -0.0014415162, 0.03408792, -0.004169465, 0.006437247, -0.017640566, -0.030399807, -0.025287975, -0.011159251, -0.014060928, -0.01720667, -0.0031338783, 0.033220127, 0.029369304, 0.009484685, 0.012115178, 3.6927732E-4, 0.005623693, -0.0020711732, -0.045857336, 0.0017508364, -0.029504897, 0.019376148, 0.039972626, 0.007688087, -0.032216743, -0.016786333, -0.03153878, 0.02520662, -0.007484698, -0.0134778805, -0.01635244, -0.03742349, 0.0014177876, -0.03723366, -0.017423619, -0.021559184, -0.032081153, -0.020650716, 0.03191844, -0.015376174, 0.017504973, -0.0050135273, -0.0072880895, -0.03338284, 0.041681092, 0.016203286, 9.666252E-5, 0.007172836, -0.026684577, -0.03709807, -0.024420183, -0.0063423323, -0.015660917, 0.016704978, 0.0056847096, -0.024474422, 0.01880666, -2.3559172E-4, -0.011227047, -0.013227034, 0.009742311, -0.01029824, -0.0019237166, -0.025491364, -0.014427027, -0.033301484, -0.019308351, 0.005742336, -0.01774904, 0.022332061, -0.0333286, -0.005823692, 0.011342301, -0.0019389708, 0.018128699, -0.0022033758, 0.01633888, 0.010989761, 0.011999924, -0.021938844, -0.018413443, 0.0040203133, -0.01827785, 0.031348955, 0.011667723, -0.009288076, 0.0072813095, 0.016732097, -1.7796498E-4, 0.0042304816, -0.034847237, -0.013728727, 0.029884556, 0.020460887, -0.016284643, -0.00204236, -0.00657284, 0.0035796382, 0.004698275, 0.014237198, -0.0041050585, -0.008644013, 0.003177946, 0.013993131, -0.0044474294, -0.0026389663, 0.0026593052, -0.0023101547, -0.0015220243, -0.021247322, -0.019782925, -0.01205416, 4.290227E-4, 0.053694572, -0.005023697, 0.0033999784, 0.043389555, 0.009999936, -9.915191E-4, -0.01793887, -0.0021542236, 0.022616806, -0.021504948, 0.015850747, -0.010508408, -5.3770846E-4, -0.024393065, 0.0152134625, -0.007938933, 0.003830484, -0.01986428, -0.0141694015, 0.007905034, -0.008115203, 0.006827075, -0.025952378, -0.022630366, -0.023674427, -0.01650159, 0.002179647, 0.020284617, -0.02503035, -4.0698893E-4, -0.03495571, -0.0030287944, 0.031972677, 0.0025982885, -0.010250783, -0.008115203, 0.016433794, -0.026521865, 1.3463898E-4, 0.012501615, 0.004372854, -0.008108423, 0.023050701, 0.0012779579, -0.025599837, 0.0044881073, 0.017233789, -0.021179527, -0.031457428, 0.007172836, -0.012542293, 0.0032525216, -0.0036135362, 0.019525299, 0.007030464, 0.0132473735, -0.003318623, -0.024094762, 0.008298253, -0.011613485, -0.009464347, -0.003620316, -0.02096258, 0.014928719, -0.008135541, -0.001579651, 0.0078169, -0.00833893, -0.014427027, 0.0134778805, -0.007681307, -0.012440599, 0.0079253735, -0.035769265, -0.015240581, -0.01578295, 0.020989697, -0.013437203, 0.008277914, -0.001285585, -0.01242026, -0.002201681, 0.035037067, -0.017328704, -0.011647384, 0.0013110086, -0.013376187, -0.03918619, -0.024623573, 0.013213475, 0.05765387, 0.018128699, -0.011986365, -0.011267725, 0.0039864155, -0.03419639, -0.03690824, 0.0026050683, 0.028799817, 0.01153213, 0.008406727, -0.005976233, 0.0062677567, 0.014657534, 0.035172656, -0.009294856, -0.00727453, 0.0053558983, 0.02253545, 0.010501628, -0.010413493, -0.042359054, -0.013355847, 0.02309138, 0.030806584, 0.012915173, 0.013430423, -0.024555776, -0.005976233, 0.0068609733, -0.027565926, 0.024420183, 0.02874558, -0.023362564, -0.0333286, -0.01153891, 0.002361002, -0.0026999828, 0.0079253735, -0.0019186318, -0.035606552, -0.01808802, 0.008230456, -0.00833215, 2.032826E-4, -0.0050338665, -0.023565952, 0.032352336, 0.002805067, -0.023647306, 0.029938793, 0.0073152077, -0.029016765, 6.8558886E-4, 0.027986262, -0.0027643892, -0.015403292, -0.00408472, -0.040948894, -0.0027254063, 0.0071999542, 0.024040526, 0.0040135337, -0.021288, -0.012101618, -0.0025135432, -0.03034557, 0.029504897, 0.025667634, -0.0073355464, -0.032270983, 0.019972755, -0.020121906, 0.020176142, 0.009281297, 6.601653E-4, -0.03937602, 0.016094813, -0.0090779085, -0.025925258, -0.015132107, 0.015566003, -0.0041626855, -3.3580296E-4, 0.0016635488, 0.19471063, 0.0051389504, -0.0071796156, 0.016365997, -0.0019847332, -0.019254114, 0.022806635, -0.005227085, 0.0089626545, -0.002520323, 3.745739E-4, 0.0355252, 0.002715237, -0.0029694727, 0.030887939, -0.0054372535, -0.03419639, -0.0137151675, -0.009898243, -0.0016203286, -0.0041592955, 0.00656606, -0.03191844, -0.031457428, 0.010711797, 0.012806699, -0.021559184, -0.025599837, -0.0017694803, 0.010176207, -0.022752399, -0.01755921, 0.0021915114, 0.021084612, -0.016555827, 9.2880765E-4, 0.010135529, 0.003674553, -0.014074487, 0.016176168, 0.00869147, -0.016976163, -0.0015567697, -0.02183037, -8.02961E-4, 5.7160656E-4, -0.015579562, 0.0047118342, -0.030426925, -0.0042813285, -0.010671118, 0.0040711607, 0.02307782, 0.049735278, 0.012149075, -0.019471062, 0.013674489, -0.0064711454, 0.0037152306, -0.0059830127, -0.028365921, 0.017789718, 5.953352E-5, 0.025491364, -0.003955907, 0.01987784, -0.010433832, -0.022332061, 0.032406572, 0.0024559165, -0.010332137, -0.0112812845, 0.0026457459, -0.009613498, -0.030209977, -0.020677835, 0.024704928, 0.014711771, 0.014413468, 0.026332036, -0.015104989, -0.019579537, 0.017627006, 0.023877814, 0.008210117, -0.021152409, 0.023376122, -0.009850785, 0.02538289, -0.014481264, -0.015945662, 7.703341E-4, -0.006366061, -0.004416921, -0.0020999867, 0.007349106, -0.026535425, 0.015647357, -0.010447391, -0.015227022, -0.042440407, 0.036094684, -0.010318578, 5.788099E-4, -0.027904907, -0.0048813247, -0.0040948894, 0.013728727, 0.0098914625, -0.034630287, 0.006532162, -0.033301484, 0.0078169, -0.011552469, 0.021423593, -0.012515175, 0.011477893, -0.00709826, 0.0026593052, -0.021260882, 0.029152358, -0.01648803, 0.0071457173, 3.957602E-4, 0.013559236, -0.012074499, -0.028528633, -0.0027254063, -0.020732071, -0.037830267, 0.011498232, 0.009952479, 0.027240505, 0.01827785, 6.910973E-4, -0.013003307, 0.008054186, 0.015810069, 0.009762649, -0.025342211, 0.015701596, 0.005233865, -0.00797961, 7.122836E-4, 0.032433692, -0.028718462, 0.0096609555, 0.0046203095, -0.032623522, -0.013050765, -0.013199916, -0.0067118215, 0.007837239, 0.013816861, 0.0065558907, 0.01633888, -0.009498245, -0.032759115, -0.01348466, 0.016813453, -0.023281207, -0.00869825, 0.0011957551, 0.0015135497, -0.024610013, 0.0029406592, -0.17062943, -0.0063931798, 0.038047217, -0.01633888, 0.0059728436, -2.0571903E-4, 0.02945066, 0.014006691, -0.026589662, -0.0012211787, 0.040515, -0.0036067567, -0.04132855, -0.016284643, 0.0018016835, 0.0046609873, -0.020121906, 0.0072880895, 0.011782976, 0.00461353, 0.008427065, -0.03419639, -0.0025508313, -0.0102372235, -0.017301586, 0.010860948, 0.0015872781, 0.029233713, 0.009708413, -0.015118548, -0.025477804, -0.0450709, 0.021613423, 0.0034711643, 0.013803302, -0.004128787, -0.014698212, 0.0132473735, -0.027565926, 0.04273871, 0.0011042303, 0.013769404, 0.013206696, 0.0041457363, 0.015823629, 0.01789819, -0.004383023, 0.008494861, -0.0019372759, -0.021260882, 0.035226896, -0.018020224, 0.013023646, -0.015023633, 0.017342262, 0.011932127, -0.01118637, 0.009735531, 0.015904984, -0.015050752, -0.028691344, -0.019484622, 0.0035694689, -0.0077287643, -0.002732186, -0.024365947, 0.0085016405, 0.027457453, -0.026643898, 0.0061491136, -0.006477925, -0.001527109, -0.005444033, 0.006691483, 0.03994551, -0.0021525286, -0.035172656, -0.018304968, 0.028609987, -0.005840641, -0.0021762573, 0.06302333, 0.0075321556, -0.008305032, -0.016759215, -0.0024355778, -0.0066202967, -0.008135541, 0.01936259, 0.0027474402, -0.0080406265, -0.017111756, 0.001276263, -0.012908393, -0.003976246, -0.010874507, -0.008623674, -0.014616856, -0.01472533, -0.014318553, 0.0030304892, -0.0031016753, -0.014291435, 0.04192516, 0.03430487, -4.5635304E-4, 0.019484622, 0.028799817, 0.0023830356, 0.0149016, -0.011220268, 0.010562644, 0.010399934, 0.030996414, -0.009681295, 0.024772724, -0.03742349, -0.04615564, 0.001225416, 0.021572744, 0.01898293, -0.01188467, -0.0045389542, -0.0010872813, -0.0040372624, -0.005186408, -0.0610708, -0.007111819, 0.019674452, 0.038399756, -0.013782963, 0.011599926, -0.006088097, 0.038643822, -0.0012279582, 0.03427775, 0.0011982975, -0.040487878, -0.010806711, 0.030047266, 0.019484622, -0.0029423542, 0.0045864116, -0.02713203, -0.00408811, 0.02218291, -0.008481302, -0.036989596, -0.016067695, -0.004755902, -0.03886077, -0.017030401, -0.028176092, 0.016650742, 0.037016712, 0.0027559146, 0.010555865, -0.020989697, -0.0049050534, 0.015457529, -0.03674553, -0.018237172, -0.017016841, -0.0047050547, 0.027904907, -0.027932025, 3.3177756E-4, 0.008359269, 8.881299E-4, -0.021220203, -0.014752449, -0.020989697, -0.0035965873, 0.03278623, -3.709722E-4, -0.018196495, 0.0063864, -0.027633723, 3.8050607E-4, -0.008027067, 0.03137607, -0.004684716, 0.005023697, -0.0049423412, -0.027755756, 0.00993892, -0.0066440254, 0.016474472, -0.027565926, 0.02023038, 0.008549098, -0.0027542198, -0.014915159, 0.029043883, 0.032840468, -0.008210117, -0.011342301, 0.0025779498, -0.003586418, 0.016176168, -0.034548935, 0.013037206, -0.0070914803, -0.02696932, 0.022318503, -0.0061660623, -0.019443944, -0.02713203, 0.026833728, -0.034169275, 0.010142309, 0.042304818, 0.021138849, -0.007823679, 0.01669142, -0.039484493, 0.031891324, 0.015647357, 0.046236996, 0.012535513, -0.0149016, -0.002057614, -0.008189779, 0.0058847084, -0.013437203, -0.005359288, -0.040189575, 7.5380877E-4, -0.08564013, 0.029369304, 0.016189728, -0.041111603, -0.0033440467, -0.011403318, 0.020732071, -0.026128648, 0.0086168945, 0.020135466, -0.019226996, 0.0046067503, -0.0022610025, 5.686405E-4, -0.024216795, 0.003566079, 0.011762637, -0.013755845, 0.013627032, 0.023050701, 0.0076745274, 0.016271083, -9.525363E-4, 0.029043883, -0.016881248, 0.033057418, -0.012128737, 0.013227034, -5.4236944E-4, 0.005213526, 0.024460861, -0.035091303, -0.0045965808, 0.044474293, 0.0018423612, -0.018725304, 0.010169427, 0.007437241, -0.011599926, -0.03232522, -0.025098145, -0.027294742, -0.0255456, -0.021843929, -0.016935486, -0.007966051, 0.01028468, -8.43215E-4, -0.0015042278, 0.034467578, 0.0033508262, 0.006013521, -0.007030464, -0.03498283, 0.0028203211, -0.010562644, 0.019647332, 0.0118575515, 0.007044023, 0.013260933, 0.04599293, -0.009999936, 0.006335553, -0.02539645, 0.0015432106, -0.02469137, -0.026874406, 0.015294818, 0.004183024, -0.01864395, -0.032270983, 6.665212E-4, 0.021179527, 0.04526073, -0.03972856, 0.01795243, 0.01029146, -0.015186344, -0.02573543, 0.0038643822, 0.00496946, 0.015416851, 0.0017627006, 0.0015364309, -0.0048542065, 0.0053694574, -0.010596543, 0.014766008, -0.0040372624, 0.015877865, -0.038589586, 0.0216541, 0.0056338627, -0.017545652, 0.024650691, 0.022074437, -0.0039016702, -0.007660968, 0.041437026, 0.022725279, -0.010562644, 0.010244003, -0.017965987, -0.0017898191, 0.022413418, 0.022833753, -0.0044982764, -0.015945662, 0.012094839, -1.4525861E-5, -0.005484711, -0.011416877, 2.2796466E-4, 0.018427001, -0.01827785, 0.0014127028, -0.006989786, -0.03441334, -0.037016712, 0.024610013, 0.018223614, 0.010908405, -0.016257524, 0.0034542154, 0.022020198, -0.005606744, -7.674739E-5, -0.02484052, 0.022847312, -0.013288051, 0.0012796529, 0.013159239, -0.015715154, -0.0068202955, -0.019199878, -0.00310337, -0.005447423, -0.009152484, 0.021911725, 0.099470556, -0.0012923647, 0.0014677873, 0.0070575825, 0.0013177883, 0.013627032, 0.004542344, -0.010989761, -0.006372841, -0.0070711416, -0.0030728618, -0.011437216, -0.018372765, 0.028067619, -0.026548984, 0.030047266, 0.017437177, 0.029423542, -0.004311837, -0.020420209, 0.007877916, -0.016786333, -0.008833842, -0.012467718, -0.005749116, 0.008813503, 0.040162455, 0.022671042, 7.847408E-4, -0.057979293, 8.5041835E-4, 0.025301535, -0.023335446, -0.016813453, -0.0051762382, -0.021572744, -0.012094839, -0.018888015, 0.018237172, -0.022657484, -0.0016101593, 0.002872863, -0.008894859, -0.015715154, 0.030969294, 0.008447404, -0.0122033125, -0.010664339, -0.05803353 ], - "id" : "64828f9b-bb26-4dab-ba1f-e8eb8c2af41f", - "metadata" : { - "name" : "SonicRide 8S" - }, - "text" : "- Crank: Size: M - SonicRide alloy, 170mm length; Size: L, XL - SonicRide alloy, 175mm length\n- Chainring: SonicRide 46T narrow/wide alloy, with alloy guard\n- Cassette: Size: M, L, XL - Shimano Deore M4100, 11-42, 10 speed\n- Chain: Size: M, L, XL - KMC E10; Size: M, L, XL - KMC X10e\n- Pedal: Size: M, L, XL - SonicRide City pedals; Size: M, L, XL - Wellgo C157, boron axle, plastic body; Size: M, L, XL - slip-proof aluminum pedals with reflectors\n- Max chainring size: 1x: 48T\n\nComponents\n- Saddle: SonicRide Commuter Comp\n- Seatpost: SonicRide Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length\n- Handlebar: Size: M - SonicRide alloy, 31.8mm, 15mm rise, 600mm width; Size: L, XL - SonicRide alloy, 31.8mm, 15mm rise, 660mm width\n- Grips: SonicRide Satellite Elite, alloy lock-on\n- Stem: Size: M - SonicRide alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length; Size: L - SonicRide alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length; Size: XL - SonicRide alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length\n- Headset: Size: M, L, XL - SonicRide IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom; Size: M, L, XL - SonicRide Integrated, sealed cartridge bearing, 1-1/8'' top, 1.5'' bottom\n- Brake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor\n- Brake rotor: Shimano RT56, 6-bolt, 180mm\n- Rotor size: Max brake rotor sizes: 180mm front & rear\n\nAccessories\n- Battery: SonicRide PowerTube 625Wh\n- Charger: SonicRide standard 4A, 100-240V\n- Motor: SonicRide Performance Speed, 85 Nm, 28 mph / 45 kph\n- Light: Size: M, L, XL - SonicRide Lync taillight, 50 lumens; Size: M, L, XL - SonicRide Lync headlight, 500 lumens\n- Kickstand: Size: M, L, XL - Rear mount, alloy; Size: M, L, XL - Adjustable length alloy kickstand\n- Cargo rack: SonicRide integrated rear rack, aluminum\n- Fender: SonicRide custom aluminum\n\nWeight\n- Weight: M - 25.54 kg / 56.3 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:------------------------:|:--------------------:|\n| M | 165 - 175 cm / 5'5\" - 5'9\" | 77 - 83 cm / 30\" - 33\" |" - }, - "283dddde-21be-43bb-b41b-3d9b9f7282e7" : { - "embedding" : [ 0.019419808, 0.0010929812, -0.041970477, -0.026316166, -0.008059855, -0.008313709, 0.0053697107, -0.04236536, -0.011712528, -0.027105933, 0.016824858, -0.0059126755, -0.021154474, 0.01692358, 0.008299606, 0.016754344, 0.013743357, -0.006783535, 0.018277466, -0.003952361, 0.0075944564, 0.0069809766, -0.023904556, -0.004671613, -0.0011687847, -0.018982615, 0.03238045, -0.011775991, 0.015485075, -0.0041815345, 0.0026249178, -0.006307559, -0.0274162, -0.037457522, -0.006018448, 0.013806821, 0.020378811, 0.01389849, 0.02751492, 0.008151524, 0.030434238, -0.013581173, 0.011804197, 0.009322071, -4.5559245E-5, -0.00465751, 0.03573696, -0.008151524, 0.008715644, 5.1167386E-4, -0.022607083, 0.024694324, -0.013778615, -0.008962446, -0.0047068708, -0.031506065, 0.012474089, 0.0013142218, 0.010887503, -0.013327319, 0.004382502, 0.01688127, -0.034213837, 0.0077848467, -0.0075944564, -0.009702852, -0.037147257, 0.009745161, -0.01848901, 0.0020995815, 0.027472612, 0.019137748, 0.04803476, -0.011324695, 0.018503115, -0.009300917, -0.009681698, -0.0032401604, -5.980546E-4, 0.0014464372, 0.014920956, 0.005204001, -1.5094598E-4, 0.012403574, 0.017332567, 0.010633649, -0.0217468, 0.030434238, -0.027120037, 0.0046962933, -0.01664152, 0.019504426, 0.018474909, 0.014568382, 0.0035469003, 0.016274843, -0.036188256, 0.04425516, -0.0035592404, -0.01800951, 0.01200869, -0.008299606, -0.028544437, -0.012967693, -0.022212198, -0.028727777, -0.020223677, 0.009900294, 0.005842161, 0.009745161, -0.017276155, 0.025681533, -0.0034904883, -0.013870284, -0.006279353, -0.005464906, 0.04259101, -0.025709739, 0.002207117, -0.0087015405, 0.02349557, 0.023157097, -6.7562104E-4, -0.016669726, 0.010154148, 0.017797966, -0.009209248, 0.004132174, 0.035201047, -0.011529189, -0.009526565, 0.0010894554, 0.014194652, -0.0073688086, 0.0071149548, 0.027021315, -0.022578876, 0.019264676, -0.032662507, -0.013256804, -0.002704247, 0.00737586, -0.013581173, 0.0032101916, 5.92766E-4, 0.017981304, -0.017290257, 0.009667595, 0.0059937676, 0.0046927677, 0.013440143, -0.013658739, 0.013877335, 0.00954772, -0.002360487, -4.6848346E-4, -0.0135600185, 0.06289931, -0.01820695, 0.007629714, 0.011275335, -0.0034199734, 0.013489503, -0.0017708058, 0.032408655, 0.006392177, 0.01408888, 0.011578549, -0.011197768, -0.018756967, -0.01262217, 0.0023939814, -0.0086944895, 0.018517217, -0.010231714, 0.021309607, -0.009667595, -0.012650376, -0.016613314, -0.0108734, 0.0076085594, -0.020590356, 0.016303048, 0.012072153, -0.020548046, -0.022564773, 0.019349292, -0.0016914766, 0.0114939315, -0.020068545, 0.019560838, 0.024919972, -0.009582977, 0.006557887, -0.5817199, -0.025737945, 0.0013054074, -0.03153427, -0.010330435, 0.019039027, 0.0017963675, 0.007305345, -0.0076085594, 0.0043331417, -0.013468348, -6.7385816E-4, -0.0069527705, -0.0010092447, -0.02118268, -0.019321086, -0.005856264, -0.0065825675, 0.031167593, 0.0063040336, -0.016204327, 0.008059855, -0.015231222, 0.011691373, -0.0135247605, 0.033226628, 0.013863232, -0.02042112, -0.0010436208, -0.0042379466, -0.036188256, 0.038585763, 0.03838832, 0.0052463096, 0.047329612, -0.026344372, 0.009568874, -0.0025614542, 0.020167265, 0.02666874, -0.022846833, -0.008906034, -0.016937682, -0.020618562, -0.031026563, -0.007883567, 0.014286322, -0.008306657, 0.022719907, -0.022014756, 0.015936371, 0.001955026, 0.01650049, -0.016049195, 0.015485075, -0.016077401, 0.023509672, 5.932067E-4, -0.009561823, 0.0058210064, -0.018291568, 0.016796652, -0.016077401, -0.018658247, -0.0045270575, 0.03796523, -0.02108396, -0.030293208, 0.022423742, -0.007488684, 0.017219743, 0.009145784, -0.026259754, 0.03376254, 0.016077401, 0.027726464, 0.05189898, 0.021492947, -0.0055142664, 0.017840274, 0.0036103637, -0.0016914766, -0.010661855, -0.04137815, 0.016190225, -0.008158576, 0.022635289, -0.018573629, 0.042449977, 0.00954772, 0.0142369615, -0.0010771153, -0.021633975, -0.020153163, 8.14888E-4, 0.05810429, 0.002288209, 0.014568382, -0.013341422, -0.035877988, -0.012876024, -0.01650049, 0.014850441, 0.010725318, 0.0064838463, 5.037409E-4, -0.0057293368, -0.037090845, 0.0013142218, -0.014920956, -0.013644636, 0.004280255, -0.013905541, -0.009061167, -0.0054860604, -0.032352243, 0.030547062, 0.0040969164, 0.019123645, -0.019123645, 0.003009224, 8.5940055E-4, 0.020251883, -0.0043190387, 0.004523532, 0.00721015, 0.019560838, -0.0019797063, -0.017374875, -0.0049995077, 0.02902394, 0.005362659, 0.053732365, -0.0019215314, 0.008489996, 0.029672677, 0.002981018, -0.015132501, 0.027303375, -0.03726008, -0.017614625, 0.0093784835, -0.0068434724, -0.038698584, -0.017403081, -0.027684156, -0.01517481, 0.0019232943, -0.017671037, 0.0142158065, 0.009914397, -0.020407017, -0.024807148, -0.013433091, -0.0034851998, -0.012791405, -0.022395536, -0.013383731, 9.840412E-6, -0.002425713, 0.0019303458, 0.0069527705, -0.0040863394, -0.0086944895, -0.004294358, 0.013933747, 0.041914064, 0.032606095, 0.009829779, -0.055227283, -0.0114657255, 6.1083544E-4, -0.021704491, 0.029729089, -0.007834207, 0.011895866, -0.025526399, -0.020533944, 5.980546E-4, -0.0121215135, 0.016810756, 0.03768317, -0.039685793, 0.0047244993, -0.005630616, 0.011966381, 0.016627418, -0.0051652174, 6.579923E-4, 0.0128689725, -0.028657261, 0.026217446, 0.0070338626, 0.0042485236, -0.017910788, -0.012579861, 0.017064609, 0.0012798457, 0.009131681, -0.013969005, 0.013108723, -0.016458182, 0.025935385, -0.00837012, -8.5984124E-4, -0.036357492, 0.023241716, -0.024313543, 0.013158083, 0.01905313, 0.02666874, -0.02936241, -0.027952112, 0.00789767, -0.02666874, 0.0021383648, 0.00657199, 0.04921941, -0.013221547, -0.044226956, -0.016585108, 0.014300425, 0.009420793, -0.011049687, -0.02118268, -9.1140525E-4, -0.020576252, 0.00560241, 0.003340644, -0.032211214, 0.0034922513, 0.028332893, 0.033029187, 0.003659724, 0.0054895864, 0.021549359, 0.0015240036, -0.02803673, 0.049811736, 0.0114586735, 0.030434238, 0.024003277, 0.015301737, -0.010534928, 0.0069245645, 3.8717096E-4, 0.01626074, 0.022832729, 0.037090845, 0.009181042, -0.0031590683, 0.0114516225, -0.006822318, 0.0093361745, 0.0013644636, 0.0043401932, 0.020308295, -0.0050876513, 0.019504426, 0.005380288, 0.0061947354, 0.029870119, 0.01863004, 0.0425628, -0.02231092, 0.018658247, -0.004590521, -0.03872679, 0.009688749, -0.026231548, 0.00385364, -0.018065922, 0.0022300342, -0.005616513, 0.025173824, 0.01375746, 0.0071149548, 0.03232404, 0.02685208, 0.049332235, -0.02415841, -2.3424173E-4, -0.003934732, 0.019391602, -0.020378811, -0.007904722, 2.5142974E-4, -0.00477386, 0.022945553, 0.0034446537, 0.012438831, 0.0052745156, -0.003134388, 0.02590718, 0.011275335, -0.021718593, 0.04239357, -0.0072207274, -0.014794029, -0.0023058378, -0.012593964, 0.0063428166, -0.023509672, -0.026203342, 8.338389E-4, -0.021521153, -0.006811741, -0.0054754834, 0.034806162, 0.002734216, -0.0031044192, -0.04070121, -0.017981304, -0.023622496, -0.0024838878, 0.002661938, 0.0036420955, -0.009004755, -0.0013441906, -0.012036896, -0.017403081, -0.005352082, -0.0024733106, -0.0046998193, 0.04747064, 0.01863004, 0.014808132, 0.030941945, -0.024214823, -0.02255067, -0.021732697, -0.0064309603, 0.007291242, 0.014878647, -0.015259428, 0.004093391, -0.03455231, 0.0064873723, 0.015738929, -0.022480154, 0.004283781, -0.019222366, 0.012777302, -0.007855361, -0.016585108, -0.0026707524, -0.006462692, 0.011409313, 0.025357164, -0.009970809, 0.032041978, 0.014455558, 0.027811082, -0.01186766, 0.021069856, -0.008426532, 0.0011555632, -0.019419808, -0.028163657, 0.012805508, -0.008250245, -0.014582484, 0.027811082, -0.0019744176, 0.032916363, 0.01824926, 5.0153735E-4, -0.01961725, 0.018912101, -0.023001965, -0.00191448, -5.804259E-4, -0.010393899, -0.025963591, 9.08761E-4, 0.0061912094, 0.005694079, -0.01243178, 0.010132994, 0.013820924, 0.014307477, -0.018940305, -0.022832729, -0.03991144, 0.027472612, -0.030039353, 0.019292882, -0.002286446, -0.031477857, -0.004865529, -0.0013538863, 0.00654731, -0.018080024, -0.019208264, -0.014328631, 0.00541202, -0.015259428, 0.012840766, -0.004978353, -0.010513774, 0.021817315, -0.013976056, 0.032352243, 0.025117412, -0.0264713, 0.0057011307, -0.019321086, -0.011296489, -0.011500983, 0.01555559, 0.00817973, -0.041632008, 0.0017011723, 0.0027923908, -0.013722203, -0.011994587, 0.023946865, -0.011169563, -0.0068187923, 0.008116267, -0.004992456, 0.028121348, -0.009914397, 0.0056870277, 0.017332567, -0.021224989, 0.017981304, -0.006561413, 0.0068752044, 0.0046927677, 0.0011158985, -7.254222E-4, -0.018164642, 6.262606E-4, -0.011536241, -0.0066354536, -0.00496425, 0.017403081, -0.007735486, 0.0029034517, -4.2226315E-5, -0.00789767, 0.025836665, -0.008207936, -0.01834798, -0.048373234, 0.031421445, -0.008849622, -0.004132174, 0.033198424, 0.016105607, -0.0026090518, -0.005066497, 0.031731714, 0.03999606, 0.029672677, -0.009117578, -0.026259754, -0.027712362, -0.034806162, -0.028713673, 0.010182354, -0.0031696456, -0.01674024, -0.022578876, 0.01650049, -0.017346669, 0.008962446, -0.022099374, -0.025371267, -0.014808132, -0.02448278, -0.01569662, 0.03271892, -0.0023640126, -0.021436535, -0.031365033, -0.023199407, -0.024200719, -0.012368316, 0.021492947, -0.028389305, 0.023157097, 0.0217468, 0.039290912, 0.014208755, -6.170055E-4, 0.021507049, -0.0035275086, -0.00444244, -0.020886518, 0.0057469658, -0.044367984, 0.028107245, 0.014406197, 0.024948178, -0.02558281, -0.018658247, -0.02387635, 0.019137748, -0.021958346, -0.017431287, -0.017953098, -0.036836993, -0.013447194, -0.009970809, -0.008038701, -0.0121356165, -0.032070182, -0.006325188, 0.0425628, 0.010379796, 0.0021418906, 0.025695635, 0.013919644, -0.03621646, 0.048373234, 0.010365693, 0.02831879, 0.01995572, -0.0093643805, -0.013870284, -0.042196125, 0.03153427, 0.0016403532, 0.008440635, 0.008736798, -0.020914724, -0.019137748, 0.0033494586, -0.0066248765, -0.017135125, 0.0149350595, 0.0075944564, -0.013954902, -0.0012234338, -0.041293535, -0.029390616, -0.0108734, 2.7751475E-5, -0.0047068708, 0.036272872, -0.0047491794, -0.012981796, 0.017078713, -0.021690387, 0.0023622497, -0.016303048, 0.0039840927, 0.019885207, -0.0030885532, -0.026386682, -0.037429318, -0.013087568, 0.0022494257, 0.008066907, 0.049557883, -0.006325188, -0.007679074, 0.020477531, 0.0014111798, 0.003645621, -0.041349947, 0.009949654, 0.04315513, 0.023058377, -0.01272089, -0.011712528, -0.0330856, -0.005782223, 7.172689E-5, 0.014434403, 0.033931777, -0.012192029, -0.009745161, 0.007227779, -0.028220069, 0.012220235, 0.029475234, 0.005108806, 0.02510331, 0.0016553376, -0.011811248, 0.007827155, 0.0017487699, 0.045355193, -0.019490322, 0.008123319, 0.04411413, 0.00687873, -0.011359953, -0.008842571, 0.04411413, 0.026612328, -0.0063851257, 0.006931616, 0.0031114707, 0.009829779, -0.011952278, -0.012438831, -0.012022793, -0.0039876183, 0.004893735, 0.010668906, 0.004477697, 0.0071784183, -0.028262379, -0.01167727, -0.0075380444, -0.008377172, -0.023932762, -0.0048902095, 0.025314854, -0.031900946, -0.020816004, -0.0071396353, 0.022931451, 0.024243027, 0.035849784, -0.005256887, 0.011719579, 0.013151032, -0.029390616, -0.018982615, 0.015922267, 0.01961725, -0.013609379, 0.009470153, -0.0028840601, -0.035426695, 0.028121348, -0.022578876, -0.033339452, -0.008222039, 0.0012789642, -0.017840274, 0.016190225, -0.03810626, -0.0026778039, 0.010365693, -0.008088061, -0.021732697, -0.01895441, 0.01186766, 0.004921941, 0.03209839, 0.034721546, -0.01905313, 0.040306326, 0.013362576, 0.012488192, 0.015682517, -0.0069809766, -0.026696946, -0.011416364, 0.013806821, -5.954103E-4, -0.0056517706, -0.019701866, -0.0036561983, -0.037231874, -0.010647752, -0.014850441, 0.025427679, 0.042421773, -0.017572317, -0.017783862, 0.030941945, -0.041490976, -0.02486356, -0.022395536, 0.005306247, -0.0028593799, -0.025526399, 0.010231714, 0.03376254, -0.019828795, -0.06323778, -0.01616202, -0.024736632, -0.023566084, -0.0037231876, -0.033367656, -0.009695801, -0.0017875531, 0.0099285, 0.0013653451, 0.020830106, 0.012410625, 0.018503115, -0.00465751, 0.014060674, 0.0031502538, 0.005947933, 0.008003443, 0.007530993, -0.03565234, -0.014723514, 0.03350869, 0.010408002, 0.0067941123, 0.022339126, -0.014307477, -0.002954575, 0.01314398, -0.014864544, -0.010429156, 0.010668906, 0.0033053868, -0.046314195, -0.014497867, 0.011804197, 0.018277466, 0.007545096, 0.01167727, 0.005426123, 0.002453919, 0.006103066, -0.011381107, -0.007291242, -0.015894063, 0.0068082153, 0.011522138, 0.0073829116, 0.023142995, 0.037542142, 0.014095931, -0.031929154, 0.0040581333, 0.0079963915, -0.0016447604, -0.00704444, 0.008849622, 5.5839E-4, 0.0100906845, -0.00444244, 0.0067024427, 0.009618235, -0.0075803534, -0.0063322396, -0.018799277, -0.034580514, 0.035962608, 0.029249586, -0.018305672, -0.038219083, 0.0068611014, -0.02510331, -5.4737204E-4, 0.015061986, 0.031929154, -0.021817315, 0.0058174804, 0.009279762, -0.03111118, -0.031703506, 0.02992653, 0.010337487, -0.011846506, -0.009061167, 0.19168775, -0.0025914232, -0.017685141, 0.041942272, 0.02301607, 0.018601835, -0.0067623802, -0.02397507, -0.004639881, -0.006134798, -0.0018192849, 0.02250836, -0.02009675, -0.0068716784, 0.0203224, 0.031506065, -0.032408655, -0.02803673, -0.026175136, 0.0012639798, 0.010252869, 0.007601508, -0.010915709, -0.016331254, 0.008398326, -9.960232E-4, 0.0040052473, -0.009209248, 0.018545423, -0.0041956375, -0.010746473, -0.01678255, 0.004572892, 0.014836338, -0.025046898, 0.009195145, 0.016683828, -0.0066460306, -0.0016720849, 0.04425516, 0.0067306487, -1.632861E-4, 0.01971597, -0.028558541, -0.0029722038, -0.009011806, -0.02544178, -0.002788865, -0.012318956, -0.0024045587, -0.008024598, 9.021502E-4, 0.039262705, 0.0093855355, 6.781552E-5, -0.012727942, -0.005535421, -0.009505411, 0.006325188, -0.016077401, -0.012537552, 0.03909347, -0.015682517, 0.039319117, -0.029164968, 0.012333059, -0.013835026, -0.015301737, 0.0330856, 0.01569662, -0.034383073, -0.006480321, -0.018545423, 0.0020167266, -0.0033653243, -0.011042636, 0.010034272, -0.011261232, 0.013665791, 0.03130862, 0.018418496, -0.005937356, 0.013827975, -8.0915866E-4, 0.025935385, -0.012043947, 0.030547062, -0.0029774923, 0.007432272, 0.0024292388, -0.008588716, -0.009456051, 8.9906517E-4, -0.023227613, -0.004297884, -0.008102164, -0.023580188, 0.004311987, -0.023650702, 0.024708426, -0.0114798285, 0.04941685, 0.0063005076, -0.022578876, -0.045609046, -7.288378E-5, -0.0057469658, 0.04239357, 0.028516231, -0.011846506, 0.0016597448, -0.050291236, 0.004629304, -0.0024027957, 0.017092815, -0.019828795, -0.003934732, -0.02486356, -0.009477205, -0.0241161, 0.012248441, -0.024299439, 0.0059444075, 2.452597E-4, 0.0044459654, -0.023791732, -0.01640177, 0.035060015, -0.0014799318, -0.04061659, 0.051757947, -0.0011079656, 0.011613807, -0.0030568216, -0.0060748598, -6.540258E-4, 0.008941291, -0.023227613, -0.01947622, -0.002981018, -0.0011396973, 0.007791898, 0.0067623802, 0.0043437188, 0.027105933, -0.028191863, 0.002993358, -0.011190717, -0.008631025, -0.016810756, -0.017233845, -0.012763199, 4.5173618E-4, -0.025399473, 0.024059689, -0.007488684, -0.029390616, -0.030039353, 0.010309281, -0.007026811, -0.031506065, -0.026725153, 0.005091177, -0.0030903162, -0.023664806, -0.008468841, -0.17961559, 0.024454573, 0.029898325, -0.011797145, 0.0017743316, 0.011374055, 0.011931123, -0.009300917, -0.028234173, 6.861983E-4, 0.019067233, 0.0016756107, -0.040955063, -0.0010021932, 0.0023904557, 0.0013292062, -0.007157264, 0.028586747, 0.014822235, 0.011141357, 0.0011176614, -0.020026237, 0.03771138, -0.02335454, -0.007841258, -0.015231222, -0.007058543, 0.017713347, 0.0024433418, 5.5001635E-4, 0.010802885, -0.023326334, 0.034495898, -0.02297376, 0.022085272, -0.021563461, -0.0014367414, 0.019222366, -0.0121215135, 0.020505738, -4.574655E-4, 0.014074777, 0.011021481, 0.0033194895, 0.003814857, 0.03790882, 0.005785749, 0.0020890043, 0.0074675297, 0.003160831, 0.02831879, -0.03068809, -0.004065185, -0.01073237, 0.003716136, 0.0203224, -0.022183992, 0.007005657, 0.027867494, -0.0034217362, -0.0035275086, -0.020590356, 6.994198E-4, -0.008504099, -0.008757953, -0.021563461, 0.032211214, 0.05257592, -0.008278451, 0.0030198013, -0.01957494, -0.013496554, -0.015894063, -0.0066742366, 0.017614625, -0.015329943, -0.025455885, -0.00978747, 0.03768317, 0.006346342, 0.016303048, 0.032634303, -0.014441455, 0.03125221, -0.008356017, -0.016838962, -0.007806001, 0.02160577, -0.02236733, 0.0019462117, 0.015344045, -0.0047950144, 0.002385167, 0.0071784183, -7.721383E-4, 0.013447194, 0.013447194, 0.0016315388, 0.024948178, -0.006931616, 8.558748E-4, -0.0025015166, -0.028798291, -0.008638077, 0.010612494, 0.022776317, 0.02339685, 0.017558213, 0.013165135, 0.014335683, -0.02950344, 0.006029025, 0.022451948, 0.02311479, -0.01025992, -0.011183665, -0.0018316249, -0.020957032, 0.014963265, -0.008969497, 0.010274023, -0.005891521, -0.0025103309, 0.0142228585, -0.013186289, -0.032944568, -0.07260216, -0.024285337, 0.029475234, 0.010330435, -0.018742865, 0.0031943256, 0.002579083, 0.023326334, -0.022945553, 0.0467937, -1.4191127E-4, -0.004216792, -0.019123645, 0.02104165, 0.015499178, -0.0077566407, 0.0174877, -0.01895441, -0.016415872, 0.0017434813, -0.01451197, -0.02860085, -0.027345683, 9.0787956E-4, -0.024045587, -0.014850441, -0.015809445, 0.007939979, 0.013715151, -0.0053415047, -0.0028364626, -0.0029510492, 0.014596587, -0.0016615076, 0.012629221, 0.0038430628, -0.007291242, -0.033311248, 0.004481223, -0.05271695, -0.0010991512, 0.014526073, 0.03398819, -0.0058844695, -0.02486356, -0.028050832, 0.012840766, 0.013954902, 0.0065367324, -0.040080678, 0.00737586, 0.010549031, -0.015160707, -0.023284025, 0.028770085, -0.0024874136, -0.00856051, 0.009477205, -0.013348473, -0.0012049236, -0.019349292, 0.00671302, -0.038049847, 0.05271695, 0.0035327973, -0.018051818, 7.276258E-4, 0.0066248765, 0.010894555, -0.024045587, -0.0052498356, 0.015541487, 0.002051984, 0.016768446, -0.029475234, -0.017290257, 0.023805836, -0.011409313, 0.0075521474, -0.005256887, -0.027980318, -0.018404393, 0.02950344, -0.014046571, -7.439324E-4, 0.0203224, 0.0021401276, -0.007284191, 0.009646441, -0.03630108, 0.0349754, 0.02472253, 0.02325582, 0.0062758275, -0.035426695, -0.00574344, 0.0035698176, 0.015090192, -0.0128337145, 0.013856181, -0.030011147, -0.008017546, -0.08969497, 0.046257783, 0.034862574, -0.018897997, 0.0040193503, 0.015710723, -0.017741553, -1.040095E-4, 0.008504099, 0.011049687, 0.018460805, 0.008334863, -0.008814365, -0.019871103, -0.011853557, -0.017459493, -0.008384223, 0.004227369, 0.02468022, 7.4878026E-4, 0.013983108, -0.010386847, -0.008017546, 0.030603474, -0.029588059, 0.02580846, -0.0074252207, 0.0055953586, -0.0060819113, -7.7963056E-4, 0.03962938, 0.005535421, -0.024750736, 0.036047224, 0.014067725, -0.0015918742, -0.002720113, 0.003453468, 8.003443E-4, -0.027782876, -0.0045270575, -0.011839454, -0.0013133403, -0.011070842, -0.017149227, -0.024496881, -0.005052394, -0.00940669, 0.028967528, 0.037316494, 0.0019938091, -0.004534109, -0.0135459155, -0.033931777, -0.0058633154, -0.017572317, 0.0053838138, -0.017924892, -0.019560838, 0.012389471, 0.032493275, 0.011388158, -0.00940669, -0.0030162756, 0.01262217, -0.0054754834, -0.029700883, -0.015922267, 0.011733682, -0.018742865, -0.035483107, 0.0013265618, 0.019603146, 0.022592979, 0.0049854047, -0.020223677, 0.009258608, -0.007947031, -0.046342403, 0.014406197, 0.01555559, -0.0017628729, -0.013884387, -5.680858E-4, 0.01923647, 0.009963757, -0.033621512, 0.0075521474, -0.012050999, 0.016006885, -0.013207444, 0.022014756, 0.008341914, 0.02657002, 0.024087895, 0.009061167, -0.012692684, -0.00562709, 0.0035451374, 0.012967693, 0.019744176, -0.009681698, 0.0061524264, 0.0064450633, -0.0086733345, -6.156833E-4, -0.025568709, -0.02132371, -0.009575926, 0.014286322, -0.008765004, -0.015259428, 0.0080104945, 0.01309462, -0.008863725, 0.01881338, -0.0029052144, -2.2983455E-4, -0.010619546, 0.020886518, 0.028868806, 0.018785173, 0.0030056983, -0.008948343, 0.052011803, -0.017092815, -0.016754344, 0.009244505, 0.01726205, -0.001567194, 0.008475893, 0.009082321, -0.0042908327, -0.018559525, -0.0022159312, -0.01933519, -0.013249753, 0.011508035, -0.020054443, 0.112880275, -0.0035151686, -0.019448014, -0.008102164, -0.017854376, 0.024736632, 0.0046081496, 0.008814365, -0.027543126, -0.022395536, 8.693167E-5, 0.0027077727, 0.0011035585, -0.002496228, -0.033536892, 0.0025473514, 0.010083633, 0.01583765, -0.003427025, -0.010182354, 0.01853132, -0.021450637, 0.0075803534, 0.009082321, -0.015527384, -0.008348966, 0.0354549, 0.015400457, -0.010880452, -0.02755723, 0.024327645, 0.009025909, -0.022832729, -0.019969825, 0.037598554, -0.0022406115, -0.009209248, 0.0017901974, 0.019278778, -0.018771071, 0.022071168, -0.004132174, -0.017064609, -0.014991471, 0.011719579, -0.010104788, -0.017530007, -0.023834042, -0.033395864 ], - "id" : "283dddde-21be-43bb-b41b-3d9b9f7282e7", - "metadata" : { - "name" : "Urban Commuter BeamPro RT FlareX Bike Light Set" - }, - "text" : "price: 159.99\nname: Urban Commuter BeamPro RT FlareX Bike Light Set\nshortDescription: \ndescription: ## Overview\nIlluminate your ride with the Urban Commuter BeamPro RT FlareX Bike Light Set. This high-quality light set combines a powerful front light with an ultra-bright rear light to provide enhanced visibility and safety during your urban commutes. With advanced features such as daytime running lights, intelligent beam projection, and wireless connectivity, this light set ensures that you can see and be seen on the road.\n\n## Product Details\n- High-quality front and rear light set designed specifically for urban commuters.\n- Front light equipped with a powerful BeamPro RT beam projection technology for optimal visibility.\n- Rear light features the FlareX ultra-bright LED for maximum visibility from the rear.\n- Daytime running light mode with specific flash patterns designed for increased visibility during the day.\n- Multiple brightness settings for both front and rear lights to suit different riding conditions.\n- Wireless connectivity allows for easy pairing of front and rear lights for synchronized operation.\n- Built-in rechargeable batteries with USB-C charging capability for convenient charging.\n- Compact and lightweight design for easy mounting and transport.\n- Weather-resistant construction to withstand various weather conditions.\n- Compatible with a range of bike mounts and accessories for versatile mounting options.\n- Battery life indicator for convenient monitoring of remaining battery power.\n\n## Features\n- BeamPro RT Technology: Intelligent beam projection technology ensures optimal visibility while preventing blinding oncoming riders.\n- Daytime Running Light: Specifically designed flash patterns for enhanced visibility during the day, up to a distance of 2km.\n- Wireless Connectivity: Easily pair and control both front and rear lights with a single button press for synchronized operation.\n- USB-C Rechargeable: Built-in rechargeable batteries with USB-C charging port for fast and convenient charging.\n- Weather-Resistant: IPX4 waterproof rating to withstand rain and other adverse weather conditions.\n- Compact and Lightweight: Compact design and lightweight construction for easy installation and transport.\n- Battery Life Indicator: Clear fuel gauge display to monitor remaining battery power.\n- Mounting Compatibility: Compatible with a range of bike mounts and accessories for versatile mounting options.\n\n## Specifications\n- Battery Type: Lithium-Ion\n- Battery Capacity: 4800mAh\n- Battery Voltage: 3.6Vdc\n- Rechargeable: Yes\n- Charge Time: 4 hours (front light), 2 hours (rear light)\n- Dimensions (front light): 117.4mm (L) x 31.2mm (W) x 40.3mm (H)\n- Dimensions (rear light): [specify dimensions]\n- Waterproof Rating: IPX4\n- Wireless Compatibility: ANT+, Bluetooth\n- Weight: 257g (combined weight of front and rear lights)\ntags: [bikelight]" - }, - "5196102d-3afb-466a-8109-26a0cbe8dae2" : { - "embedding" : [ 0.035281703, 0.0053453003, -0.018334515, -0.0030194826, -0.0065014083, 0.0105681885, -0.010908221, -0.013764488, -0.0016058002, -0.034465626, 0.015464647, 0.0053453003, -0.0077323234, 0.016199116, -0.017654452, 0.02233329, -7.3276856E-4, -0.011445471, 0.017504837, -0.024400683, 0.007283482, -0.0072562792, -0.020429112, 0.016824774, -0.027161742, 0.0045564263, 0.029215533, 0.01239076, 0.010622594, -0.020415511, 0.0049542636, 0.015260628, -0.024414284, -0.010996629, -4.5080782E-5, -0.0048114504, 2.1156354E-4, -0.029759584, 0.025611196, -0.0137100825, 0.028045824, 0.0031435941, -0.011064636, 0.019041782, -0.010268961, 0.014988602, 0.021734834, 0.0032286022, 0.004604031, 0.010119347, -0.0023037156, 0.029677978, -0.007031858, 0.012839601, 0.009983334, -0.03732189, 0.009915328, 0.0020707939, 0.02189805, 0.0025689404, -0.001346526, 0.008738818, -0.027624184, 0.0017324621, -0.043415263, -0.03302389, 0.023883834, -7.098164E-4, 0.007072662, 0.021816442, 0.024400683, 0.02403345, 0.027324958, -4.8539543E-4, 0.01976265, -0.010534186, -0.01421333, -0.0015505451, -0.012894006, 0.010404973, 0.021884447, -0.017001592, 6.027064E-4, -0.0022476104, 0.02317657, 0.010139748, 0.0049338615, 0.0041109845, -0.027801001, -5.538268E-4, -0.0021319995, 0.0032082002, 0.0045972303, -0.0014519359, 0.009140056, -6.044066E-4, -0.013621675, -0.006494608, 0.0015411943, -0.045183428, 0.02552959, 0.022795733, -0.014362944, -0.017164806, -0.019300206, -0.0267129, -0.022618916, -0.0039579705, -0.0054235077, 0.010398173, -0.039552502, 0.02222448, 0.0021864045, 0.014471754, 0.013914102, -0.028073028, 0.014975001, -0.0063823974, 0.017681655, -0.035635334, 0.034030385, 0.012812399, -0.006324592, -0.028263444, 0.010234958, 0.025475184, -0.014607767, -0.0125471745, 0.0021881047, -0.0034785254, 0.022510106, 0.012771595, 0.012962013, -0.012485968, -0.0019959868, 0.00897684, -7.081163E-4, 0.032235015, -0.022850139, -0.0054337084, 8.934336E-4, 0.0093916785, 0.0021864045, 0.014009311, -0.00993573, 0.0106838, -0.021517213, -0.016933585, -0.0068278387, -0.019490624, 0.030058812, -0.008405587, 0.041837513, 0.01826651, 0.03816517, 0.0078275325, 0.009126454, 0.030330839, -0.018361717, 0.0047944486, -0.016783971, 0.011873911, 0.023258176, -0.028290648, 0.029759584, 0.023652613, 0.014702976, -0.009262467, -0.0076983203, -0.022931745, 0.010500182, 0.03014042, -0.02842666, 0.014458152, -0.00694685, 0.0046652365, 0.02467271, 0.0094324825, -0.019844256, 0.02489033, 0.008262773, -9.7334106E-4, 0.003750551, 0.021204384, -0.019028181, -0.014798185, -0.0024924332, -0.029732382, 0.002159202, -0.011173446, 0.027229749, 0.0043966114, -0.012485968, -0.012315952, -0.6293581, -0.026971323, 0.025189558, -0.011289056, -0.012132335, 0.02820904, 0.01228195, -0.009568496, -0.008915634, -0.015138216, -0.018008085, 0.024006246, 0.0023326182, 0.00309939, -0.021394802, -0.019313807, 0.020687535, -0.016593553, 0.019354612, -0.017532041, -0.007120266, -0.018688148, -0.028073028, 0.010649797, -0.018851364, -0.01549185, 0.015954293, -0.017423231, 0.0011901114, 0.003590736, -0.024074253, 0.053044964, 0.018103294, -0.013655677, 0.042898413, -0.04374169, -0.0019109788, 0.012628782, 0.03802916, 0.03794755, -0.016443938, -0.0061273733, -0.013043621, -0.015138216, 0.0044714184, -0.0015445945, 0.038056362, -0.02061953, -8.700564E-4, -0.026753703, 0.020388307, 9.9565565E-5, 0.019422617, -0.009976533, 0.01057499, 0.0033085097, 0.021394802, 0.0029531764, 0.017232813, 0.018239306, -0.0061681774, 0.02114998, -0.016525546, -0.016416736, -0.0102213565, 0.03835559, -0.032561447, -0.02489033, 0.016783971, 0.0065014083, 0.004570028, 0.0059709586, -0.013390453, 0.014254134, 0.014594166, 0.024210265, 0.022170074, -0.0014867891, -0.0065796156, 0.016879179, -0.012363557, 0.015274229, -0.012805598, -0.047468442, 0.05323538, -0.0058417465, 0.009820119, -0.009337273, 1.17842275E-4, 0.011724297, 0.050270304, 0.004338806, -0.002116698, -0.026536083, 0.006902646, 0.029188331, 0.020714737, 0.025774412, 0.0071474686, -0.034764852, -0.02221088, 0.012404361, 0.013159231, -0.002264612, 0.008174364, 0.01260158, -0.007671118, -0.020374706, 0.012839601, -0.02019789, 0.0075283046, 4.7051904E-4, -0.018048888, -0.0024108256, -0.007086263, -0.033567943, 0.026699299, 0.0076575167, 0.025706405, -0.019354612, 0.0053487006, 0.010187353, 0.017559243, -0.009357676, -0.020633131, 0.0048148506, 0.017545642, 0.0027066532, 0.018837763, -0.017668054, 0.014118121, 0.02019789, 0.029677978, -0.007351488, 0.014240532, 0.013499263, 0.003366315, 0.012615181, 5.01972E-4, -0.007569108, -0.04374169, -0.0020248895, -0.007963546, -0.021721233, -0.023244575, -0.005545919, 0.0030466851, 0.024196664, -0.0017800665, 0.017436832, -0.0031452943, -0.044394553, -0.01345846, -0.010058141, -0.0068448405, -0.019096186, -0.015505451, -0.0192322, -0.012458766, -0.007337887, 0.016906383, 0.012982415, 0.006963852, -0.013689681, 0.0066816253, 0.013397254, 0.022238081, 0.04308883, 3.4576986E-4, -0.050487924, 0.0037029465, 0.015682267, -0.015954293, 4.0548795E-4, -0.018960174, 0.011234651, -0.021530814, 0.003910366, -0.0069706524, -0.012642383, -0.00384576, 0.038192373, -0.04317044, 0.024400683, -0.010024138, 0.0030313837, -0.008718416, 0.019789852, -0.022822935, -0.003536331, -0.015831882, 0.0029106725, -0.024944734, -0.01239756, -0.003515929, 5.0792255E-4, -0.0033833166, -4.7306926E-4, 0.0033969178, 0.014920596, 0.015995096, 0.004641434, 0.03620659, -0.0060083624, -5.206737E-4, -0.044857, 0.024808722, -0.02222448, 0.024305474, 0.020497117, 0.018728953, -0.022822935, -0.0013074223, 0.0033612144, -0.0018327715, -0.017341623, 6.4606045E-4, 0.028589875, -5.8187946E-4, -0.035444915, -0.004243597, -0.009582097, 0.025665602, -0.004818251, -0.017899275, 0.009867723, 0.0021234986, 0.05353461, 0.009922128, -0.009731711, -0.008269574, 0.015913488, 0.023652613, -0.010921822, 0.008187966, 0.012016725, 0.03816517, -0.025162354, 0.036070574, -0.0063415933, 0.0065966174, 0.032643054, 0.013791691, -0.018919371, 0.028889103, 0.022510106, 0.014118121, -0.0014757381, 0.028508268, 0.011173446, -0.012703589, 0.010663398, 0.009670505, 0.014376545, 0.004073581, -0.0035329305, -0.0017282118, 0.038110767, -0.014689375, 0.008140362, 0.022265283, 0.026427273, 0.022999752, 0.012275148, 0.038192373, -0.0245775, -0.030086014, -0.0129076075, -0.014893394, -0.03364955, -0.009582097, -0.02231969, 0.0129756145, -0.008453191, 0.010350568, 0.011989522, 0.0039545703, -0.0013082725, 0.022387695, 0.040858224, -0.009262467, -0.020633131, -0.0016891081, -0.009990135, -0.017355224, -0.011833107, -0.012302351, 0.014866191, 0.010819812, 0.023897436, -0.0034479226, 0.020225093, 0.01870175, 0.002330918, 0.0077323234, -0.01025536, 0.015763875, -0.009384878, -0.0019415817, -0.0076847193, -0.014458152, 0.0038219576, 0.017491236, -0.019966668, 0.02425107, -0.017681655, 0.01164949, -0.026005633, 0.027216148, -0.006688426, 0.013852896, -0.046407543, 0.011513477, -0.011574683, -0.019354612, 0.0040973835, 0.033703953, -0.03035804, 0.008412387, -0.028671483, -0.01549185, -0.023516601, -0.027338559, -0.013376852, 0.016974388, 0.018157698, -0.008500796, 0.0082423715, -0.014444551, 0.003665543, -0.021558017, 0.0029429754, 0.0024754317, 0.01154068, -0.023897436, 0.0054031056, -0.0023853232, -0.0047502443, -0.010071742, -0.020986764, -0.017940078, -0.0035091285, 0.022088466, -0.0014910395, -0.029759584, 6.061067E-4, -0.009126454, 0.021272391, -3.642591E-4, 0.006498008, 0.014730179, 0.00544731, 0.03707707, -0.027216148, -0.0030738877, 1.8425474E-4, 0.013417656, -0.021163581, -0.0299228, 0.022741329, 0.010350568, -0.017572844, 0.010996629, -0.006443603, 0.0011127541, 0.015845483, 0.012315952, -0.002618245, 0.003451323, -0.019000977, 0.011459072, 0.0038389592, 0.009024444, -0.018960174, 0.039606906, -0.01250637, -0.024822323, -0.0078411335, -0.0047910484, 0.014838989, -0.012268348, -0.011227851, -0.0026777505, -0.032262217, 0.010670198, -0.02576081, -0.016634356, -0.001142507, 0.0042605987, -0.016756767, -0.010024138, 0.024495892, -0.008711616, -0.010160151, -0.022156473, -0.0153150335, -0.016729565, 0.00619538, 0.009310071, -8.2755246E-4, 0.018660946, -0.039606906, -0.0011671592, 0.028018622, -0.028889103, 0.0072426777, -0.03367675, -0.0031605957, 0.007936343, 0.011166645, 0.025611196, -0.023883834, 0.010520585, 0.011996322, 0.009452885, -0.003453023, 0.018960174, -0.016144712, 0.004298002, -0.003141894, 0.023530202, 0.012016725, -0.0052228887, -0.020578725, 8.692063E-4, 0.0020809947, 0.008296777, 0.031772573, 0.006178378, 0.0044408157, 0.016103907, -0.0038763627, 7.0556605E-5, -0.017001592, -0.010030938, -0.01463497, -0.005460911, -0.0020792945, -0.006423201, 0.014471754, 0.008514397, 0.026998525, -0.015029406, -0.021381201, 0.022360492, -0.036315396, 0.024931133, 0.0065116095, -0.011119041, 0.008840827, -0.010370971, -7.27243E-4, -0.014770982, 0.020714737, 0.021816442, 0.01324764, 0.01207793, 0.011554281, -0.015967894, -0.02596483, -0.0035975366, 0.018674547, 0.026454475, -0.004981466, -0.014349342, 0.011595085, 0.014621369, 0.028970711, -0.023965443, -0.01549185, -0.036995463, 0.0054745125, 0.0062803878, 0.032996688, -0.02370702, -0.0018514732, -0.02072834, -0.024509493, -0.010962626, 0.0017282118, -0.021326795, -0.018715352, -0.0052976958, 0.020877954, -0.0045054215, -0.011690294, 0.0075215036, 0.011023832, -0.0053623016, -0.0052738935, -0.036097776, 0.0076371147, -0.04221835, -9.2148624E-4, 0.023652613, 0.014675774, -0.001987486, -0.019735446, -0.0015479949, 0.018089693, -0.026984924, 0.007671118, -0.0047162413, -0.047250822, 0.018239306, -0.008201567, 0.017668054, -0.008187966, -0.029650774, -0.015505451, 0.042463172, -0.019667441, 0.016919984, 0.011363863, -0.010840215, -0.037675526, 0.04657076, -0.01314563, 0.03109251, -0.0014774383, -0.020741941, -0.009840521, -0.017681655, 0.0025162355, -0.017137604, 0.015274229, 0.008085957, -0.03860041, 9.265867E-4, -0.0064878073, 0.0067598326, -0.011173446, 0.006923048, -4.2057686E-4, -0.020633131, -0.004855654, -0.013818893, -0.025992032, 0.018280111, 0.0038661617, -0.0125199715, 0.03813797, -0.02158522, 8.1288854E-5, 0.020429112, 0.0060457657, 0.02158522, -0.0047400435, 0.01987146, 0.010711002, -0.019857857, -0.008045153, -2.0837574E-4, 0.011765101, -0.016579952, -3.8402344E-4, 0.023353385, -0.027705792, -0.014308539, 0.019585833, -0.0011850109, 0.009140056, -0.023516601, -0.012771595, 0.005800943, 0.009289669, -0.022251682, -0.013839295, -0.00384576, 0.0054779127, -0.009697707, -0.007943143, 0.0055425186, -0.017572844, 0.0094324825, 0.0017902675, -0.006637421, 0.009867723, 0.0033476132, -0.0121459365, 0.017980883, 1.0105321E-4, 2.1847045E-4, 0.012451965, -0.014077317, 0.0672991, -0.0021456007, 0.018144097, 0.014077317, 0.011370664, -0.012866804, -0.019000977, -0.008650409, 0.024550296, -0.020918757, 0.017668054, -0.025951229, 0.002232309, -0.015369439, 0.008045153, -5.108978E-4, -0.01549185, 0.010881018, -0.014675774, -0.004039578, -0.008684413, -0.021816442, -0.035200093, -0.018688148, -0.037376296, -0.0121731395, -0.02328538, -0.019898662, -0.024863126, -0.0037981553, -0.028916305, 0.015831882, 0.036260992, 0.009412081, -0.030494053, 0.0044612177, 0.015396641, -0.027107337, 0.015818281, 0.010717803, 0.010282562, -0.020157086, 0.0064198007, 0.007555507, -0.008562001, 0.020918757, 0.007331086, -0.023230974, -0.029297141, 0.022673322, -0.002373422, 0.007881938, -0.026481679, -0.005532318, 0.007297083, 0.0073650894, -0.028916305, -0.035227295, 0.0046754377, -0.011302657, 0.0032354027, 0.021598822, -0.020891555, 0.02574721, -0.001987486, 0.0086164065, 0.009677306, -0.009010843, -0.022591714, -0.009350875, 0.009575296, -0.008051953, 0.007555507, -0.038845234, 1.421758E-4, -0.027447369, 0.026672095, -0.009242065, 0.007936343, 0.042354364, -0.0113978665, -0.017477635, 0.039824527, -0.008602805, -0.019626636, 0.00940528, -0.016090306, -0.020116283, -0.026114443, -0.01057499, 0.03838279, 0.00737189, -0.019109787, -0.012785196, -0.011159845, -0.019273004, -0.002908972, 0.004842053, 0.028807495, 0.013621675, 0.022890942, -0.007569108, 0.009160457, 0.013179633, 0.036723435, -0.0078071305, 0.0016024, 0.0032065, 0.031364534, 9.7504124E-4, 0.012091531, -0.030004408, -0.023897436, 0.015355837, 0.024659108, 0.009840521, 0.010615793, -1.3282493E-4, -0.013805292, 0.024523094, -0.009119653, 0.033921573, 0.01773606, -0.0069298483, -0.05641808, -0.010377771, 0.002478832, -0.00491346, 0.0056139254, -0.0039375685, -0.0049338615, -0.010085343, 0.01325444, 0.018565737, -8.216019E-4, -0.017817667, 0.0030075815, 0.01250637, -0.001730762, -0.006593217, 0.062076207, -0.010241758, -0.019844256, 0.009520891, 0.013261241, -0.032126207, -0.0030058813, 0.011669892, -0.032751866, -0.005460911, -0.0010464479, -0.0019041782, 0.009527692, 0.011125841, -0.0065354113, -0.0049202605, -0.0069706524, 0.03941649, 0.028725889, -0.024849525, -0.040695008, 0.025067145, -0.03601617, 0.015995096, 0.0065966174, -0.006532011, -0.036941055, 0.012132335, 0.006763233, -0.021272391, -0.016307926, 0.022251682, 0.018280111, 0.0015037907, -0.008602805, 0.18650065, -0.0011493076, -0.0078071305, 0.041293465, 0.013744086, -0.008813624, 0.004199393, 0.0065116095, 0.004457817, -5.159983E-4, 0.009962932, 0.016783971, -9.924679E-5, 0.007555507, -0.0011416569, 0.00982692, -0.05783261, -0.022904543, -0.013560469, -0.01773606, 0.0076643173, 0.012227545, -0.008806824, -0.027188944, 0.020388307, -8.109759E-4, -0.013642076, -0.012744392, 0.013533266, 0.014920596, -0.0125199715, 4.4714185E-4, 0.0077867284, 0.008527998, -0.03710427, 0.0010864016, 0.014920596, -0.006378997, 0.0017282118, 0.031663764, 0.0023581206, -0.017028794, 0.027814602, -0.008745618, -0.0102077555, -0.006562614, -0.016647957, 0.010534186, -0.0153150335, -0.0073990924, -0.014811786, 0.013431257, 0.022170074, 0.030521257, 0.003940969, -0.019164193, 0.032996688, -0.019000977, -0.003410519, -0.016824774, -0.0125335725, 0.02746097, -0.010336967, 0.0374035, 0.0052398904, -0.009609299, -0.014063716, -0.022129271, 0.021816442, -0.0019177794, -0.03664183, 0.007725523, -8.7133155E-4, 3.1431692E-4, -0.018021686, -0.03922607, 8.0034987E-4, -9.18936E-4, 0.009337273, 0.007711922, -0.0170968, -0.007990748, -0.005695533, -1.3983808E-4, 0.002159202, -0.013791691, -0.0066748247, 0.0065014083, 0.019436218, -0.0055935234, 0.009908527, 0.014784584, 0.004876056, -4.3864106E-4, -0.0045020212, -0.009779315, -0.02478152, 0.048991784, -0.01078581, 6.6348707E-4, -0.0040021744, 0.034030385, 0.0078411335, -0.024210265, -0.03838279, -0.0059471563, 7.294745E-5, 0.025611196, 0.013064022, -0.03109251, 0.0024329277, -0.03218061, -0.013805292, -0.0077867284, -7.4084435E-4, -0.013499263, 0.010527385, -0.002616545, -0.0056173257, -0.027012128, 0.02660409, -0.011663091, 0.029868394, -0.013866497, 0.007446697, -0.01944982, -0.03343193, 0.011982721, -0.0064606047, -0.017708857, 0.0027916613, -0.0047094407, 0.0010591991, 0.013417656, -0.018973775, 0.014009311, -0.013798491, 8.755819E-4, 0.014267735, -0.006164777, 0.012336355, 0.007956744, -0.008840827, -0.014226931, 0.010833413, -0.029841192, -0.013397254, -0.008568802, -0.014866191, 8.941774E-5, -0.027093735, 0.0012555675, -0.009140056, -0.016144712, 0.01965384, 0.018511333, -0.017912876, -0.043877706, 0.0038083564, 0.02552959, -0.028399458, -0.0056513287, -0.0031588955, -0.014362944, -0.032507043, -0.015845483, -0.173117, -7.6252135E-4, 0.034438424, 0.0035873356, 0.0133224465, 0.007759526, 0.031446144, -0.012996016, -0.007881938, 0.009990135, 0.0125607755, -0.007276681, -0.021449206, -0.010955825, 0.0015658465, 0.003835559, -0.0048794565, 0.024414284, 0.01410452, 0.007936343, -0.006389198, -0.010935423, 0.013533266, -0.019055383, 0.016743166, 0.0117310975, -0.0050188694, 0.037485108, 0.022170074, -0.0153014315, -0.020034675, -0.035118487, 0.012356756, -0.021639625, 0.017980883, -0.0043422063, -0.016607154, 0.0027168542, -0.02520316, 0.030086014, -0.0046210326, -1.1412318E-4, 0.001057499, -0.014390146, 0.0105953915, 0.022782132, -0.0046958392, -0.0010779009, 0.010105746, -0.014390146, 0.029242737, -0.015831882, 0.0202931, -0.025774412, 0.019204997, -0.009901727, -1.8181076E-4, 0.01998027, 0.0057975426, -0.01368288, -0.022686923, -0.021503612, 0.0076779183, -0.010064942, -0.004447616, -0.021816442, 0.0013286744, 0.020361105, -0.023475796, -0.0018293712, -0.015804678, -0.014390146, 0.011601886, 0.005545919, 0.016593553, 0.0032609052, -0.011391066, -6.3330925E-4, 0.0245775, 0.01153388, -0.017151205, 0.041266263, 6.609369E-4, 0.01399571, -0.0034768253, 0.019844256, 0.008235571, -0.0027695592, 0.0035771348, -0.037457906, -0.0048352527, -0.022850139, -0.011187047, -0.006603418, -0.010976227, 0.0074330955, -0.0051242793, -0.025502386, 0.026141645, -0.0012411161, -0.003675744, -8.024751E-4, -0.018416123, 0.005919954, 0.038409993, -0.0042810007, 0.029215533, 0.031228522, 0.015845483, 0.04178311, -0.010302964, 0.018524934, 0.034900866, 0.021653226, -0.0051242793, 0.015573457, -0.048257317, -0.024223866, 0.012200342, -0.0051480816, 0.0013218737, -0.01870175, 0.0011136042, -0.0058723497, -0.016389534, -0.018892167, -0.06833279, -0.01078581, 0.022142872, 0.0025230362, -0.014226931, 0.006433402, 0.016362332, 0.009670505, -0.0010141449, 0.04401372, -0.015478249, -0.0033918174, -0.0017112101, 0.008031552, 0.016824774, 0.0037097472, 0.009337273, -0.0056683305, -0.023802226, 0.028807495, -0.007915941, -0.039824527, -0.009670505, -0.004512222, -0.016824774, -0.008194767, -0.019368213, 0.014866191, 0.025067145, -0.0025281366, 9.886426E-4, -0.023761423, 0.0020214892, 0.012438364, 0.0050596735, -0.0145125585, -0.027937014, 0.0027372562, 0.0013193234, -0.025556792, -0.008351182, 0.008011149, 0.013846096, -0.031799775, -0.02649528, -0.008636808, -0.010615793, 0.022986151, -0.0034802256, -0.01720561, 0.008881631, -0.021109175, -0.009364476, -0.018973775, 0.03280627, -0.0137372855, 0.0064402027, -0.01356727, -0.00683804, 0.011309458, -0.0071542696, 0.0052568917, 0.008487194, 0.024427885, 0.0031877982, -0.0128192, 0.0026862514, 0.01335645, 0.02650888, 0.0036621427, 0.012404361, 0.010432176, -0.012037126, 0.037838742, -0.030738877, 0.011703895, -0.006100171, -0.03495527, 0.0049168603, -0.00822877, -0.019708244, -0.0057941424, 5.9590576E-4, -0.011268655, 0.008670812, 0.0224421, 0.002319017, -0.0026148446, 0.010656597, -0.043252047, 0.009146856, 0.02255091, 0.05043352, -0.0097929165, -0.014308539, -0.034846462, 0.013084425, 0.014063716, -0.016280724, -0.017722458, -0.033350322, -0.0066544227, -0.07600391, 0.04648915, 0.009024444, -0.018783357, -0.0036247391, 0.012417962, 0.023761423, -0.017980883, 0.004553026, 0.015886286, -0.005566321, 0.019245801, -0.015206223, 0.015682267, -0.0034751252, 0.0061273733, 0.0028681683, -0.0038117566, 0.017640851, 0.033731155, 0.026889715, 0.012832801, 0.0076031117, 0.0058791502, -0.022496505, 0.008167564, -0.024645505, 0.02746097, 0.014988602, -0.009799717, 0.029677978, -0.0047298428, 0.022278884, 0.028508268, -0.02532557, 0.007494301, -0.008596004, 0.0039137662, -0.031908587, -0.01432214, -0.020034675, -0.0025604395, 0.0014757381, -0.0041721906, -0.017246414, -0.0050426717, 0.013594472, 0.009384878, 0.0299228, 0.018783357, 5.151482E-4, 0.018130496, 0.016484743, -0.031636562, 0.005250091, -0.021626024, -0.004352407, -0.025652, 0.005212688, -0.0017919677, 0.067407906, -0.004083782, 7.9354923E-4, -0.027270552, -9.0320955E-6, -0.0017460634, -0.009595698, 0.014022912, 0.0038389592, -0.020877954, -0.036560223, -0.0054371087, -0.004423814, 0.014594166, 0.0062769875, 0.016063103, 0.013689681, -0.019300206, -0.03076608, 0.022782132, 0.04463938, -0.013193235, -0.0069400496, -0.008949637, 0.0067360303, -0.015219824, -0.049671847, 0.011452272, -0.013914102, 0.010520585, -0.037213083, 0.002104797, -0.011615487, 0.018579338, 0.016702363, 0.0101805525, -0.016117508, -0.017110402, 0.015532654, 0.023747822, -0.01998027, -0.004821651, -0.009541293, 0.0015896488, -0.0049304613, 0.026468078, -0.0059675584, 0.004359208, 2.8902706E-4, 0.009384878, 0.0086572105, 0.0035567328, -0.0018548736, 0.013125228, -0.0133224465, -0.006572815, -0.004944063, -0.01207113, -0.016824774, 0.04572748, 0.02372062, 0.002426127, 0.014335741, -0.0014077317, 0.011057835, -0.011017031, 3.4874515E-4, -0.0022476104, -0.0015683968, -0.03035804, 0.014458152, 0.0037573515, 0.0067394306, -0.012785196, -0.013873299, -0.012111933, 0.008664011, 0.028236242, 0.020891555, 0.064524435, 0.019041782, -0.015056609, -0.005590123, 0.0027100537, 0.02864428, 0.021979656, -0.031854182, -0.002436328, -0.029650774, -0.0011042533, -0.0026556484, -0.034792054, -4.0208764E-4, -0.030793281, 0.0038389592, 0.015750274, -0.012962013, 1.9359234E-6, -0.025665602, 0.029841192, -0.0032030998, 0.02713454, -6.991904E-4, -0.014376545, 0.010309765, 0.03258865, 0.013172832, -0.009901727, -0.029079521, 0.030494053, -0.0041483883, -0.018715352, -0.013172832, 0.013587671, -0.014036514, -0.015573457, 0.02082355, 0.023775024, -0.033975977, 0.0014765882, 0.002874969, -0.020265896, -0.0020809947, 0.0046108314, -0.016729565, 0.00566153, -0.02552959, -0.06675505 ], - "id" : "5196102d-3afb-466a-8109-26a0cbe8dae2", - "metadata" : { - "name" : "Blaze X1" - }, - "text" : "| K - Wheelbase | 983mm | 983mm | 990mm | 1005mm | 1019mm | 1036mm | 1055mm |\n| L - Standover | 741mm | 765mm | 787mm | 806mm | 825mm | 847mm | 869mm |\ntags: [bicycle, mountain bike]" - }, - "b2f097bb-9bd5-42ae-ab85-dd5dab7894c6" : { - "embedding" : [ 0.008288982, 0.0015296399, -0.031052127, -0.010112278, -0.013583553, 0.020182481, -0.017545715, -0.039130732, 0.0067532067, -0.010329671, 0.0143268965, 0.0011290408, -0.033773046, -0.012258157, 0.004814202, -0.0011684871, 0.017475588, -0.010308634, 0.0016488554, -0.033885248, 0.0031381724, 0.0199721, -0.009656454, 0.010301621, -0.013597578, -0.008667667, 0.027377486, -0.024446188, 0.0020722456, -0.022412512, 0.018331135, 0.032118056, -0.014277807, 0.012068815, -0.007594728, -0.012426461, 0.022945475, -0.0050596455, 0.037251335, -0.0052104183, 0.0339133, -0.014838822, -0.01328902, 0.0033660843, -0.052342612, 0.021683194, 0.002335221, -0.00906739, 0.005676761, 1.0935391E-4, -0.023099754, 0.022047853, -0.017363384, 0.017671943, -0.009943974, -0.028751971, 0.03315593, 0.0064481553, 0.040925976, 0.015526064, -0.0015515545, 0.012650867, -0.028219007, -0.0069600805, -0.025512114, -0.027854348, -0.0219637, 0.023422336, 0.01722313, -0.003748275, -0.002862925, 0.029004427, 0.01632551, 0.011921549, 0.009965012, -0.00672165, 0.0050210757, -0.0018092704, -0.007566677, -0.002210746, 0.016437711, -0.019102529, -0.0029856467, 0.002731437, 0.027237233, 0.029032478, 0.0106452415, -0.005915192, -4.9877656E-4, -0.014249757, 0.0041024154, 0.009396985, -0.0016365832, 0.016858472, 0.0032679068, -0.0063640033, -0.019467188, 0.004512657, -0.036045153, -0.02316988, 0.012202056, 0.027167106, -0.0066024344, -0.021851497, -0.04861187, -0.026564015, -0.008576502, 0.016620042, 0.022875348, 0.010582128, -0.010434861, 0.029845947, -0.0038359335, 0.0031259002, 0.0043829223, -0.01936901, 0.0319217, 0.015974876, 0.017657917, -0.014354947, 0.02148684, 0.044572566, 0.011858434, -0.011262357, -0.01855554, -0.0022160055, -0.016129155, -0.0012342309, 0.010883673, -0.024263859, 0.020392861, -0.0024807341, 0.012040764, 0.01870982, -0.028022652, 0.0048948475, -0.011143141, 0.022132006, -0.028597692, -0.028134855, -0.0063394587, 0.011591953, -0.020294683, 0.01659199, -0.03183755, -0.009579315, -0.0074474616, 0.013632641, 0.004523176, -3.3704672E-4, 0.020350786, -0.017391436, -0.0016996972, 0.03469872, -0.0026437787, -0.009754632, 0.0018443337, 0.0027033866, -0.018190881, -0.026017027, -0.0249511, 4.8650437E-4, 0.011549877, 0.001193908, 0.029958151, 0.01535776, -0.015077253, -0.018190881, -0.01716703, -0.03279127, -0.023492463, 0.029369086, -0.025357835, 0.012216081, 0.0021949676, 0.016676143, 0.0299862, -0.013429274, -0.0122932205, 0.013176817, 0.026227407, 0.020084303, 0.004761607, 0.0032310903, -0.019537315, 0.010322658, -0.0030750583, -0.032987628, 0.022664968, -0.025596267, 0.015932798, -0.006991638, -0.0037798323, -0.012012714, -0.5821082, -0.023801021, -0.01656394, -0.0036185407, 0.02057519, 8.577379E-4, -6.995144E-4, 0.01879397, 0.0032205714, 0.0065288013, -0.02715308, -0.0023562592, -0.012349322, -0.024067502, -0.031669244, -0.024965126, 0.008288982, -0.012482563, 0.01949524, 0.006497244, -0.017124955, 0.013310059, -0.011220281, 1.4047266E-4, 0.011178205, -0.0057644197, 0.01879397, -0.01318383, -0.005206912, 0.014263783, -0.037447687, 0.054670822, -0.014502213, -0.014312871, 0.037335485, -0.024923049, 0.010582128, 0.02413763, 0.014319884, 0.024726694, -0.016297458, -0.007461487, -0.010469925, 0.0033748501, 0.0017330075, 0.023183906, 0.032146107, -0.012517626, -0.005168342, -0.04140284, 0.032819323, -0.0036465914, 0.006910992, 0.0070021567, 0.010673293, -0.01265788, 0.036045153, -7.5276694E-5, -0.0012526392, -0.0020582203, 0.0038043766, 0.006125572, -0.0064376364, -0.027419562, -0.006672561, 0.026199356, -0.03382915, -0.027293334, 0.02175332, -0.02368882, 0.017124955, 0.033015676, -0.011788308, 0.0046143406, 0.004733556, 0.019901974, 0.0439835, 0.0065323072, -0.0053366465, 0.016423687, 0.019537315, 0.0021599042, 0.008022501, -0.029845947, 0.027419562, -0.010995875, 0.010547064, -0.0038359335, 0.01184441, 0.009810734, 0.019312909, -0.0011141389, -0.015652291, -0.019775746, -1.8517846E-4, 0.02558224, 0.0068969666, 0.027279308, 0.0102034435, -0.02573652, -0.0113605345, -0.0019951062, 0.027279308, 0.0141095035, 0.012861247, -0.0030154507, -0.006297383, -0.020056253, 0.009361922, -0.029397137, -0.0050070505, -0.028457439, -0.027167106, 0.012538664, -0.023211956, -0.0153717855, 0.009993063, 0.012573727, 0.014088466, -0.02751774, 0.011318458, -0.016620042, 0.017882323, -0.003748275, -8.2661916E-4, 0.006374522, 0.011634029, 7.57369E-4, -0.03885022, -0.003194274, 0.002554367, 0.010448887, 0.0279385, -0.012671905, 0.032622967, 5.154317E-4, 0.009116478, -0.016690169, 0.017994527, -0.037644044, -0.023071703, 0.022636916, -0.0073843477, -0.026087154, -0.018190881, -0.012012714, -0.0061886865, 0.01535776, -0.01876592, -1.7378287E-4, 0.003394135, -0.02356259, -0.010469925, -0.015680343, -0.0053892415, -0.018120755, -0.009130504, -0.030378912, -0.028457439, -0.023885174, 0.014600391, -0.021108154, -0.01638161, -8.397679E-4, 0.0025806646, -0.0024614492, 0.0015086018, 0.02833121, -0.02431996, -0.03424991, -0.0141095035, -0.0064762062, -0.015834622, 0.018569564, -0.015764495, 0.019116554, -0.013296033, -0.012756057, 0.008983238, -0.011760257, 1.6775636E-4, 0.019523289, -0.036942776, 0.015708394, 0.025652368, 0.010708356, 0.026017027, 0.03360474, -0.01722313, 0.01404639, -0.012980463, 0.0020354292, -0.01276307, 0.0028611717, -0.0070722834, -0.0077770576, 0.0077139433, -2.2484391E-4, 0.015133354, 0.002314183, 0.023576615, -0.01821893, 0.015638268, 0.005462874, 0.004761607, -0.012377373, 0.0141095035, 0.0014297093, 0.011802333, 0.02453034, 0.023310134, -0.017124955, 4.6064513E-4, 0.01158494, 0.0036641231, -0.015469963, 0.039747845, 0.021641117, -0.004098909, -0.008520401, -0.012061803, 0.004814202, 0.01556814, -0.012882286, 0.0031837549, 0.031052127, 0.022286283, 0.037980653, -0.015399836, -0.04098208, 0.005063152, 0.042384613, 0.01656394, -0.0025403418, 0.023015602, 0.007741994, 0.0209679, -0.011956613, 0.024263859, -0.0058661033, 0.032202207, 0.034951176, 0.020743495, -0.041655295, 0.010897698, 0.025694445, 0.032482713, 0.023394287, 0.009943974, -0.002263341, -0.012692943, 0.013674717, -1.2306424E-5, 0.013120716, 0.01258074, -0.019803796, 0.01428482, 0.007699918, -0.011353522, 0.012742031, 0.026045078, 0.017209107, 0.021430736, 0.030547215, -0.008646629, -0.02293145, -0.035287783, 0.003860478, -0.0065533454, -0.043029778, 0.032931525, -0.012994488, 0.0065323072, -0.012468537, 0.020420913, 0.00817678, 0.004151504, -0.0065323072, 0.008751819, 0.03225831, -0.016129155, -0.04555434, 0.003322255, 9.957999E-4, 0.0020827646, 0.020266633, 0.018289058, 0.0051718485, 0.01475467, 0.05023881, 0.008807921, 0.013590566, -0.015301659, 0.0012333543, -0.008611565, 0.011500788, 0.024866948, -0.019074477, 0.013646667, -0.015021152, -0.03514753, -0.0013253957, -0.01428482, -0.05026686, 0.02431996, -0.020182481, 0.008359109, -0.029341035, 0.020434937, -0.0067602196, 0.023871148, -0.025245633, -0.011893498, -0.02214603, -0.005946749, 0.0299301, 0.012075827, -0.018878123, 0.016844448, -0.015245557, -0.0044565555, -0.017980501, -0.0043338337, -0.029397137, 0.060365114, 0.013253957, 0.0010440121, 0.025624318, -0.028275108, 0.0010071956, -0.01632551, -3.8460144E-4, 0.029172732, 0.024642542, 0.0024263859, 0.0155961905, 7.3808414E-4, -0.010554077, -0.0074334363, -0.007293183, 0.017784147, -0.014032364, 0.0017934918, -0.005929217, -0.018261008, 0.004484606, 0.0056101405, 0.0029874, 0.008934149, -0.01970562, 0.025596267, 0.017293258, 0.001022974, 2.6122216E-4, -0.0074544745, -0.00629037, 0.042805374, 0.01656394, -0.026956726, 0.017840248, -0.013071627, 0.013282008, 0.007805108, 0.019817822, 0.009691518, 0.022384461, -0.0073422715, -0.0052560004, -0.011725194, -0.011381573, 0.0026998802, 0.0050386074, 0.014123529, -0.023969326, 0.020462988, 0.001613792, -0.035287783, -1.8002854E-4, 8.1478525E-4, 0.0075456393, -0.0037903513, -0.028695868, -0.0016330768, -0.039719794, -0.00483524, -0.019565366, 0.0050386074, -0.016423687, -3.7999937E-4, -0.02075752, 0.00938296, 0.004105922, -0.017209107, -0.023197932, -0.035371937, -0.004053327, -0.014866873, 0.02099595, 9.2304347E-4, -0.0037202244, -0.009088428, -0.05116448, 0.015287633, 0.023338186, -0.015834622, 0.008232881, -0.0022966512, -0.023282083, 0.0013026046, 0.002438658, 0.0097055435, 0.0020599735, 0.04600315, 0.0016567446, 0.030070353, -0.0053506717, 0.024235807, -0.008590528, 0.0134433, -0.013331097, 0.014018339, 0.027040878, 0.01978977, -0.022594841, 0.01779817, -0.027251258, 9.5109415E-4, 0.011367547, -0.002314183, -0.0034011477, -0.0038043766, -0.0015489247, 0.0050491267, -0.0032135586, -0.01921473, -0.0015199975, -0.021066077, -0.008253919, -0.042777322, 7.025825E-4, 0.03200585, -0.00458629, -2.851091E-4, 0.005824027, 6.8592734E-4, -0.058962576, 0.016844448, -0.008983238, -0.015974876, 0.041346736, 0.016002925, 0.0053226207, 0.015287633, 0.03949539, 0.056886826, 0.031220432, -0.007110853, -0.0059327236, -0.0063359523, -0.0418236, -0.020715443, -0.0057363687, 0.017279234, -0.0095442515, -0.013190843, 0.01879397, 0.0299862, 0.005406773, -0.007720956, -0.024670593, -0.01297345, 0.007594728, -0.026704269, 0.030042304, -0.007812121, -0.0051963925, -0.017601816, -0.0358488, -0.027082954, -0.020196507, 0.013906136, -0.014123529, 0.019116554, 0.041627243, 0.0055330014, 0.005750394, 0.007265132, 0.005375216, -0.012882286, 0.0045161634, -0.014004313, -5.6057575E-4, -0.03478287, 0.037391588, 0.04799475, 5.601375E-4, -0.019256808, -0.031248484, -0.002449177, 0.034979228, -0.017629867, -0.031725343, -0.027293334, -0.031809498, 0.015610216, -0.025021227, 0.01318383, -9.2392E-4, -0.054362264, -0.0028839628, 0.024628516, 0.0019565364, 0.019242782, 0.014516239, 0.023941275, -0.015820596, 0.04875212, 0.013113704, 0.01680237, 0.009810734, -0.017671943, -0.025175506, -0.014067427, 0.020603241, -4.4092198E-4, 0.014165605, 0.02878002, -0.011206256, -0.009922937, 0.012258157, 0.0018250488, -0.021108154, 0.0047581005, -0.0032012865, -0.003828921, -0.019439137, -0.025764572, -0.034109656, -0.008295995, 0.01879397, -0.024979152, 0.0147125935, -0.021290483, 0.021290483, 0.027854348, 0.014235732, 0.017784147, -0.005375216, 0.011928561, 0.013134741, 0.0015717159, -3.1557042E-4, -0.046816625, -0.008590528, 0.009649442, 0.014228719, 0.007657842, -0.005343659, 0.009635417, -0.0016996972, -0.0112483315, -0.03643786, -0.01357654, 0.008485338, -0.0010159614, 0.03873802, -0.00629037, -0.011185218, -0.022160055, 0.014193656, -0.0014805512, 0.028471464, 0.021837473, -0.008646629, 0.022160055, 0.00867468, -0.012587753, 0.0070863087, 0.023240007, -0.0065288013, -0.0128402095, 0.003124147, -0.009502175, 0.01404639, 0.0105330385, 0.040505216, -0.01184441, 0.006164142, 0.0340255, -0.002678842, 0.008429236, 0.0040708585, 0.01124132, 0.02856964, -0.028078754, -0.00668308, -0.008141717, -0.008099641, 0.010336684, 0.0020143911, -0.011837397, -0.012209068, -0.027167106, -0.009340884, 0.0012815665, -0.0013639654, -0.01632551, -0.01813478, -0.003050514, -0.037756246, -0.012889298, 0.011388585, 0.011367547, -0.023520514, 0.0046529104, -0.016493814, 0.016549915, 0.009838784, 0.020168455, -0.011809346, -0.01538581, 0.025974952, -0.03183755, -0.010582128, 0.025413936, -0.007952374, -0.0072160433, 0.026549991, -0.003685161, -0.022805221, 0.01978977, 0.005915192, -0.018751895, -0.04462867, 0.006392054, -0.0209679, 0.011472737, -0.012987476, -0.0042707194, -0.004309289, 0.021472814, -0.016984701, -0.009614378, 0.017517664, -0.002926039, -0.0011395598, 0.0032714133, -0.04151504, 0.01934096, -0.017363384, 0.0122371195, 0.0038184018, -0.008548452, -0.030154506, 0.011051977, 0.0024561896, -0.009179592, -0.008892073, -0.029705694, -0.01580657, -0.026634142, 0.015876697, 0.018289058, -0.007265132, 0.00423215, -0.0022843792, -0.0065323072, 0.015063227, -0.011781295, -0.0012666646, -0.008253919, -0.015512039, -0.039046578, -0.014333909, -0.0070407265, 0.035652444, 0.016087078, -0.025470039, 0.0060238885, 0.004537201, -0.0678266, -0.010371747, -0.0041935802, 0.026129229, 0.018499438, 0.022468613, -0.007657842, 0.0028769502, 0.017699994, 0.026423762, -0.0073633096, 1.0272474E-4, 0.006321927, 0.016998727, -0.0139411995, 0.0046248594, -0.06681678, -0.007840171, 0.031753395, 0.009698531, 0.0025280695, 0.002573652, -1.5789477E-4, 0.013401223, -0.006995144, -0.009004275, 0.003881516, 0.026381686, 0.012195043, -0.040084455, -0.00807159, -0.033436436, 0.0070722834, 0.013057603, 0.01147975, -0.0419919, -0.022510689, 0.0011702402, -0.0057889638, 0.0028050703, -0.023857122, -0.0010957306, 0.026984775, -6.6751905E-4, -0.018092703, 0.040925976, 0.015399836, -0.010182405, 0.012882286, 0.050771773, 0.0021721763, -0.02510538, 0.003755288, -0.0126228165, 0.0073001953, 0.0032240776, 0.009607365, 0.012608791, -0.013246944, 0.0033801098, -0.00572585, -0.030939925, 0.035371937, 0.0072581195, -0.009165567, -0.016185256, 0.017868297, -0.0070407265, 0.009403998, -0.010490963, 0.012412436, -0.034109656, -0.002875197, -0.006767232, -0.025077328, -0.024923049, 0.046816625, 0.009481138, -0.023183906, -0.012124917, 0.18681768, 0.010308634, -0.018541515, 0.032061953, 0.025638342, 0.0024123604, 0.018050628, -0.012145954, 0.0049369237, -0.016129155, 0.015007126, 0.021879548, 7.240588E-4, -0.007861209, 0.024923049, -0.0060694707, -0.03705498, -0.0097616445, -0.0044670743, -0.012117904, -0.007419411, -0.0055715707, -0.011991676, -0.05694293, 0.0045161634, 0.01173922, -0.004491619, -0.025834698, 0.0042076055, 0.011339497, 0.01439001, -0.012026739, 0.00266657, 0.016998727, -0.03394135, -0.009768657, 0.011444687, -0.004361884, 0.0016891783, 0.03433406, 0.012706968, -0.011367547, 0.015231532, -0.015652291, -0.021809421, -0.01108704, -0.007917311, 0.027279308, -0.04356274, -0.013211881, -0.021248408, 0.014312871, -0.0073492844, 0.03643786, -0.0054348237, -0.0044565555, 0.008197818, 0.003103109, 0.014277807, 0.0092146555, -0.011416636, 0.022089928, -8.507252E-4, 0.032622967, -0.00749655, 0.0028313678, -0.011942587, -0.020897774, 0.026255459, 0.012566715, -0.01328902, -0.021416713, -0.0012368606, -0.0063990667, -0.026171306, -0.02311378, 0.018415287, 0.004400454, -0.0037237308, 0.012777096, 0.020070277, -0.010070202, 0.02610118, 0.015988901, -0.008134704, -0.03077162, 0.012349322, 0.0019284858, 4.6415147E-4, -0.015946824, 0.0018706312, -0.005592609, -0.012489576, -0.016577965, -0.0012570221, -0.0065428265, -0.023702843, 0.017124955, -0.026816472, 0.006525295, -0.029032478, 0.05307193, -0.028415361, 0.004709012, -0.027321385, 0.0074053854, -0.01779817, 0.031725343, -0.0046984926, -0.026872573, -0.0051508103, -0.03150094, -0.018962275, -0.0077980952, 0.04350664, 0.004638885, -0.018387236, -0.03424991, 0.014488188, -0.027237233, 0.020505063, -0.0074053854, 0.018499438, 1.313781E-4, 0.036886673, -0.013885098, -0.03035086, 0.011879473, -0.006549839, -0.023422336, 0.032202207, 0.010736407, 0.0020845179, -0.011591953, -0.031164331, -0.010687318, -0.0037342499, -0.011935574, -0.0072090304, 0.007107347, -0.006090509, 0.015091279, 0.033688895, 0.004407467, 0.035371937, -0.023085728, 0.017685968, -0.0016690168, -0.028808072, -0.011122104, -0.037447687, 0.0030785645, 0.0064902315, -0.003797364, 0.01187246, 0.01596085, -0.015834622, -0.008008475, 5.298953E-4, 0.008457287, -0.017896349, -0.011276383, 0.010189418, -0.002200227, -0.026956726, -0.009859822, -0.17829026, 0.019873923, 0.018415287, -0.027012827, 0.007938349, 0.00117287, 0.029958151, -0.006206218, -0.014768695, 0.005634685, 0.010603165, -0.015932798, -0.018022576, -0.007931336, 0.012391398, -0.009039339, -0.021374635, 0.018471388, 0.032454662, 0.01354849, -0.014081453, -0.024698645, 0.016213307, -0.018022576, -0.0030014252, 0.017391436, -4.2076054E-4, 0.020617267, 0.0056487103, -0.005220937, 8.3231693E-4, -0.030154506, 0.029341035, -0.013022539, 0.022089928, -0.013885098, -0.005024582, 0.0028822098, -4.152819E-4, 0.03669032, -0.007868222, 0.0026350128, 0.030575266, 0.004656417, 0.015526064, 0.024123605, -0.022426536, -0.0053682034, -0.002098543, -0.0134433, 0.050912026, -0.015259583, 0.04232851, -7.1529293E-4, 0.034193806, -0.0035466608, -0.0022089928, -0.0050806836, 0.019074477, -0.015862672, -0.009081415, 0.0073843477, -1.9312252E-5, -0.0037623006, -0.018204907, -0.035792697, -0.0070617646, 0.016914574, -0.008415211, 0.013324084, -0.015007126, -0.002210746, -0.019986127, 0.007195005, 0.03941124, 0.003807883, -0.026227407, -0.0053471653, 0.029958151, -0.008008475, 0.008310021, 0.032987628, -0.015203481, 0.0010913477, -0.021599041, 2.01724E-4, -0.013218894, 0.008267945, -0.0039691743, 0.009389973, -0.023885174, -0.02413763, 0.0073001953, 0.0048317336, -0.0038429464, 0.017671943, 0.00369568, 0.006094015, 0.006195699, -0.004628366, 0.011297421, -0.0020792584, -0.043759096, 0.0015261335, 0.028864173, 0.014922974, 0.0074123982, 0.018695794, 0.015666317, 0.006342965, -0.034221858, 0.024670593, 0.022833273, 0.024838898, -0.0031995333, 0.020350786, -0.021304509, -0.019411087, 0.024474239, -0.0022124993, 0.015876697, -0.006258813, -0.016395636, 0.020238582, -5.3164846E-4, -0.039130732, -0.067265585, -0.022524714, 0.021472814, 0.022033827, -0.013211881, -0.012833197, 0.0019179668, 0.03918683, -0.0041655293, 0.0399442, 0.0035238697, -0.05223041, -0.015694369, 0.019326935, 0.011991676, 0.0060554454, 0.008955187, -0.020883748, -0.028808072, 0.018148804, -0.027952526, -0.009235694, 0.009130504, -0.0011527085, -0.016087078, 0.0037623006, -0.017826222, 0.018892149, 0.024614492, 0.013162793, 0.0063780285, -0.0137799075, -0.014838822, -0.0029593492, -0.016030977, -0.01734936, 0.008029514, -0.035568293, 0.018723844, -0.019354984, -0.0084643, 0.0024895, -0.0016111622, -0.028892225, -0.030435013, -0.026451813, -0.00469148, 0.027026853, -9.4057515E-4, 3.534827E-4, -0.018317109, 4.343476E-4, 0.0047125183, -0.010371747, 0.005024582, -0.027054902, 0.01976172, -0.023057679, -0.0020056253, -0.011655067, -0.001619928, 0.0046003154, -0.003476534, 0.005056139, 0.008436249, 0.0022791196, 0.022496663, 0.018653717, 0.034895074, -0.013983276, 0.0015173677, 0.027082954, -0.027868373, 0.021192307, -0.033212032, -0.0035519202, -0.022819247, -0.0061992053, 0.02615728, -0.0046003154, -0.017854273, -0.0086045535, 0.019102529, -0.042496815, 0.009740607, 0.035371937, 0.0033380336, 0.0056942925, -0.01354849, -0.046536118, 0.03189365, 0.0019565364, 0.03907463, -0.008295995, -0.038205057, -0.022678994, -0.00632894, 0.01942511, -0.013478363, -0.011122104, -0.03315593, -0.0075807027, -0.07949569, 0.029733745, 0.027643967, -0.03708303, 0.0012877026, 0.010070202, 0.030631367, -0.00856949, 0.013478363, -0.023043653, -0.0026542977, 0.006402573, -0.011493776, -8.616825E-4, -0.0021616572, -0.010883673, 0.029873999, -0.026690245, 0.016900549, -9.4495807E-4, 0.015918775, 0.0040743644, -0.0032556348, 0.019116554, -0.038878273, 0.011879473, -0.031697296, 0.031809498, 0.0036921739, 0.0012964684, 0.023674794, -0.026900625, 0.018836048, 0.05545624, 7.911175E-4, -0.009831771, -0.00728617, -8.318787E-4, 0.0050876965, -0.020855697, -0.028429387, -0.037026927, -0.007966399, -0.016507838, -0.004067352, 0.009495163, 0.024544366, 0.0044355174, -0.0070477393, 0.03910268, -0.004558239, 0.011816358, -0.02235641, -0.047265433, -0.017335335, -0.022468613, -0.0030610329, -0.018695794, -8.0338964E-4, 0.004982506, 0.046115357, 0.013127729, 0.021669168, -5.6846504E-4, -0.02015443, -0.0073843477, -0.034474313, -0.0034519897, 0.005178861, -0.030406961, -0.0119496, 0.016521864, 0.02537186, 0.017854273, -0.0041760486, 0.0115218265, -0.003176742, -0.013450312, -0.0065007503, 0.025554191, 0.0032030398, -0.0114517, 0.0035010783, -0.003239856, 0.014312871, -0.01155689, -0.03189365, 0.008976225, -0.011991676, 0.020799596, -0.05032296, 0.040925976, -0.017980501, -6.7409343E-4, 0.038597766, -0.0038184018, -0.010357722, 0.006465687, 0.034053553, 0.015652291, -0.0060624583, 0.012706968, 0.0057889638, 0.0147125935, 0.002833121, -0.013871073, -0.017054828, -0.023338186, 0.007615766, 0.006058952, -0.0050701643, -0.011563903, 0.0073562968, 0.026185332, -0.021094128, 0.041010126, -0.01942511, -0.008324046, -0.043338336, 0.030070353, 0.031669244, 0.0040954025, 0.005739875, 0.0073422715, 0.024095554, -0.022510689, 0.0011886485, -0.0059186984, 0.0023632718, -0.014852847, 0.0014945766, -0.0014130542, -0.010175393, -0.00998605, -0.010098253, -0.006942549, -0.008821946, -0.0067707384, 0.006269332, 0.108668424, 0.026143255, 0.02830316, -0.0025929369, -0.0104559, 0.008246907, 0.010343697, 0.0019723151, -0.02049104, -0.030631367, 0.014347934, 0.0025438482, -0.01105899, 0.0074544745, -0.04631171, 0.034979228, 0.017756095, 0.017124955, 0.01176727, -0.009228681, 0.010813546, -0.022678994, 0.011570915, -0.013534464, 0.0020810114, -0.001993353, 0.028920274, 0.037868448, 0.004919392, -0.040533267, 0.012258157, 0.01758779, -0.02510538, -0.0055575455, -0.004439024, -0.023913225, -0.017237157, -0.007195005, 0.008541439, 0.007945362, 0.007903285, 0.011711168, -0.005778445, -0.0132259065, -5.469887E-4, 0.0015261335, -0.013345122, -0.026409738, -0.042917576 ], - "id" : "b2f097bb-9bd5-42ae-ab85-dd5dab7894c6", - "metadata" : { - "name" : "VeloTech V9.5 AXS Gen 3" - }, - "text" : "price: 1699.99\nname: VeloTech V9.5 AXS Gen 3\nshortDescription: VeloTech V9.5 AXS is a sleek and fast carbon bike that combines high-end tech with a comfortable ride. It's designed to provide the ultimate experience for the most serious riders. The bike comes with a lightweight and powerful motor that can be activated when needed, and you get a spec filled with premium parts.\ndescription: ## Overview\nIt's right for you if...\nYou want a bike that is fast, efficient, and delivers an adrenaline-filled experience. You are looking for a bike that is built with cutting-edge technology, and you want a ride that is both comfortable and exciting.\n\nThe tech you get\nA lightweight and durable full carbon frame with a fork that has 100mm of travel. The bike comes with a powerful motor that can deliver up to 20 mph of assistance. The drivetrain is a wireless electronic system that is precise and reliable. The bike is also equipped with hydraulic disc brakes, tubeless-ready wheels, and comfortable grips.\n\nThe final word\nThe VeloTech V9.5 AXS is a high-end bike that delivers an incredible experience for serious riders. It combines the latest technology with a comfortable ride, making it perfect for long rides, tough climbs, and fast descents.\n\n## Features\nFast and efficient\nThe VeloTech V9.5 AXS comes with a powerful motor that can provide up to 20 mph of assistance. The motor is lightweight and efficient, providing a boost when you need it without adding bulk. The bike's battery is removable, allowing you to ride without assistance when you don't need it.\n\nSmart software for the trail\nThe VeloTech V9.5 AXS is equipped with intelligent software that delivers a smooth and responsive ride. The software allows the motor to respond immediately as you start to pedal, delivering more power over a wider cadence range. You can also customize your user settings to suit your preferences.\n\nComfortable ride\nThe VeloTech V9.5 AXS is designed to provide a comfortable ride, even on long rides. The bike's fork has 100mm of travel, providing ample cushioning for rough terrain. The bike's grips are also designed to provide a comfortable and secure grip, even on the most challenging rides.\n\n## Specs\nFrameset\nFrame\tCarbon fiber frame with internal cable routing and Boost148\nFork\t100mm of travel with remote lockout\nShock\tN/A\n\nWheels\nWheel front\tCarbon fiber tubeless-ready wheel\nWheel rear\tCarbon fiber tubeless-ready wheel\nSkewer rear\t12mm thru-axle\nTire\tTubeless-ready tire\nTire part\tTubeless sealant\n\nDrivetrain\nShifter\tWireless electronic shifter\nRear derailleur\tWireless electronic derailleur\nCrank\tCarbon fiber crankset with chainring\nCrank arm\tCarbon fiber crank arm\nChainring\tAlloy chainring\nCassette\t12-speed cassette\nChain\t12-speed chain\n\nComponents\nSaddle\tCarbon fiber saddle\nSeatpost\tCarbon fiber seatpost\nHandlebar\tCarbon fiber handlebar\nGrips\tComfortable and secure grips\nStem\tCarbon fiber stem\nHeadset\tCarbon fiber headset\nBrake\tHydraulic disc brakes\nBrake rotor\tDisc brake rotor\n\nAccessories\nE-bike system\tPowerful motor with removable battery\nBattery\tLithium-ion battery\nCharger\tFast charging adapter\nController\tHandlebar-mounted controller\nTool\tBasic toolkit\n\nWeight\nWeight\tM - 17.5 kg / 38.5 lbs (with tubeless sealant)\n\nWeight limit\nThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing & fit" - }, - "6748a752-7f98-49e2-8216-acc15a523a80" : { - "embedding" : [ 0.010301024, -0.020398336, -7.23601E-4, -0.012514691, 0.011822071, 0.0215527, -0.021797156, -0.06714339, 0.0112720495, -0.038487937, -0.004495239, 0.00850157, -0.01613397, -0.0071434914, -0.0019267735, 0.023195976, 0.014436372, 0.01284063, 0.0028383834, -0.03905833, 0.0051233503, 0.03313711, -0.024051566, 0.0069024325, 0.005839736, -0.0049230335, 0.0399275, 0.0013003598, 0.019488422, -0.0070212646, 0.0100633595, 0.009404692, -0.026468944, -0.015224057, -0.0031541367, -0.018890869, 4.638686E-4, -0.0015677315, 0.014911699, -0.022421872, 0.027867766, -0.006545937, 0.007761417, 0.0015872539, -0.023318203, 0.0044171494, -0.0106812855, 0.009526919, 0.0030624664, 0.008229954, -0.0017722921, 0.035826102, -0.0074354783, 0.0045801187, -0.019339034, 0.004464682, 0.012127639, 0.020547723, 0.018469865, 0.0053779897, -0.030665407, 0.0034053812, -0.027501084, -0.010117683, 0.0020676742, -0.030801214, -0.01128563, -0.020914406, -0.0312358, 0.018592091, 0.030149337, 0.023549076, 0.03799903, -0.017138947, 0.024689863, -0.008759605, -0.0029130778, 0.026985014, -0.015264799, 0.0054221274, 0.023929339, -0.002447936, -0.020547723, 0.020724274, 0.026401041, -0.0013037551, 0.021118116, 0.054594744, -5.1437214E-4, -0.015414188, 0.014015367, 0.011747377, -0.003368034, -0.0075780763, -0.011007224, 0.0037449007, 0.014191917, 0.024241697, -0.016690781, -0.004152324, -0.0143820485, 0.012175172, -0.0051335357, -0.01492528, -0.049216755, -0.021661347, 0.0017519209, -0.023671303, -0.0061147474, 0.003887499, -0.024676282, 0.021946544, 0.014259822, -0.031045668, -0.0043152934, 0.010341765, 0.019488422, 0.010355347, 0.0065663084, -0.032566715, 0.0070008934, 0.026496107, 0.013051132, 0.0023613586, 0.0111430315, 0.0121548, 0.0021593443, 0.0011501225, 0.019379776, -0.006980522, -4.7999577E-4, 0.018334055, 0.014422791, -0.025463967, -0.00356156, 0.032648202, -0.01929829, 0.01753279, -0.025151609, -0.02952462, 0.012385674, 0.017994536, -0.02485283, -0.01980078, -0.015753707, 0.020466238, -0.015903097, 0.009608404, 0.003115092, -0.006393153, 0.0121548, -0.013736961, 0.025396062, 0.0033120133, -0.015373445, -0.001848684, 0.01197825, 0.011007224, -0.036505144, 0.00971026, -0.013865978, 0.013709799, 0.009751001, -0.006664769, 0.025531871, 0.025219513, -0.0041794856, -0.0051776734, 0.005853317, 0.020276109, 9.447132E-4, 0.02065637, -0.022476194, 0.018632833, -0.007224976, 0.028927065, 0.024350343, -0.012575804, -0.03490261, -0.009275674, 0.005048656, 0.020792177, 0.007795369, 0.0143820485, -0.0048245727, -0.010647333, 0.02708008, 0.013132617, -0.001595742, -0.016609296, 0.01545493, 0.01613397, 0.011740587, 0.026781302, -0.60407317, -0.0039384267, 0.014490695, -0.011047967, 0.013519669, 0.02584423, 0.01057943, 0.031643223, -0.00782253, 0.0043186885, -0.005500217, 0.016554974, -0.01354683, -0.017166108, -0.012908533, -0.01684017, -0.011360324, 0.0020320246, 0.02759615, 0.0066953255, -0.05747387, -9.8460674E-5, -0.0059823347, 0.010124473, 0.0059144306, -0.006488219, 6.5187755E-4, -0.016256196, 0.02949746, 0.029035712, -0.030774053, 0.017980956, -0.013343118, -0.017994536, 0.040008985, -0.020439077, 0.024200954, 0.052720595, -0.0021644372, 0.028845582, -0.004220228, -0.009778163, -0.009296046, -0.0042983177, -0.013920302, 0.004165905, 0.054268807, -0.023739208, 0.0011535177, -0.005296505, 0.036586627, -3.185118E-4, 0.011883184, -0.014422791, -0.006888852, -0.02811222, 0.02445899, -0.019013096, 0.006186046, -0.011312792, -0.013315957, 0.0103960885, -0.005557935, -0.02637388, -0.041421387, 0.030257983, -0.040742345, -0.027840603, 0.03764593, -0.01857851, -9.6253795E-4, 0.015808031, -0.0019607255, 0.005832946, 0.024879994, 0.042942435, 0.03770025, 0.02517877, 0.010504735, 0.015590738, 0.011611569, -0.006994103, 0.010497944, -0.016527813, 0.029932044, -0.0040199114, 0.009187399, -0.008521941, 0.013696219, 0.020031653, 0.0020897428, 0.019148903, 0.0077003036, -0.0074015264, -0.01875506, 0.045712914, -0.013723381, 0.020330431, 0.0056360248, -0.025925713, 0.0045291907, -0.015414188, 0.00416251, -0.0072860895, 0.012215913, 0.0031711126, -0.013424603, -0.007571286, 0.021566283, -0.0068515046, 0.0073064608, 0.0073064608, -0.010450412, -0.011081918, -0.022761391, -0.032784007, 0.004006331, 0.01493886, 0.0106541235, -0.04047073, -0.021050213, -0.009329997, 0.008895412, 0.010871416, -5.406849E-4, 0.014667245, 0.0025039567, 0.003975774, -0.02585781, 0.0012010505, 0.004057259, 0.032512393, 0.031697545, -0.003911265, 0.028573966, 0.021973705, 0.015468511, 0.0073064608, -0.0058635026, -0.04690802, -0.021769995, 0.0070076836, -0.0055137975, -0.025654098, -0.018687157, -0.02377995, -0.0042473897, -0.0038128046, -0.01250111, 8.229105E-4, 0.015522834, -0.039166976, -0.030312305, -0.035147063, -0.0015660339, -0.009038011, -0.0062199985, -0.011020805, 0.003558165, -0.022774972, 0.011448599, 0.0069024325, -0.033979118, 0.0070552165, -0.029741913, -0.01058622, 0.019216808, 0.02759615, -0.01701672, -0.037021212, -0.013152988, -0.012052944, -0.03577178, 0.005035075, -0.009065172, -0.011597988, -0.013227682, -0.009913971, 0.0033951956, 0.011339953, 0.0057039284, 0.0059483824, -0.028030735, 0.016446328, 0.030964183, 0.016894493, 0.018238991, 0.027582569, -0.001050813, 0.031072829, -0.014966022, 0.00763919, 0.006029867, 0.017750083, -0.0019573302, -0.0058736885, 0.013587573, 8.0890534E-4, -0.0033612435, -0.001959028, 0.0020965333, -0.010056569, -0.0071910243, -0.020099558, -0.0065085897, 0.010368927, 0.006298088, 0.011659102, 0.032539554, 0.0143820485, 0.01354004, -0.02358982, -0.0019760039, -0.015427768, 0.0062777167, 0.023820693, 0.02881842, 0.0050079133, -0.025015801, -0.011238097, 0.0042439946, 0.008114518, 0.028764097, -0.014449952, -0.022190997, -0.013655476, 0.0035853265, 0.014028948, -0.00399275, -0.029959206, 0.007367574, 0.03943859, 0.028383834, 0.0024784927, 0.005883874, 0.0020693718, 0.02623807, -0.015319122, 0.03609772, -0.007428688, 0.027894927, 0.042996757, 0.013988206, -0.021647766, 0.034413703, -0.01493886, 0.011536875, 0.008644168, 0.017926633, 0.01701672, -0.010131263, -0.013220891, -0.011638731, -0.013567202, -0.010131263, -0.014300563, 0.016622877, 0.0055817016, -4.901814E-4, 0.008202792, 0.0037007632, -0.011299211, 0.019488422, 0.0054289177, 0.014884537, -4.757518E-4, -0.0012383976, -0.011041176, -0.020493401, -0.004648023, 0.020506982, -0.0023155233, 0.0031728102, -0.0051199547, 0.0035751408, -0.0075984476, -0.0020031654, 0.020466238, 0.028085059, 0.05247614, -0.008270697, -0.012990018, 6.7394634E-4, 0.022286063, -0.020506982, 0.012446787, -0.011998621, -0.01318694, 0.002624486, 0.017573532, -1.5999858E-4, 0.023698466, -0.016582135, -0.012059734, -0.0035819313, -0.0123245595, 0.03139877, -0.021498378, -0.008413294, 0.00520823, 0.002059186, 0.0036023024, -0.03541868, -0.020900823, -0.009499758, -0.020927986, -0.009139867, -0.002152554, 0.016921654, -0.009751001, 0.002967401, -0.0038161997, -0.034114923, -0.012473948, -0.009608404, 0.015753707, -0.012935695, -0.021226762, 0.008426876, 0.01980078, -0.004597095, -0.0066002603, -0.016419165, 0.0277727, 0.05141684, 0.009099124, -0.0070891683, 0.028682612, -0.0013181847, -0.013770913, -0.011665892, -0.02065637, 0.0111430315, -0.015359865, 0.0038433613, -0.024363924, -1.0525106E-4, -0.02342685, 0.016595716, -0.022516936, -0.010620172, -0.025830647, 0.01719327, -0.041883133, -0.010199168, -0.022842877, -0.0048211776, 0.018592091, 0.0018266152, -0.0040912107, 0.023168815, 0.034793966, 0.02221816, -0.0033663365, 0.015020345, -0.0028112219, 0.0110140145, 0.021851478, -0.0197872, -0.021987287, -5.988276E-4, -0.0062233936, 5.326213E-4, 0.03074689, -0.014504275, 0.04182881, -0.01719327, -0.0074422685, 0.007374365, -0.0067971814, 0.013390651, 6.722487E-4, 0.012636918, -0.020357592, 0.019732876, 0.023399688, -0.014015367, -0.006715697, 0.018184667, 0.011896765, -0.010966482, 0.010348556, -0.025735583, -0.031208638, 0.008399714, -0.027161565, 0.013200521, -0.014110433, -0.025015801, -0.031914838, -0.019352615, 0.0065017994, -0.03590759, 1.3570172E-4, -0.01405611, -0.0071638627, 0.009642355, 0.010749189, 0.02083292, 0.020439077, 0.018646413, -0.02846532, 0.028057896, 0.04253501, -0.0028977995, -0.022720648, -0.004848339, -0.026672656, -0.007483011, 0.012066525, 0.022897199, -0.022897199, 0.002228946, -5.5256806E-4, 0.004165905, 0.0036158832, 0.009187399, -0.013573992, 0.012202333, -0.0022408292, 0.010545477, 0.006281112, 0.0019148903, -0.015957419, 0.01788589, 0.014273402, 0.020357592, -0.023535496, 0.012643708, 0.003768667, 0.005344038, -0.01564506, 0.0023834272, 0.041693002, -0.0036192785, 0.008277487, 0.009920761, 0.017329078, -0.01874148, 0.024350343, 0.004356036, -4.2376286E-4, 0.027283791, -0.028791258, -0.015400607, -0.044680774, 0.026849207, 0.0030539783, -0.0074354783, 0.01700314, -0.0032610854, -0.01527838, -0.03487545, 0.022707067, 0.028899904, 0.018143926, -0.034821127, -0.0032780613, 0.010301024, -0.030991346, -0.011991831, 0.011706634, -0.0089565255, -0.024404665, -0.029198682, -4.9824495E-4, -0.020466238, 4.2121645E-4, -0.017722921, -0.020914406, -0.031833354, 0.009791744, -0.014327725, 0.06334077, -0.0017536185, 0.0019726087, -0.015482091, -0.014191917, -0.026618334, -0.051797103, -0.006820948, -0.018795803, 0.012338141, 0.006023077, 0.04079667, -0.001089009, 0.017288337, -0.0039893547, -0.005887269, 0.0037211343, -0.006525566, -0.0020659766, -0.008664539, 3.095994E-4, 0.021905802, 0.0014217382, -0.019719295, 0.0010737306, -0.018456284, 0.014626502, -0.0065153805, -0.02118602, -0.014898119, -0.03471248, 0.0019997703, -0.0051165596, -0.018008117, -0.018171087, -0.033598855, -0.0066613737, 0.027813442, -0.02292436, 0.024119468, 0.0046242564, 0.006298088, -0.051661294, 0.024893574, 0.006131723, -0.0067564393, 0.013798075, 0.004892477, -0.016717942, -0.019366195, 0.030937022, 0.013865978, -0.012005411, 0.02377995, -0.01684017, 0.019311873, 0.032566715, -6.828587E-4, -0.027052918, 0.021892222, -0.009479386, -0.027446762, 0.0060502384, -0.03680392, -0.021865059, 0.0028112219, 0.016541393, -0.011054757, 0.022258902, -0.038976844, 0.0026889949, -0.009418272, 0.0012664079, 0.023128072, 0.00316602, 0.018130343, 0.015712965, 0.0057378807, -0.029280167, -0.03074689, -0.0034597043, -0.0029843769, 0.0312358, 0.02657759, -0.006617236, -0.0197872, 0.052503303, -6.31082E-4, -0.025192352, -0.041910294, 0.0045733284, 0.04079667, 0.023033006, -0.024540473, -0.013397441, -0.01840196, 0.007618819, -0.019502003, 0.00711633, 0.0029181705, -0.02255768, -0.0049264287, 0.021389732, -0.0239565, 0.013091874, 0.031942, -0.027894927, 0.009486176, -0.004098001, 0.0040199114, 0.0038603374, -0.0031099992, 0.01753279, -7.673142E-4, -0.01893161, 0.032539554, 0.004563143, -0.011224517, -0.027813442, 0.00416251, 0.022014448, -0.009771373, 0.008949735, -0.017790824, -0.019746458, 0.019529166, -0.0014056109, 2.1180185E-5, -1.520411E-4, 0.00312358, -0.022286063, 0.008257115, 0.0122227045, -0.0032322262, -0.0017705945, -0.015359865, 0.005880479, -0.035717458, -0.025803486, 0.017994536, -0.028383834, -0.037944704, 0.0027535036, -0.01719327, 0.024608377, -0.013125826, -0.009669517, 0.005313481, 0.019923007, -0.044843744, 0.01197146, 0.018836545, -0.0040402827, -0.015862353, -0.0030505832, -0.0043186885, -0.024771348, 0.025056543, -0.021729251, -0.026115844, -0.0026822046, -0.010314604, -0.00624716, -0.0041217674, -0.011951088, 0.035717458, -0.01145539, 0.012636918, -0.017845148, -0.025817066, 0.016174711, -0.017668597, 0.0094725955, 0.0042643654, -0.010525106, 0.009302836, -0.014653664, 0.0010143147, 0.0024615168, -0.011910346, -0.012976438, 0.009771373, 0.015237638, -0.005853317, -0.0020523956, 0.004427335, -0.036260687, -0.033653177, 0.010844255, 0.012793097, 0.010830673, 0.028003573, 0.0036498352, 0.0013164871, 0.019909427, -0.027867766, -0.009329997, 0.0022085747, 0.0023834272, -0.009730631, -0.023684883, 0.0103960885, 0.055137977, 0.017301917, -0.024024405, -0.0046412325, 0.006335435, -0.00901764, -0.0020456053, -0.0046446277, 0.042643655, 0.024594797, 0.00885467, 0.014558598, 0.013383861, 0.007320042, 0.010626962, 0.018320475, 0.016595716, 0.0012613152, -0.0050282846, 0.010110892, 1.8758455E-4, -0.039357107, -0.01804886, 0.017152527, 0.027324533, 0.014843795, 0.025042962, -0.020248946, 0.0024071936, -0.008087356, -0.011170194, -0.0077342554, 0.005432313, 0.02952462, -0.03145309, -0.016568555, -0.00954729, 0.029307328, 0.022788553, -0.0059823347, 0.011665892, -0.0054085464, 0.008447247, -0.008107727, 0.016378423, -0.0017705945, -0.014395629, 0.026143005, -0.013336328, 0.0072317664, 0.015821612, 0.02065637, -0.017288337, -0.019936588, 0.022014448, -0.027976412, -0.012949276, 0.012229495, 0.0060162866, 0.0236034, -0.007224976, 0.010552268, -0.0018860311, -0.027406018, 0.0049400097, -0.020914406, -0.028899904, 0.022014448, 0.0026448574, -0.04288811, -0.00990039, 0.028220866, 0.0041896715, 0.014449952, -0.0024801902, -3.5225155E-4, -0.045549944, 7.006835E-4, -0.016106809, -0.020018073, -0.0141511755, 0.01354004, -0.019108161, 0.0040334924, 0.014707987, 0.19349898, -0.0058023892, -0.0061079566, 0.025626937, 0.004804202, 0.02379353, 0.0071027493, 0.0059449873, 0.017383402, -0.0024326576, 0.008399714, 0.0062437644, -0.019325454, -0.0052727386, 0.02377995, -0.011197355, -0.020737855, -0.016894493, -0.024567636, 0.0054187323, -0.0025650703, 0.0020744645, -0.006980522, -8.0932974E-4, 0.017125366, 0.012514691, -6.654583E-4, -0.005248972, 0.0025141423, -0.0010660914, -0.0118356515, -0.02065637, 3.1617758E-4, -0.032593876, -0.01440921, 0.0060468432, 0.024526892, 0.0033357795, 0.0046616034, 0.009920761, 0.025314579, -0.0029096827, 0.016595716, -0.013254844, -0.024649119, 0.019746458, -0.013411023, 0.004563143, 0.013451765, -0.026781302, -0.0067937863, 0.014314145, 0.025138028, 0.0043831975, -0.009248513, -0.020004492, -0.024173792, -0.02153912, 0.006739463, 0.0066545834, -0.0215527, 0.025287416, -0.0050588413, 0.017329078, -0.031099992, 0.020384755, -0.021742832, -0.0029147754, 0.023820693, -0.004145534, -0.012575804, -0.0015753708, -0.0059076403, -0.0044341255, -0.0046242564, -0.0063048783, 0.008209582, 0.0143548865, 0.014843795, 0.016609296, 0.0016144154, -0.022516936, 0.0132752145, -0.009160237, -0.008087356, -0.010341765, -0.008617006, -0.010898578, 0.015400607, -0.016704362, -0.02725663, -0.019393357, 0.01893161, -0.04136706, -0.020126719, 0.043594312, 0.0041794856, 0.009866438, -0.013152988, -0.0067971814, -0.016582135, 0.012290608, 0.009513338, -0.020968728, -0.016962398, 0.005486636, -3.3845854E-4, 0.04223623, -1.4754512E-6, -0.019339034, 0.00346989, -0.025260255, -0.0010898578, -0.005204835, 0.016392004, -0.011951088, -0.008997268, -0.019230388, 0.008657749, -0.023481173, 0.015400607, -0.026496107, 0.026183749, -0.014667245, -0.012236285, -0.0030115384, 4.4774142E-4, 0.0011501225, -0.0015855563, -0.032946978, 0.013465346, -0.0038161997, 0.024173792, -0.010857835, 0.023019426, -0.01719327, 0.00833181, -0.017641436, 0.00299626, 9.956411E-4, 0.025545452, 0.006040053, 0.029062875, -1.87001E-5, 0.035364356, -0.014599341, 0.002802734, -0.019243969, -0.026849207, -0.01076277, -0.010104102, 0.0015473603, -0.0011925624, -0.039085492, 0.01944768, 0.005259158, -0.05190575, -0.042942435, 0.020737855, -0.0035106323, -0.021661347, -6.8073673E-4, 0.023467591, -0.016229035, -0.0277727, -0.014300563, -0.17176974, 0.03492977, 0.029253004, 0.0023375922, 0.012392464, 0.006427105, 0.0066511882, 0.00903122, -0.0031762056, -0.011584408, 0.015848773, 0.013506088, -0.027025757, -0.018116763, 0.005381385, -0.0153327035, -0.0033238966, 0.008739233, 0.0057718325, 0.02273423, 0.022028029, 0.0019675158, 0.008372553, -0.020724274, -0.0059823347, 0.0023070355, -0.024649119, 0.021566283, 0.0030709545, -0.020357592, -0.002334197, -0.035282873, 0.010301024, -0.008066985, 0.023331784, 0.004804202, 0.025749164, 1.3357973E-4, -0.015916677, 0.0014658757, -0.008114518, 0.017655017, 0.023494754, 0.0078021595, 0.020452658, 0.023535496, -0.004495239, 0.0043764072, -0.012181962, -0.011991831, 0.028248027, -0.0025311182, 0.012263446, -0.003364639, 0.015210476, 0.010688076, -0.0017943608, 0.0054153367, 0.021416893, 0.011034385, -0.017695758, -0.006135118, 0.002646555, -0.0030539783, -0.016079646, -0.024920736, 0.005625839, 0.0129153235, 0.002722947, -0.0055307737, -0.0014421094, 0.003819595, -0.006827738, -0.0029979576, 0.011475761, 0.016568555, -0.01650065, 0.009479386, 0.008827508, 0.0063456204, -0.02429602, 0.06448156, -0.025477547, 0.01337707, 0.0014429581, -5.0503534E-4, 0.0018300104, -0.009825696, -0.017668597, 0.013458556, 0.0089565255, -0.020031653, 0.008406504, -0.008250325, 0.023250299, 2.465761E-4, -0.006647793, -0.003609093, -0.004563143, -0.010545477, 0.0035717457, -0.0017485258, -0.031127153, 0.021362571, -0.0018384984, 0.013519669, 0.025817066, 0.027473923, 0.0010015827, -0.007550915, -0.009153447, 0.022150256, 0.021294666, 0.026889948, -0.020330431, -0.004705741, -0.010538687, -0.051090904, -0.0038942893, 0.0122227045, 0.0059993104, -0.016867332, 0.012473948, -0.0030913255, -0.0057209046, -0.019176064, -0.08028959, 0.0060706097, 0.019569907, 0.029904883, -0.012507901, 0.03403344, -0.02153912, 0.03036663, 0.01909458, 0.015319122, -0.021810737, -0.012480739, -0.026183749, 0.029986367, 0.00503847, -0.01770934, 0.0037550863, -0.026971433, -0.016446328, 0.015387027, -0.012643708, -0.010056569, -0.031480253, -0.014640084, -0.038949683, -0.0027959435, -0.036586627, 0.024391085, 0.04128558, -0.008746024, 0.020968728, 0.0010211051, -0.0012511295, 0.001202748, -0.039791692, 0.0016178107, -0.0060196817, 0.0072657187, -0.013132617, -0.047152475, 0.0098324865, -0.003376522, 0.020547723, -0.03541868, -4.3352402E-4, -0.008358971, -0.015400607, 0.014816633, -0.001190016, -0.006352411, 0.008630587, -0.012901743, 0.019556327, -0.019013096, 0.020357592, -0.011088708, -0.006528961, -0.015047506, -0.023535496, -0.026170168, -0.008657749, 0.03416925, -0.012365302, 0.020724274, -0.012643708, -0.010980062, -0.019311873, -0.009492966, 0.024173792, 0.0025820462, 0.0038467566, 0.010436831, -7.112935E-4, 0.0041353484, -0.011869604, -0.0076459805, -0.031072829, -0.0035276082, -0.0153327035, -0.027406018, -9.5659634E-4, -0.037292827, -0.0054187323, -0.019882265, -0.010620172, 0.044001736, -0.0023240114, -0.024037985, 0.020099558, -0.03680392, 0.011231307, 0.019977331, 0.049352564, 3.5989072E-4, -0.02762331, 0.004773645, 0.03492977, 0.0031931815, -0.005853317, 0.007951548, -0.027052918, -0.017437724, -0.088112116, 0.047288284, 0.016432747, -0.017682178, 0.026346717, -0.010674495, 1.603169E-4, -0.0015397212, 0.015020345, 0.008800347, -0.011509713, 0.012175172, -0.013988206, 0.002697483, -0.025056543, -0.029714752, -0.0018741479, 0.029253004, 0.013315957, 0.013451765, -0.007483011, 0.026401041, -0.012181962, 0.021131698, -0.043974575, 0.035989072, -0.030611083, 0.030991346, 0.015903097, 0.01249432, 0.02485283, -0.010864626, -0.018646413, 0.038759552, 0.0020693718, -0.009302836, 0.0010185586, 0.011183774, -0.003660021, -0.027691215, -0.025083704, -0.02900855, 0.003975774, -0.013818446, -0.04044357, -0.015142572, 0.022435453, -0.0066104457, 0.0068005766, 0.012990018, 0.021308247, 0.010246701, -0.008922574, -0.06181972, 0.0035106323, -0.02481209, -0.0022883618, -0.010633753, 0.004634442, -0.0068990374, 0.016799428, -0.0022391314, 0.03330008, -0.018374799, 0.022258902, -0.006827738, -0.031534575, 0.01564506, -0.0021797155, -0.009676307, -0.0098936, -0.0065663084, 0.017913051, 7.949002E-4, 0.0011594592, -0.011944298, 0.008073775, -0.029932044, -0.005693743, 0.034821127, -0.0022374338, 0.001435319, -0.034305055, -0.01007015, -5.483241E-4, -0.008189212, -0.025287416, 0.022679906, 0.0129153235, 0.011883184, -0.010878206, 7.049275E-4, -0.0067123016, -0.016324101, -0.013723381, 0.024065146, 0.0019556326, -0.0010737306, 0.028085059, -0.0010584522, 0.03137161, 0.0036430447, -0.013315957, 0.0052727386, 0.008202792, 0.024200954, -0.021579864, 0.0011509713, 0.0055783065, 0.011693054, -0.0029470297, -0.027419599, -0.025654098, 0.026985014, -0.029035712, 0.029225843, 0.019135322, -0.011937507, -0.03137161, 0.033218592, 0.012066525, 0.039791692, 0.023508335, -0.010871416, 0.009520128, 0.019760039, 0.022503356, -0.001814732, 0.03129012, -0.012745564, 0.006488219, -0.010844255, 0.0011560641, -0.018850125, -0.026835626, -3.6116393E-4, 0.018361218, 0.018442702, -9.973387E-4, 0.102399096, 0.02030327, 7.4821623E-4, 0.022163836, -0.011917137, 0.016378423, 0.020629209, -0.009255303, -0.012412835, -0.019515583, 2.1983891E-4, 0.0057175094, 0.0038229902, 0.022951523, -0.043974575, -0.008352181, -6.854051E-4, 0.020276109, -0.0028723355, 0.008060195, 0.02064279, -0.022421872, 0.016215455, 0.027025757, -0.025722, -0.0058057844, 0.029415974, 0.032349423, -0.027406018, -0.04253501, 0.010246701, 0.00151935, -0.022639165, -0.0075101727, 0.01387956, -0.017763663, -0.005394966, -0.010837465, 0.0062607406, 0.011047967, -0.0015558484, 0.009099124, -0.022679906, -0.037401475, 0.033245753, -0.011951088, -0.012759145, -0.014300563, -0.036532305 ], - "id" : "6748a752-7f98-49e2-8216-acc15a523a80", - "metadata" : { - "name" : "Verden MIK Cargo Trunk Bag" - }, - "text" : "price: 34.99\nname: Verden MIK Cargo Trunk Bag\nshortDescription: A versatile trunk bag designed to fit a wide range of cargo that quickly and securely mounts to compatible MIK racks.\ndescription: ## Overview\nMake your bike rides more enjoyable with the Verden MIK Cargo Trunk Bag. This trunk bag offers simple and secure on-bike storage, with easy installation and removal without the need for any tools. It features multiple pockets to keep you organized, a durable design with reflective materials for enhanced visibility, and an integrated rain cover to protect you and your gear in all weather conditions.\n\n### Product Details\n- MIK mounting system provides secure, integrated mounting with compatible racks\n- Enhance visibility with front and rear reflective materials in a sleek black finish\n- Stay organized with an internal mesh pocket and two side pockets, each with a smaller internal pocket\n- Securely store your phone in the zippered pocket with soft lining, easily accessible from the top of the bag\n- Be prepared for any weather with the integrated rain cover securely stowed in the rear pocket\n- Convenient light loop for easy mounting of your rear light\n- Adjustable carrying strap for convenient off-bike use\n\n## Features\nFunction, performance, and style\n\nVerden City Utility bags, Verden City Shopping Trunk bags, and Verden Panniers transform any bike into a stylish and practical utility ride. Crafted with high-end fabrics and thoughtful finishing materials, these bags strike the perfect balance between great looks and exceptional functionality.\n\n### MIK: Mounting is Key\nMIK racks and bags feature a unique keyed installation system that ensures your bags are securely attached to your rack while still allowing for easy removal when needed.\n\n### How MIK Works\nSimply slide the Verden MIK bag onto the MIK rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press. The bag will then be released and ready to be detached.\n\n### Better Together\nOur bags and racks are designed as a complete system, making installation and removal a breeze while ensuring your valuable cargo remains secure throughout your rides.\n\n### Integrated Light Mounting\nFor improved visibility at all times, our racks and trunk bags feature a dedicated spot to easily mount your rear light.\n\n## Specs\n- Cargo capacity: 13L\n- Bag type: Trunk bags\n- Dimensions: 35cm (length) x 20cm (width) x 20cm (height)\n- Attachment: MIK\n- Fiber content: 35% Poly 600 PU Coating / 30% Poly 840 PU Coating / 15% 3M Silver Reflective Mesh / 11% Nylon Mesh / 9% Poly Super Nylex Mesh\n- Material: Woven\n- Weight: 860g\ntags: [trunkbag]" - }, - "7934b1a8-d7b8-4284-acd1-33b7f66afb56" : { - "embedding" : [ 0.015650965, 0.0066070845, -0.01147077, -0.01860946, -0.010790581, 0.0141320955, -0.011866998, -0.04231704, -6.4428156E-4, -0.025252866, 0.016958514, -0.0018127384, -0.023139656, -0.007138689, 0.01033492, 0.004226421, 0.0043584965, -0.005292932, 0.010110391, -0.03597741, 0.0051047243, 0.020313237, -0.018411346, 7.425128E-4, -0.023641543, -0.0029981174, 0.020167952, -0.017777383, 0.0015246484, -0.021964181, 0.015915116, 0.024698148, -0.012078319, -0.00291557, 0.002798353, -0.010803789, 0.023879278, -0.013300018, 0.022069842, 0.013643416, 0.025833998, -0.0120122805, -0.011979262, 0.008089634, -0.03500005, 0.029162304, 0.029400041, -0.01131228, 0.0035330239, 0.013082094, -0.006300009, 0.02990193, -0.0052235923, 0.009166051, -0.0047844406, -0.038037788, 0.017354742, 0.018081157, 0.031011363, -0.004919818, -0.0074622747, 0.008551898, -0.019296253, 0.021818899, -0.028528342, -0.03175099, 0.008010388, 0.014475492, 0.004767931, 0.009575485, 0.0018209931, 0.025609469, 0.015149077, -0.00851888, 0.01263964, -0.014317001, 0.0026514188, -0.013286811, -0.016403796, -0.0042627417, 0.0054745357, -0.034867972, 0.011497186, 0.008036803, 0.024962299, 0.021845313, -0.0010367939, 0.005078309, 8.056615E-4, -0.0072509535, -0.0074622747, 0.0077726524, -0.012765112, 0.015215116, 0.0014272425, -0.011384921, -0.015043417, 0.0015229974, -0.013445302, -0.0329925, 0.011318884, 0.023628335, -0.011252846, -0.025583055, -0.038830243, -0.027920794, -0.021739652, -9.4103906E-4, 0.010110391, -0.0055009513, -0.007165104, 0.021013238, 0.0014899785, 0.024130223, 0.012593414, -0.025001923, 0.026560415, 0.017737761, 0.0073037837, -0.019467952, 0.01454153, 0.036215145, 0.009654731, -0.022426447, -0.018530214, 0.015347191, -0.009872655, -0.016324552, -0.012032093, -0.024183054, 0.017698137, -0.010083976, 0.009727372, 0.022796258, -0.010460392, 0.0149113415, 0.0017813704, 0.016879268, -0.018424554, -0.02370758, -0.015281154, 0.018741535, -0.0143962465, 0.01969248, -0.02332456, -0.003866515, -0.010605675, 0.014515115, 0.002402126, -0.01812078, 0.026798151, -0.0045334967, 0.021832107, 0.020418897, 0.010348128, 0.0058872723, -0.010420769, 0.0056990646, -0.0075217085, -0.023892486, -0.03711326, 0.015386814, 0.0066334996, -0.012778319, 0.031328347, 0.012243413, -0.0016014173, -0.030826459, 0.0025424564, -0.021383049, -0.02789438, 0.038988736, -0.028634002, 0.01038775, 0.0023195788, 0.033018913, 0.025741545, -0.019124554, -0.01654908, 0.022479277, 0.011087751, 0.022717012, 0.002554013, 0.011767941, -0.021396257, 0.019111348, 0.005461328, -0.016667947, 0.02121135, -0.022003805, 0.029215135, -0.016483042, -0.012058508, -0.024288714, -0.59381217, -0.026903812, -0.009700957, -0.008829257, 0.0038202885, -0.0039391564, -0.004279251, 0.022017011, -0.016826438, 0.008974541, -0.021686822, 0.01443587, 0.0020488235, -0.012619829, -0.026692491, -0.026586829, 0.014237756, 1.2619417E-4, 0.03819628, 0.008551898, -0.029584948, -0.005015573, -0.016615117, 0.012078319, 0.014766058, 0.0024087299, 0.014409455, -0.009271711, -0.0057684043, 0.0015617947, -0.0504529, 0.04868309, -0.017684931, -0.010572656, 0.043558553, -0.04868309, 0.002616749, 0.023905694, -0.0028643908, 0.005679253, -0.020313237, -0.012705678, -0.012936811, -0.0037905714, 3.9622697E-4, 0.026124565, 0.033626463, -0.02517362, -0.007805671, -0.04725667, 0.024156637, -0.0059665176, 0.016192475, -0.0021379746, 0.015373606, -0.0125537915, 0.019547198, 0.016337758, 0.014277378, -0.0111736, -0.0024665128, 5.831966E-4, -0.011781149, -0.0038004771, 0.003074061, 0.029558532, -0.037139677, -0.02522645, 0.01546606, -0.023786826, -3.549533E-4, 0.030535892, -0.0136037925, -0.001262148, 0.005629725, 0.029875513, 0.03423401, 0.0010326665, -0.009258503, 0.016535873, 0.0076207654, -0.0022089654, 0.0062669897, -0.019626442, 0.02908306, -0.0027884473, 0.0014858511, -0.0013207566, 0.023205692, 0.022228332, 0.025133997, -0.0033629765, 0.00364859, -0.019824555, -0.008043407, 0.020141538, 0.009298126, 0.02208305, -0.008261332, -0.03856609, -0.001974531, 0.0031202873, 0.03114344, -0.0018754744, 0.007145293, -2.3505339E-4, -0.0025507112, 0.004404723, 0.0125405835, -0.034577407, 1.4249726E-4, -0.025569847, -0.032147214, 0.013260396, -0.021383049, -0.028264191, 0.015783042, 0.013498132, 0.0038533073, -0.009819825, 0.012355678, 6.0548435E-4, 0.013049074, 0.007211331, 0.0052434034, 0.0036981185, 0.024024561, 0.030905703, -0.018279271, -0.0048504784, 0.0011961102, 0.021832107, 0.03227929, -0.015096247, 0.03027174, 0.0037872694, 0.02066984, -0.0020521255, 0.008116049, -0.039754774, -0.02468494, 0.02300758, -0.022056635, -0.020207575, -0.010011335, -0.008776427, -0.024711356, 0.022479277, -0.0053985924, -0.003500005, -0.00993209, -0.025754754, -0.009502844, -7.866756E-4, -0.020392481, -0.023509467, -0.01909814, -0.03721892, -0.03407552, -0.014686813, 0.00754152, 0.0020554273, -0.018028326, -0.03011325, 0.010374543, 0.0015766531, 0.02131701, 0.029690608, -0.003500005, -0.043267984, -0.006567462, -0.0143962465, -0.015267946, 0.0035099105, -0.02100003, 0.025147205, -0.009139636, -0.0028082586, 0.0016922194, -0.012718886, 0.00425944, 0.01443587, -0.059751026, 0.01969248, 0.022822674, 0.018688705, 0.03325665, 0.024817016, -0.010116995, 0.018213233, -0.024367958, -0.012065112, -0.010902845, -0.0022650976, 0.010123599, 0.0071585006, 0.0030674571, -0.010658505, 0.0038136847, 0.017169835, 0.0247906, 7.3797273E-4, 0.022598146, 0.015690587, 0.011708507, -0.020537764, 0.016126437, 0.0035198163, 0.009826429, 0.03766798, 0.032437783, -0.032966085, -0.0018870309, 0.008116049, -0.007997181, -0.008036803, 0.039754774, 0.014726436, 0.0011003553, -0.0098924665, -0.009397183, 0.0072575575, 0.034049105, 0.0056132153, -0.012415112, 0.022175502, 0.014567945, 0.03315099, -0.00773303, -0.041418925, -0.009529259, 0.030350985, 0.0109490715, 0.0019514178, 0.007046236, -0.0024384467, 0.026454754, -0.019666065, 0.029215135, -0.0021148615, 0.030377401, 0.04178874, 0.02892457, -0.040626474, 0.017592477, 0.013471717, 0.044139683, 0.03293967, 0.02121135, 0.0030823157, 0.009720769, 0.014501907, -0.013867944, 0.033943444, 0.016800024, -0.017605685, 0.008631144, 0.017407572, 0.00307241, 0.01654908, 0.02815853, 0.019956632, 0.013749076, 0.034709483, 0.015400021, -0.027524566, -0.03130193, 0.004592931, -0.022598146, -0.018543422, 0.020273613, -0.031883065, -0.007416048, -0.0076735956, 0.009826429, -0.0013991765, 0.004252836, 0.006815104, 0.015426436, 0.03618873, -0.007937747, -0.040600058, 0.002733966, -7.45402E-4, -0.0047811386, 0.013656623, 0.015320776, 0.008928315, -1.3424252E-4, 0.030958533, 0.008439634, 0.014383039, -0.024486827, -6.273594E-5, -0.013617001, -0.002795051, 0.0151754925, -0.0192038, 0.0017136816, -4.1067274E-4, -0.030773629, 0.0091132205, -0.0074094445, -0.03175099, 0.019362291, -0.022122672, 0.0058278386, -0.024275506, 0.0178038, 0.0024797204, 0.015743418, -0.034709483, -0.007917936, 0.008393408, -0.005240102, 0.021739652, 0.0037179298, -0.031671744, 0.020749087, -0.03418118, -0.0151754925, -0.02489626, -0.015162285, -0.019573612, 0.026335886, 0.012771716, -0.0020323142, 0.01459436, -0.01932267, 9.781853E-4, -0.0013645067, 0.015611342, 0.010724544, 0.004170289, -0.023033995, 0.019626442, 0.008155672, -0.019335875, -0.015017002, -0.002856136, -0.0073037837, -0.015835872, -0.0027471737, -0.001915097, -0.026784943, -0.008545295, 9.847891E-4, 0.019811349, 0.007442463, -0.012124545, 0.02121135, 0.012210394, 0.005755197, 0.003249061, -0.0106783165, 0.00462595, 0.039305717, 0.031354763, -0.027339661, 0.025133997, 9.088456E-4, -0.0026084941, 0.022756636, 0.0024681638, 0.015333984, 0.026058527, -5.382083E-4, -0.0026349092, -0.0062768958, -0.0041405717, 0.004675478, 0.015954738, 0.01747361, -0.0143962465, 0.007990577, -0.0061646313, -0.03933213, -6.4644846E-5, -0.0030625043, 0.01351134, -0.0012225253, -0.014858511, -0.008868881, -0.033996273, -0.0017879741, -0.020577388, 0.02663966, -0.009747184, 0.0013719359, -0.013550962, -0.011814168, 0.013366057, -0.025411356, -0.021198142, -0.029584948, -0.0011812516, -0.016483042, 0.03175099, 0.0062141595, -0.009766995, 0.016707571, -0.042079303, 0.011596243, 0.016350966, -0.03000759, 0.007884917, -0.012824547, -0.0046061384, -0.0031483534, 0.017169835, 0.011886809, 0.0048174597, 0.025833998, -0.005170762, 0.03151325, -0.0031566082, 0.020920783, -0.018490592, 0.01454153, -0.020300029, 0.010374543, 0.018688705, 0.014871719, -0.024064185, 0.0128047345, -0.014422662, 0.0018391535, 0.012296244, -0.0012679263, -0.0023806638, -0.0030311362, -0.007845294, -0.008499068, -0.005735385, -0.014554737, 0.002225475, -0.016218891, -0.008512276, -0.034392502, -0.0014660398, 0.03455099, -0.011602846, 0.0064684055, -0.017500024, 0.0073103877, -0.048313275, 0.024711356, -0.0042132135, -0.020167952, 0.03552835, 0.016641533, 0.011054733, 0.0052500074, 0.038592506, 0.06593217, 0.020788709, -0.014686813, -0.005956612, -0.020207575, -0.043320816, -0.016483042, -0.009166051, 0.020854747, -0.01660191, -0.0053094416, 0.017592477, 0.03109061, 0.010671713, -0.024169846, -0.019718895, -0.007983973, 0.01215096, -0.015545305, 0.032781176, -0.0029997684, 0.0021544842, 5.8856216E-4, -0.0338642, -0.036981184, -0.008967937, -0.0011746478, -0.0027801925, 0.0019811348, 0.035396274, 0.012236809, 0.015386814, 0.0042660437, 0.015756626, -0.029769853, 0.011431148, -0.014211341, 0.00535897, -0.049343467, 0.023047201, 0.023998147, -0.003012976, -0.021277389, -0.04144534, -0.01166228, 0.026124565, -0.006326424, -0.018900026, -0.020920783, -0.043320816, 0.010044354, -0.03109061, 0.010110391, 0.004279251, -0.0281057, -0.014383039, 0.023879278, 0.0040349113, 0.012164168, -0.0047844406, 0.02040569, -0.0143962465, 0.03846043, 0.0023872675, 0.031539667, 0.0019530688, -0.020484934, -0.024222676, -0.019930217, 0.009331145, -0.009232088, 0.022122672, 0.025913244, -0.016298136, 8.65921E-4, 0.0042660437, -1.6571367E-4, -0.025635885, 0.014277378, -0.0012770065, 0.0016327853, -0.023152862, -0.03259627, -0.026811358, -0.006524537, 0.012144357, -0.022096258, 0.022439655, -0.025345318, 0.0035429294, 0.016879268, -0.0013991765, 0.015901908, -0.0011622658, 0.013815113, -0.006940576, -8.102016E-4, 0.0051509505, -0.024037769, -0.0072773686, 0.010744355, 0.012223602, 0.013788698, -0.003618873, 0.005418404, 0.011794356, -0.015769834, -0.025477394, -0.0106915245, 0.016152853, 0.017988704, 0.027550982, -0.021039652, -0.011378318, -0.033388726, 0.009238692, 0.005834442, 0.014766058, 0.015941532, -0.02072267, 0.013465113, 0.023773618, -0.0037146278, 0.012685867, 0.009238692, 0.007237746, 0.00851888, 0.006131612, -0.004477365, 0.0076471805, 0.006475009, 0.043558553, -0.009086805, -0.010381146, 0.033441555, 0.0011251195, 0.007178312, -0.0038004771, 0.0021066067, 0.030483061, -0.024367958, 0.011880205, -0.0064882166, -0.00944341, 0.0076009543, 0.004375006, -0.0038367978, -0.014607567, -0.020273613, -0.017341534, 0.005048592, -0.024645317, -0.025450978, -0.019441538, -0.01925663, -0.026758527, -0.024724564, 0.011008506, 0.01234247, -0.037852883, 0.00974058, -0.009436806, 0.026824566, 0.03463024, 0.0028941077, -0.024169846, -0.002494579, 0.014066057, -0.01283115, -0.0010153316, 0.016152853, -0.015730212, -0.028079284, 0.0067127454, 0.0060919896, -0.006966991, 0.0120188845, 0.011655677, -0.0076801996, -0.029215135, 0.0122764325, -0.0091066165, 0.0025408054, -0.0043915156, -0.015439644, 0.005012271, 0.011893413, -0.016403796, -0.010869826, 0.031064194, 0.004833969, 0.0076801996, 0.0016790117, -0.031486835, 0.034313254, -0.02154154, -0.01180096, 0.0024070789, -0.006782085, -0.0056132153, 0.012157564, 0.00954907, -0.0059202914, 0.0038235902, -0.031328347, -0.014369831, -0.017883044, 0.016271722, 0.004900007, -0.006451896, 0.003949062, -0.0036584956, -0.00968775, 0.02800004, -0.0193755, -0.019573612, 0.0074754823, -0.029056644, -0.041841567, -0.011794356, 0.016456626, 0.039913263, 0.016100023, -0.02143588, -0.0031235893, -0.0048801955, -0.053173658, -0.00535897, -0.0076471805, 0.037535902, 0.01106794, 0.027735887, -0.023839656, 0.011596243, 0.009093409, 0.033071745, -0.023245316, 0.013537755, 0.017592477, 0.024420789, -0.0014676907, 0.0057684043, -0.044456664, -0.0149245495, 0.025067959, 0.021818899, 0.0046589687, -0.0050584977, 0.008340578, -0.0066797263, -0.007118878, -0.009080201, -0.0060622725, 0.014884926, 0.0039721755, -0.049554788, -0.009469825, -0.03259627, 0.008221709, 9.641523E-4, 0.011325488, -0.049237806, -0.019124554, -5.146823E-4, 0.0015386814, 5.7618006E-4, -0.015452852, -0.012302848, 0.023945317, 4.7340867E-4, -0.011081148, 0.055260453, -0.0052103847, -4.017989E-4, 0.003470288, 0.0464378, -0.0030839667, -0.01834531, 0.016667947, -0.01307549, 0.019930217, -0.002704249, 0.008201898, 0.017922666, 7.792464E-4, 0.009476428, -0.029875513, -0.033705708, 0.026415132, 0.004348591, -0.015967946, -0.006055669, 0.031883065, -0.013973605, 0.021515124, 2.8231172E-4, -0.009185862, -0.04287176, -0.006650009, 0.007997181, -0.03021891, -0.008241521, 0.039200056, -0.011424544, -0.017513232, -0.025741545, 0.1812078, 0.009681146, -0.019798141, 0.018424554, 0.006154726, -0.005408498, 0.028026454, 0.010935864, 0.015122662, -0.006379254, 0.01022926, 0.030562308, 0.014409455, -1.2908332E-4, 0.032358535, -0.02397173, -0.04622648, -0.0074358596, -0.015003795, 0.0010665109, -0.0042429306, -6.723476E-4, -0.026732113, -0.055471774, 0.02489626, 0.008551898, -0.021832107, -0.013986812, -0.0063363295, 0.014369831, 0.012784923, -0.0016492947, 0.0038830242, 0.014686813, -0.027603813, -0.005296234, 0.0052467054, -0.00846605, 0.0031731178, 0.039860435, 0.01136511, -0.027101925, 0.0077660484, -0.026177395, -0.015769834, -0.0045566102, 0.006151424, 0.022492485, -0.04881516, -0.010064165, -0.012679263, 0.012144357, -4.395643E-4, 0.04432459, -1.356871E-4, -0.0068811416, 0.02311324, -0.006475009, 0.015796248, 0.005286328, -0.011127374, 0.025900036, 0.005388687, 0.027762303, -0.00754152, 8.357913E-4, -0.0098924665, -0.035237785, 0.013154736, -9.509447E-4, 0.0049759503, -0.00895473, 9.4103906E-4, -0.0026398622, -0.042079303, -0.029928343, 0.024552865, 0.02110569, -0.01258681, 0.003227599, 0.014462285, -0.010275486, 0.027630227, 0.024526449, -0.014303793, -0.04662271, 0.0045797233, -5.811329E-4, 0.0091198245, -0.027498152, 0.0018903328, 0.0044146287, -0.006356141, 0.0029750043, -0.014937757, -0.0020917482, -0.016139645, 0.032701932, -0.013894359, 0.012923603, -0.020801917, 0.04979252, -0.016218891, -0.0066401036, -0.024433997, -0.0092519, -0.011391525, 0.01948116, -0.008974541, -0.028475512, -0.0232189, -0.026124565, -0.018252855, -0.011450959, 0.029056644, 0.0030459948, -0.004744818, -0.020696256, -0.011153789, -0.022492485, 0.018794365, -0.010116995, 0.024473619, 0.010130203, 0.028343435, -0.015109455, -0.032437783, 0.007752841, -6.8431697E-4, -0.024671733, 0.030615138, -0.015043417, 0.0036287787, -0.0080566155, -0.029558532, -0.007904728, -0.007237746, 0.012322659, 0.0069471793, 0.0029320796, -0.006742462, -8.51888E-4, 0.014079265, -0.008010388, 0.032041553, -0.017262287, 0.015717003, -0.0072509535, -0.014039642, -0.0071518966, -0.03357363, -0.009707561, 0.014752851, 0.010110391, 0.01893965, 0.015809456, -0.023483051, -0.036056653, -0.013240584, 0.008201898, -0.026494376, 5.150951E-4, 0.0064353864, -0.0029106173, -0.021132106, -5.5017765E-4, -0.16430211, 0.008941522, 0.020062292, -0.024698148, 0.0056000077, 0.009958505, 0.035766087, -0.0026514188, -0.019613234, -8.168054E-4, 0.022717012, 0.0014008274, -0.030350985, -6.3272496E-4, 0.004444346, -0.012725489, -0.009476428, 0.0062141595, 0.021567956, 0.022017011, -0.011398129, -0.012302848, 0.013577377, -0.0056462344, -0.015637757, 0.024830224, -0.010440581, 0.01839814, 0.012983037, 0.002222173, -0.011596243, -0.031460423, 0.016866062, -0.018279271, 0.020537764, -0.0014536578, -0.0012860867, 0.013669831, -0.014686813, 0.026084943, -0.0073103877, -0.00914624, 0.026375508, 0.002337739, 0.008981145, 0.019230215, -0.006359443, -0.001141629, 6.9298444E-4, -0.01790946, 0.041366097, -0.022413239, 0.04340006, -0.009073597, 0.02718117, 0.00949624, -0.0074622747, 5.443994E-4, 0.0178038, -0.019454744, -0.0061349142, -0.007145293, 0.019190593, -3.0171033E-4, -0.015307569, -0.015835872, -0.019850971, 0.016152853, -0.020194368, 0.003833496, -0.016232098, -0.004226421, -1.06589185E-4, -0.0013967, 0.037747223, 0.0059169894, -0.03309816, -0.011147185, 0.022413239, -0.004355195, -0.008849069, 0.04892082, -9.484683E-4, 0.0026134471, -0.022162296, 0.002524296, -0.016245306, 0.01228964, 0.0032754764, -0.0067028394, -0.02522645, -0.017645307, 0.0041570812, 0.006445292, 0.0042165155, 0.008459446, -8.7169936E-4, -0.0034867974, 0.017790591, -0.0012662754, 0.0031813723, -0.0056462344, -0.03402269, 0.0149113415, 0.03283401, 0.007046236, -0.006656613, 7.354963E-4, -0.0014346718, 0.023047201, -0.027339661, 0.021330219, 0.011985865, 0.020207575, 0.0058872723, 0.009331145, -0.036954768, -0.020854747, 0.028607586, -0.0037806656, 0.033177406, 2.6704048E-4, -0.018926442, 0.01839814, 0.0043651005, -0.031698156, -0.06968312, -0.004794346, 0.015532097, 0.03227929, -0.010374543, -0.009998127, -0.0041537792, 0.023575505, -0.006385858, 0.033547215, -0.007713218, -0.040969867, -0.012038697, 0.031460423, 0.014950965, 0.009456617, 5.8030745E-4, -0.014515115, -0.031381175, 0.021779276, -0.025015129, -0.017830214, 0.0034934012, 0.0042726477, -0.013471717, 0.011728318, -0.034867972, 0.028792493, 0.024037769, -0.0048471764, 0.010916053, -0.026137773, -0.026058527, -0.002887504, -0.025966074, -0.02072267, -0.0030922212, -0.014343416, 0.03140759, -0.026798151, -0.0029882118, 0.0019134461, -0.0074028405, -0.028528342, -0.030245325, -0.027815133, -0.0101632215, 0.04487931, 4.8728696E-5, -0.007614162, -0.005197177, -8.7500125E-4, 0.015532097, -0.009000956, 0.016113231, -0.016760401, 0.0051773656, -0.016390588, -0.017222665, -0.013762283, -0.009661335, 0.017539646, 0.004989158, 0.0056693475, 0.025847206, 5.955787E-4, -0.0037278354, 0.015901908, 0.036743447, -0.02051135, 0.010982091, 0.03109061, -0.01915097, 0.033230234, -0.037245337, 0.0072311424, -0.020167952, -0.0043023643, 0.028898153, -0.02262456, -0.004493874, -0.018424554, 0.013960397, -0.033626463, 0.020815123, 0.04606799, -0.001277832, -0.0032639196, -0.005048592, -0.03114344, 0.033309482, 0.006940576, 0.05605291, -0.005907084, -0.032754764, -0.030694382, -0.012230205, 5.3985923E-4, -0.021818899, -0.0144887, -0.055841587, -3.7997546E-5, -0.08114728, 0.03851326, 0.016417004, -0.023020787, -0.019930217, -0.010070769, 0.036452882, -0.009033975, 0.007779256, -0.0062801973, -0.014700021, 0.010585864, -0.012883981, 9.913929E-4, -0.003955666, -0.009324541, 0.023033995, -0.006782085, 0.005266517, 0.017935874, 0.013009452, 0.005910386, 0.0063099144, 0.029611362, -0.038328357, 0.016047193, -0.017328326, 0.018054742, 0.0036419863, -1.3166292E-4, 0.03629439, -0.024328336, 0.02702268, 0.04704535, 4.2305485E-4, -0.0024450505, 0.006085386, 0.0026745321, 0.0024764186, -0.025001923, -0.039200056, -0.035766087, 3.1285422E-4, -0.013815113, -0.002676183, 0.010216052, 0.033600047, 0.0055768946, -0.0041471757, 0.03114344, -0.0031334949, 0.012025489, -0.010275486, -0.031354763, -0.005263215, -0.018688705, 0.0047613275, -0.017684931, 0.024077393, -0.004675478, 0.061071783, 0.009727372, 0.013359453, -0.010757562, -0.0042660437, -0.009073597, -0.032252874, -0.009766995, 0.010156618, -0.01991701, -0.017064175, 0.0031169856, 0.0026035414, 0.017975496, -0.009667938, 0.012989641, 0.007165104, -0.001019459, -0.013643416, 0.0200755, 0.010737751, -0.0063924617, 0.0050882148, 0.004497176, 0.008215106, -0.010572656, -0.02332456, 0.009516051, -0.004599535, 0.020762293, -0.04947554, 0.033626463, -0.004219817, -0.0056132153, 0.023839656, 0.0091066165, -0.011001903, 0.009502844, 0.043981194, 0.018952856, -0.021884937, 0.006653311, -0.006233971, 0.012930207, 0.0032589668, 0.015849078, -0.006154726, -0.01991701, 0.022096258, 0.010394354, -0.011114166, 5.221116E-4, 0.006451896, 0.007534916, -0.024856638, 0.03259627, -0.008934918, -0.004011798, -0.0455661, 0.0384076, 0.029320795, 0.011464167, -0.0057254797, 0.016456626, 0.021066068, -0.016733985, -0.0037146278, -0.00546463, 0.0015551909, -0.019732103, -0.010922656, -0.01942833, -0.0025985886, -0.005735385, -0.035686843, 0.0012836102, -0.0039424584, -8.0153416E-4, 0.019296253, 0.099268064, 0.0062207635, 0.014898134, -5.526541E-4, -0.015664173, 0.023100032, 0.012065112, -0.008142464, -0.012923603, -0.033758536, -2.7508882E-4, 0.0057948194, -0.03640005, -0.005510857, -0.024658525, 0.034101933, 0.011688695, 0.025701923, -0.0012051903, -0.0059202914, 0.028079284, -0.021620786, 0.018094365, -0.006451896, 0.0067622736, 3.5990617E-4, 0.02918872, 0.041154776, 0.009397183, -0.035026465, 0.01351134, 0.01845097, -0.01747361, -0.0032721744, -0.0050056675, -0.030350985, -0.009324541, 0.0025308998, 0.020247199, -0.014501907, 0.012619829, -0.0029221738, -0.01147077, -0.0056231213, 0.0075217085, -0.012844358, -0.007237746, -0.025133997, -0.059381217 ], - "id" : "7934b1a8-d7b8-4284-acd1-33b7f66afb56", - "metadata" : { - "name" : "VeloTech V9.5 AXS Gen 3" - }, - "text" : "| Size | Rider Height | Inseam |\n|:----:|:------------------------:|:--------------------:|\n| S | 160 - 170 cm 5'3\" - 5'7\" | 74 - 79 cm 29\" - 31\" |\n| M | 170 - 180 cm 5'7\" - 5'11\" | 79 - 84 cm 31\" - 33\" |\n| L | 180 - 190 cm 5'11\" - 6'3\" | 84 - 89 cm 33\" - 35\" |\n| XL | 190 - 200 cm 6'3\" - 6'7\" | 89 - 94 cm 35\" - 37\" |\n\n## Geometry\nAll measurements provided in cm unless otherwise noted.\nSizing table\n| Frame size letter | S | M | L | XL |\n|---------------------------|-------|-------|-------|-------|\n| Actual frame size | 50.0 | 53.3 | 55.6 | 58.8 |\n| Wheel size | 29\" | 29\" | 29\" | 29\" |\n| A — Seat tube | 39.4 | 43.2 | 48.3 | 53.3 |\n| B — Seat tube angle | 72.3° | 72.6° | 72.8° | 72.8° |\n| C — Head tube length | 9.0 | 10.0 | 10.5 | 11.0 |\n| D — Head angle | 67.5° | 67.5° | 67.5° | 67.5° |\n| E — Effective top tube | 58.0 | 61.7 | 64.8 | 67.0 |\n| F — Bottom bracket height | 32.3 | 32.3 | 32.3 | 32.3 |\n| G — Bottom bracket drop | 5.0 | 5.0 | 5.0 | 5.0 |\n| H — Chainstay length | 44.7 | 44.7 | 44.7 | 44.7 |\n| I — Offset | 4.2 | 4.2 | 4.2 | 4.2 |\n| J — Trail | 10.9 | 10.9 | 10.9 | 10.9 |\n| K — Wheelbase | 112.6 | 116.5 | 119.7 | 121.9 |\n| L — Standover | 76.8 | 76.8 | 76.8 | 76.8 |\n| M — Frame reach | 40.5 | 44.0 | 47.0 | 49.0 |\n| N — Frame stack | 60.9 | 61.8 | 62.2 | 62.7 |\ntags: [bicycle, electric bike, city bike]" - }, - "3275097c-e898-4cfc-8365-6da60bc7961d" : { - "embedding" : [ 0.02146429, 0.015256071, -0.019960955, -0.014560083, 0.024303924, -0.00674761, 0.0066571315, -0.037666906, 0.019793918, -0.039114565, 0.013905854, 0.003438184, -0.032627948, -0.0013615278, 0.013662257, -2.76003E-4, 0.015771104, -0.0062186588, -0.0043081697, -0.017928667, 0.025027752, 0.0382237, -0.01787299, 0.01044679, -0.014031132, -0.010342391, 0.020503826, -0.020684782, 0.009896959, -0.019974874, 0.019821757, -0.0035947815, -0.011748289, 0.007662835, -0.014267768, 0.028438097, 0.023176422, -0.009966558, 0.0069598868, 0.027547231, 0.03875265, 0.010077916, 0.007829873, 0.020086233, -0.023454819, 0.019181447, 0.01902833, -0.011114939, -0.0028013545, 0.012103243, -0.012332919, 0.013397782, -0.02220204, 0.0012136302, 0.004116773, -0.017942589, 0.020615185, 0.019320646, 0.037137955, 0.0036887398, 0.012458197, 0.024429202, -0.043206975, -0.007109524, -0.004729243, -0.01285491, -0.0055574696, 0.0015224753, -0.015478788, 0.005028518, 0.02895313, 0.034966473, 0.027728189, -0.011107979, 0.021241574, -0.020239351, -0.013717936, -0.011866607, 0.01286187, 0.008268345, 0.022410836, 0.0020688262, -0.00918009, 0.020601265, 0.020127993, 0.009075692, -0.02270315, -0.0020114072, -0.02150605, 0.013175066, -2.5338336E-4, 0.004001935, -0.009298408, 0.01043287, 0.006820689, 0.034186963, -0.006510974, 0.036970917, -0.009994397, -0.013369942, -0.005355633, 0.0023002427, -0.0077741933, -0.010077916, -0.041508764, -0.042678025, 7.2208827E-4, 0.0023472218, -0.0015903341, -0.0051224767, -0.02028111, 0.01353002, 0.02092142, 0.0015764143, 0.014239928, -7.2121824E-4, 0.050723653, 0.017483236, -0.0044647674, -0.033351775, 0.01909793, 0.046492044, 0.016341815, -0.02636405, 0.008678978, -0.01355786, -0.020684782, -2.7535053E-4, 0.021993242, -0.009994397, -0.0014346066, 0.0071478034, 0.031208131, 0.02701828, -0.016313974, 0.013996332, -0.031180292, 0.024679758, -0.0245684, -0.010161434, 0.0040228143, 0.022577872, -0.01961296, -4.1933317E-4, -0.015200392, -0.011831807, 6.291085E-5, 0.024484882, 0.007607156, 0.0112819765, 0.02643365, -0.014323447, 0.020322869, 0.03922592, 0.006803289, -0.0031476088, 0.0038140179, 0.034799434, -0.016508851, -0.019487683, 0.01469928, 0.005199035, 0.010669506, -0.015409189, 0.006256938, 0.007621076, 0.010293673, -0.01286187, -0.010272793, -0.005707107, -0.011880526, 0.018109625, -0.017065642, 0.0053138733, 0.0061107804, 0.022744909, 0.010753025, 1.0314769E-4, -0.024735438, 0.010098795, 0.013077627, -0.02519479, 0.015186473, 0.034214802, 0.009528085, 0.0054948307, 0.013641378, -0.005042438, 0.006389176, -0.00799691, 0.017566754, 0.023440897, 0.015116874, -4.8197215E-4, -0.595989, -0.014866318, -8.4258127E-4, -0.03201548, 0.010495509, -0.0028500736, -0.0076697953, 0.020503826, 0.020615185, 0.015409189, -0.028702572, 0.02220204, -0.014448725, 0.0010518129, -0.023176422, -0.024651919, 0.013780575, -0.005279074, 0.017330118, -0.016759407, -0.03705444, -0.0023663614, -0.00676501, 0.0080804285, -0.0016625429, 0.018568978, 0.010502469, 0.0014676661, 0.00245858, 0.007836833, -0.04910896, 0.03427048, 0.008282266, -0.006256938, 0.04298426, -0.043930806, 0.015590146, 0.006643212, 0.023649694, 0.02206284, 0.0019174488, -0.013223785, -0.007850752, -0.013293384, -0.0039149364, 0.010697346, 0.02268923, -0.010815664, -0.0030553902, -0.035217028, 0.0023628816, 0.012653074, -0.012117162, 0.009514165, 0.012590435, 5.654908E-4, 0.045740377, -0.015214312, 0.019585121, 0.0078716315, -0.01415641, 0.009667283, -0.027756028, -0.009542004, -0.021213735, 0.030317266, -0.02639189, -0.02512519, 0.010349352, -0.045239262, 0.019084008, -0.0010265833, -0.0047396827, 0.020754382, 0.010189274, 0.026016057, 0.044654634, 0.027143558, 0.0034573236, 0.01713524, 0.028702572, 0.011275017, 0.014024172, 0.0019244087, 0.0018791694, -0.0082265865, -0.005282554, -0.0072034826, 0.009319289, 0.008456263, 0.028786091, 0.02025327, -0.0046422444, 0.0011066219, 0.0010057036, 0.02515303, 0.0015633645, 0.015896382, 0.03677604, -0.035968695, -0.0014006773, 0.008887775, 0.011087099, 0.010384151, 0.041341726, 0.004339489, 0.00734964, -0.026531087, 0.022035, -0.033463135, -0.0042490107, 0.0016425332, -0.025320068, -0.008832096, 0.006427455, -0.034715913, 0.013188985, 0.0145740025, 0.020754382, -0.037082277, 0.015172553, -0.009284489, 0.040478703, 0.0043464494, -0.004746643, 0.0066501717, -2.9318524E-4, 0.009486326, -0.017733792, -0.006942487, 0.04412568, 0.013147226, 0.029008808, -0.012987149, 0.032822825, 0.03243307, 0.011727409, -0.011114939, 0.01285491, -0.04735507, -0.032210354, 0.010411991, -0.01047463, -0.041286048, -0.035829496, -0.0098552, -0.027171398, -0.0025368787, 0.0052059954, -0.018095706, 0.0075375573, -0.02273099, -0.012520836, -0.0017886909, 0.0016416633, -0.01102446, -0.017399717, -0.015576227, -0.029092327, -0.015033355, 0.022438675, 0.008713778, -0.02646149, -0.010585988, -0.02513911, 0.013843215, 0.0049102, 0.032989863, -0.002529919, -0.06781714, -0.0010840023, 0.010363271, -0.026670286, 0.027101798, -0.0075166775, 8.443213E-4, -0.016675888, 0.0020009675, 0.019974874, -0.01164389, 0.0047640423, 0.017344037, -0.03204332, 0.01787299, 0.027421953, 0.01043983, 0.024749357, 0.02019759, -0.0030031912, 0.00799691, -0.001903529, -0.0012031904, -0.020545585, 0.0025734182, -0.013098507, -0.034159124, -0.00429425, -3.6060912E-4, 0.0033355257, 0.010766945, 0.03304554, -0.010808704, 0.01842978, -0.0032955064, 0.016856845, -0.012458197, 0.011581251, 0.027366275, -0.0056409882, 0.008859936, 0.013028908, -0.037889622, -0.020977098, -1.3071537E-4, 0.009966558, -0.015116874, 0.02387241, 0.031792764, -0.017761631, -0.016258296, -0.0022532633, 0.008804257, 0.008191787, -0.014420886, 0.0010518129, 0.024457041, 0.0033303057, 0.032126836, 0.0017617213, -0.04924816, -0.0018252303, 0.0055052703, 0.026934762, 0.0066571315, 0.019125769, 0.03452104, 0.007614116, -0.010732145, 0.03452104, 2.739096E-5, 0.022577872, 0.016745487, 0.014643601, -0.009889999, 0.012465157, 0.0063578566, 0.052533224, 0.008024749, 0.018680336, 0.017302278, -0.013328183, -0.01167173, 0.0021749646, 0.011407254, 0.02206284, -0.0031719683, 0.009736882, 0.009493286, -0.010105755, 0.012743552, 0.014393046, 0.020308949, 0.008901695, -0.0019470283, 0.01539527, 7.1425835E-4, -0.02953776, 0.0012371199, -0.02770035, -0.020475987, 0.008539781, -0.0127644325, 0.01965472, -0.0068485285, 0.034604557, 0.0010074436, -0.010864384, 0.02579334, 0.004005415, 0.04852433, -0.032210354, -0.041425247, 0.012959309, 0.019585121, -0.019933116, 0.0058323853, 0.002034027, -0.0034277441, -0.011003581, 0.05528934, 0.020670863, 0.0032850665, -0.020573424, 0.011797008, -0.00983432, -0.018819533, 0.03357449, -0.019919196, -0.0076697953, -0.014337366, -0.027588991, 0.0018269703, -6.920737E-4, -0.0146018425, 0.010265833, -0.0097995205, -0.009709042, -0.027936986, 0.013578739, 1.8954817E-4, 0.015701504, -0.021673087, -0.020016635, -0.022967625, 0.012632194, 0.0020462067, -0.016258296, -0.036441967, -0.0012101503, -0.0023193823, -0.026322292, -0.016439252, -0.011887486, -0.01039807, 0.05175372, 0.009674243, -0.0063578566, 0.020643024, -0.0050772373, -0.03187628, 0.008727698, -0.016355734, 0.014560083, 0.027240997, -0.024874635, 0.017524995, -0.0057001472, 0.0028761732, 0.0035199628, -0.017469315, 0.008031709, -0.019181447, 0.0065910127, 0.010224073, -0.024415283, -0.03563462, 6.8946375E-4, 0.015437028, 0.0020409867, -0.011873567, 0.03619141, 0.024665838, 0.008846016, -0.0053660725, 0.0035495423, 5.019818E-4, 0.00919401, 0.002775255, -0.028925288, 0.0130010685, 0.016300054, -0.012722673, 0.015116874, -1.1842682E-4, 0.0041446127, 0.021158056, 0.0011866607, 0.026656367, 0.029175846, -0.0032781067, 0.015089034, 0.012402518, 0.0014546163, -0.02025327, 0.012980188, 0.009625523, -0.008783377, 0.013314263, -0.0032154676, 0.006991206, -0.012367719, -0.031792764, 0.003566942, -0.047689144, -0.01778947, -0.0075793164, 0.012012765, 0.0011379415, -0.003131949, -0.0022010643, 0.011964045, 0.017580673, -0.024206486, -0.016634129, -0.013063707, -0.012562595, -0.0019365884, 0.023649694, 0.011184538, 0.008310105, 0.014587923, -0.03691524, 0.0048406012, 0.015631905, -7.168683E-4, -0.007892512, 0.004729243, -0.014420886, 0.011915326, -0.0018635096, 0.012994109, -0.012541716, 0.009388887, 0.03015023, 0.01969648, 0.011449014, 0.003319866, -0.0033320459, -0.008289225, -0.011142778, 0.03073486, 0.030428624, 0.0061142603, -0.0049449997, 0.0045830854, -0.010885263, -0.0051120366, 0.0077602738, 0.024999913, 0.011003581, 0.012332919, 0.0049276, -0.0059159035, 0.012458197, -0.013627458, 0.028786091, 0.0021036258, -0.009743841, -0.02895313, -0.013056748, 0.021032777, -0.0053730323, 0.019779999, -0.03131949, 0.004969359, -0.03738851, 0.017413637, -0.0042281314, -0.018109625, 0.021032777, 0.009876079, -0.016703729, -0.014406965, -0.0040924135, 0.020420307, 0.001538135, 0.011511653, 0.003495603, -0.028507696, -0.0356903, -0.030623501, 0.003321606, 0.0022202039, -0.017023884, -0.008532821, 0.011957086, 0.0054217516, 0.027394114, -0.006507494, -0.020072313, 0.0075862766, -0.0040715337, -0.016481012, 0.023496578, -0.023134664, -0.013655297, -0.021700926, -0.012611315, -0.012054523, -0.009590724, -5.1981653E-4, -0.02392809, 0.008351864, 0.015450949, 0.04006111, 0.0045726458, 0.019376324, 0.026837323, -0.008191787, 0.014448725, -0.0154927075, -0.002890093, -0.017232679, 0.0010291933, 0.017455395, -0.0017991307, -0.022884108, -0.0034329642, -0.013585699, 0.004061094, 0.0062986976, -0.025904698, -0.024860715, -0.048273776, -0.0016138237, -0.017163081, -0.0037826984, -0.007133884, -0.04657556, -0.0042664106, 0.024999913, -0.01353002, 0.02035071, 0.010279752, 0.02636405, 4.115033E-4, 0.024262166, -0.004374289, 0.013502181, 0.011629971, -0.029843993, -0.012834031, -0.054899585, 0.025974298, 8.547611E-4, -0.0057593063, 0.005233835, -0.03619141, -0.003566942, 0.011379415, -0.013300343, -0.030233748, 0.020127993, -0.017914748, -0.011845727, -0.03438184, -0.034660235, -0.029704796, -0.027171398, 0.019947035, -0.004360369, 0.019251047, -0.019752158, 0.009889999, 0.012040604, -0.0037548589, 0.014657522, 0.0069250874, 0.016216535, 0.019306725, -0.027157478, -0.024303924, -0.02761683, -0.020392468, -0.01660629, 0.020517746, 0.037277155, -0.001163171, 3.623491E-4, -0.007718514, -0.008372744, -0.0045204465, -0.03003887, 0.0026882563, 0.024401363, 0.01602166, -0.021798365, -0.024916394, -8.478012E-4, 0.025960376, 0.013356023, -0.013098507, 0.017163081, -0.010655587, 0.0036643804, 0.03683172, -0.0048719207, 0.018053945, 0.022911947, -0.00977168, 0.021714846, -0.032460913, 0.0065562134, -0.008929535, 0.01962688, 0.044598956, -0.003800098, 0.007126924, 0.028619055, -0.021227654, 0.012868831, 0.008713778, 0.00918009, 0.021812284, -0.009618564, -5.580959E-4, -0.03755555, -0.0072800415, -0.0068902876, -0.018652497, -0.020141913, -0.01472712, 0.008616339, -0.025361827, 0.004478687, 0.0055052703, -0.02209068, 0.0050911573, -0.0046979235, 0.0014989856, -0.025320068, -0.0059507033, 0.025236549, -0.024582319, -0.02828498, -0.015130794, 0.00796907, -7.829873E-4, 0.020489907, -0.0076419557, 0.004162012, 0.015576227, -0.041035492, -0.0015825043, 0.035384063, -2.1738771E-4, -0.003807058, 0.017413637, -3.3211708E-4, -0.0454063, 0.02886961, -0.006824169, -0.027310595, -0.03193196, 0.002893573, -0.013947613, -0.011964045, -0.01660629, 0.010237994, 0.0058497847, -0.010237994, -0.014079851, -0.023663614, 0.011831807, -0.029342882, 0.015464868, 0.011337656, -0.030261587, 0.028535536, -0.004590045, 0.006490094, 0.014643601, -0.00920793, -0.022285556, 0.005954183, 0.0025333988, -0.017427556, -0.017524995, -0.005721027, 0.00245336, -0.029509919, -0.010377191, -0.020183671, 1.7106096E-4, 0.020322869, -0.008971294, -0.024888555, 0.021394692, -0.03009455, -0.019432005, 0.02586294, 0.0031093294, -0.017371878, -0.024985993, 0.030011032, 0.044626795, 0.021687007, -0.023510497, -0.009033933, -0.0028535535, -0.03385289, 0.0120823635, -0.01164389, 0.02586294, 0.011971005, 0.023802813, 0.0132377045, -0.0022323837, 0.0018339301, 0.027477633, 0.0018913492, 3.6104413E-4, 0.0069842464, 0.015061195, 0.00429773, -0.0077115544, -0.054676868, -0.0033511855, 0.023496578, 0.011142778, 0.01845762, 2.6752063E-4, -0.005665348, -0.025347907, -0.008407543, -0.007544517, 0.012513876, 0.028062264, -0.01652277, -0.03424264, -0.013940653, -0.007210443, 0.013704017, -6.829389E-4, 0.0073983595, 0.009653362, 0.007927311, -0.002027067, -0.021171976, -0.006688451, 0.002218464, -0.021575648, 0.046269327, -0.020072313, -0.0028987927, 0.043318335, -0.004690964, -0.009249689, 0.008804257, 0.02586294, -0.016425332, -0.0062256185, -0.005978543, -0.009653362, -0.014351286, -0.013328183, 0.03488295, -0.0021610449, -0.0033372657, -0.004482167, -0.02828498, -0.015047275, 0.03357449, -0.02513911, -0.02886961, -0.030484304, 0.012472117, -0.003198068, 0.0128827505, 0.0066188523, 0.011984925, -0.03872481, 0.01778947, -0.0037096196, -0.021004938, -0.018875213, 0.025542784, -0.0045065265, -0.015604066, -0.005644468, 0.20935339, 0.0061421, -0.007074725, 0.024290005, 0.01348826, -0.011581251, 0.008665059, 0.0221046, -0.005630548, 0.0025629783, 0.00737052, 0.039532155, -0.01476888, -0.0024864196, 0.02206284, -0.0043429695, -0.02214636, -0.022814509, -0.010725185, -0.022911947, -0.011435094, -0.010008317, -0.028980969, -0.025083432, -0.003506043, 0.0026134374, -0.028131861, -0.027547231, 0.020698704, -0.0063195773, 0.0012118903, -0.02513911, -0.0196408, -0.0033459656, -0.027004361, -0.019557282, -4.793622E-4, -0.0030501704, -5.889804E-4, 0.048663527, -0.012458197, 0.010196234, 0.020489907, -0.015214312, -0.00306583, -0.01168565, -0.022995466, -5.6462083E-4, -0.019724319, -0.015757183, -0.019779999, -4.4543276E-4, 0.0058115055, 0.020531666, 0.004743163, -0.021018857, 0.0010953122, -0.009542004, 0.0064935745, 0.0071547637, -0.027199237, 0.023552256, -0.008247466, 0.04050654, -0.022007162, 0.013592659, -0.024679758, -0.00860938, 0.023078984, -0.0011875307, -0.011268057, -0.0076419557, -0.019487683, 0.020754382, -0.026642445, -0.025751581, -0.01165781, 0.0060446616, -0.0013789275, 0.020517746, -0.010509429, -0.01047463, 0.0015268251, 0.008957374, -0.011316775, -0.01902833, 0.002089706, -0.0027230557, 0.0031806682, -0.0020375068, -8.8608055E-4, -0.014219048, 0.014504404, 0.0076697953, -0.009361047, -0.0012693093, -0.011783089, 0.016870765, -0.009667283, 0.011302856, -0.030178068, 0.028507696, -0.010641667, -0.00246032, 0.0015033355, 0.002333302, -0.001962688, 0.04858001, 0.022299478, -0.033936407, -0.019974874, -0.04173148, -0.009061772, -0.013864094, 0.007502758, -0.013453461, -0.0060411817, -0.009583764, -0.010753025, 0.002148865, 0.030874057, 0.021631328, 0.021784445, 0.003130209, 0.016717648, -0.020531666, -0.04543414, 0.0020061873, -0.0045274063, -0.040673576, 5.363463E-4, -0.0048928005, 0.004826681, -0.0041480926, -0.008950414, -0.008811217, 0.04120253, -0.0159799, 0.007123444, 0.010405031, -0.013787536, 0.0038975365, 0.02204892, -0.0019870477, 0.024331763, -0.012409478, 5.067667E-4, 0.0064413752, -0.001167521, -0.010182315, -0.017232679, -0.016341815, 0.0016938624, -0.024317844, -0.004068054, 0.013794496, -0.021269415, -0.019362405, -9.4915455E-4, 0.0012875791, -0.028340658, 0.014226008, -0.0020966658, 0.003497343, -0.031653564, -0.031180292, -0.17761631, 0.019807838, 0.023273861, -0.034186963, 0.010133595, 0.009778641, 0.0077115544, 0.010676466, -0.020587346, -0.011783089, 0.018666416, -0.0025542784, -0.0233017, -0.030456465, 0.028758252, -0.03006671, -0.02586294, 0.018290583, 0.015910301, 0.008024749, 0.0069877263, -0.03268363, 0.018109625, 0.018568978, 0.0013136786, 0.005961143, 0.009013053, 0.0554007, 0.0025281787, -0.0033250859, -0.014629682, -0.019947035, 0.03318474, 0.0083449045, 0.018304503, -0.016049499, 3.993235E-4, 0.008296185, -0.003504303, 0.034019925, 0.026489329, 0.0042037717, 0.03079054, 0.0015494447, 0.008143067, 0.038418576, -0.010391111, -0.021380773, 0.023677535, -0.0030832298, 0.030762699, -0.026169173, -0.005585309, -0.0030536503, 0.0012614795, 0.0099178385, 0.0026795564, 0.0040993732, 0.023190342, -0.02572374, -0.0077811535, -0.02204892, 0.027213156, -0.025932537, -0.008310105, -0.03129165, -0.008985214, 0.027408034, -0.026197014, -0.0012379899, 0.009430647, 3.1536986E-4, 0.006705851, 0.022550033, 0.013397782, 0.009757761, -0.034576718, 0.002082746, 0.034047768, 0.006524894, 0.02153389, 0.043902963, -0.004224651, 0.010996621, 0.001044853, -0.021603487, -0.029676957, 0.015478788, 0.0052616745, 0.010947902, -0.0029875312, -0.0061455797, -0.016494932, 0.0061699394, -0.0072243623, 0.013822335, 1.5007256E-4, -0.018652497, -0.0062430184, -0.002211504, 0.00984128, -0.01593814, -0.029565599, 0.006636252, 0.022313397, -0.0018809094, 0.007123444, 0.018666416, 0.018541139, -0.004102853, -0.014490484, 0.03724931, 0.021728767, 0.007123444, -0.03070702, 0.014949837, -0.012743552, -0.033351775, -0.015604066, -0.0392816, 0.032098997, -0.012165882, -0.002328082, 0.0018165305, -9.243599E-5, -0.005567909, -0.070768125, -0.023218183, 0.03009455, -0.017037803, -0.030929737, -0.017664192, -0.019960955, 0.05102989, -0.016077338, 0.0031667484, -0.019501602, -0.033435296, -0.013230745, 0.020406388, 0.0031545686, -0.008170907, 0.004666604, -0.014031132, 3.8257628E-4, 0.010885263, -0.016815087, -0.0014511364, -0.023566177, -0.0064204955, -0.03975487, -0.01787299, -0.02756115, 0.018736014, 0.010251913, 1.4604887E-4, 0.017469315, -0.004398648, -0.0072591617, 0.0011005321, -0.013641378, -0.021255493, -0.027073959, 0.0064726947, 0.015033355, -0.03321258, 0.017385798, 0.0067858896, 0.012569555, -0.023232102, -0.025041671, -0.02398377, 0.0012014505, 0.026197014, 0.0075166775, 0.005762786, 0.011776128, -0.016870765, 0.0041480926, -0.013474341, 0.022076761, -0.008699859, 0.014490484, -0.0031180293, 0.008957374, 0.017469315, 0.0022637032, 0.01227028, -0.0066571315, -0.0030205909, 0.024011608, -0.011831807, -0.024387443, 0.0024985992, 0.029788315, 0.01785907, -0.0073357206, 0.010314552, -0.017441476, 0.021812284, -0.025918618, -0.002517739, -0.01165085, -0.009451526, 0.008957374, -0.020420307, -0.01842978, -0.022800589, 9.4915455E-4, -0.041369565, 0.0073913997, 0.036581166, 0.015075115, -0.004162012, 0.024248246, -0.048218094, 0.043318335, 0.027101798, 0.06013342, -0.0017869509, -0.017427556, -1.3006288E-4, -0.0047396827, 0.009013053, 0.006570133, -0.0019313686, -0.037973143, 5.3286634E-4, -0.0798995, 0.031570047, 0.009249689, -0.003807058, 0.007558437, 1.04724546E-4, 0.0036017413, -0.012875791, 0.0074609984, 0.017497156, -0.0050319983, -0.010488549, -0.0097995205, 0.0080804285, -0.02518087, -0.027213156, 0.0021923643, 0.0055435495, 0.02145037, 0.0089991335, 0.027254917, 0.008943454, -0.017886909, 0.011177578, -0.029649118, 0.0040889336, 0.0024150808, 0.0036504606, 0.012040604, -0.010537269, 0.027533311, -0.021951482, -0.0027978744, 0.025528865, -0.018053945, -0.04741075, -0.008101308, -0.012722673, 0.008337944, -0.028925288, -0.031152453, -0.010683426, -0.013161146, -0.029036647, -0.018582897, -0.0033999046, 0.0032467872, -0.018805614, 0.024401363, 0.011922286, 0.023426978, -0.002883133, -0.021603487, -0.042037714, -0.003257227, -0.012499956, 0.007196523, 3.6365408E-4, 0.016508851, -0.013342103, 0.040005427, 0.01778947, 0.02587686, -0.017719872, 0.03975487, 0.0043812487, -0.027338434, 0.011783089, -0.008532821, 0.0064030956, -0.029008808, -0.015228232, 0.02270315, 0.0031754484, 0.008574581, -6.424845E-4, -0.0011301116, -0.0043429695, -0.020378549, 0.010579028, 0.01292451, -0.03006671, -0.022508273, 0.015200392, 0.010405031, 0.0043464494, -0.014866318, -0.0041724523, -0.0061699394, 0.006622332, -0.03207116, 0.0088808155, -0.015896382, -0.007843792, 0.019278886, -0.0032955064, -0.019905277, -0.010084876, 0.022035, 0.011421174, 0.009667283, 0.006893768, -0.021575648, 0.0037165794, -0.018207064, 0.008623299, -0.015910301, -0.0024968593, 0.016703729, -0.013731857, -0.00863026, -0.0072800415, -0.021687007, 0.028173622, -0.037082277, -0.006336977, 0.009340168, -0.0014641861, -0.016481012, 0.022299478, 0.02395593, 9.4915455E-4, 0.011226297, -0.0067858896, 0.012346839, 0.0146018425, -5.976803E-4, -0.014379126, 0.024707599, -0.015186473, 0.0018356701, -0.014163369, -0.018193144, -0.007481878, -0.022452595, -0.015771104, -0.016940365, 0.019585121, 0.01535351, 0.09326248, 0.013404742, 0.0057941056, -0.0061873393, -0.014191209, 0.020155832, 0.0027474153, -0.010189274, -0.02513911, -0.033351775, 0.00431513, -0.011567332, -0.024262166, -0.0013249884, -0.05423144, 0.0031197693, -0.0075862766, 0.011275017, 0.010725185, -0.014949837, 0.03994975, -0.01414945, 0.0017591114, -0.0048301616, 0.0097995205, 0.023065064, 0.024985993, 0.013543939, 0.0026238773, -0.03321258, 0.012402518, 0.022522192, -0.024011608, -0.01593814, 0.020837901, 0.012527796, -0.014476565, 0.024234325, 0.021004938, 0.004673564, 0.017608514, 0.034047768, -0.011595171, -0.016453173, 0.018040026, -0.02150605, -0.016355734, -0.021422531, -0.019919196 ], - "id" : "3275097c-e898-4cfc-8365-6da60bc7961d", - "metadata" : { - "name" : "Swift AeroGuard Road Bike Helmet" - }, - "text" : "price: 99.99\nname: Swift AeroGuard Road Bike Helmet\nshortDescription: \ndescription: ## Overview\nStay ahead of the pack with the Swift AeroGuard Road Bike Helmet, an innovative accessory designed to provide ultimate speed and protection. This lightweight and aerodynamic helmet is equipped with advanced features to keep you cool, comfortable, and safe on your road racing adventures.\n\nThe AeroGuard helmet incorporates the latest technology to enhance your performance, including a fully-integrated Rotational Impact Protection System (RIPS) for additional safety. With its sleek design and customizable fit, the Swift AeroGuard is the perfect companion for riders looking to dominate the podium.\n\nProduct Details:\n- Designed for road racing, providing optimal performance and protection\n- Lightweight construction for enhanced speed and comfort\n- Advanced ventilation system for improved airflow and temperature regulation\n- Integrated Rotational Impact Protection System (RIPS) for enhanced safety\n- Adjustable fit system for a personalized, secure fit\n- Secure storage for sunglasses or accessories\n- Wide field of view for increased visibility and situational awareness\n- Crash Replacement Guarantee for peace of mind\n- 30-Day Unconditional Guarantee for customer satisfaction\n\n## Features\n\n1. Featherlight Design:\n - Utilizes cutting-edge materials to reduce weight and maximize speed.\n - Strategically placed carbon fiber components for enhanced strength and durability.\n\n2. Optimal Airflow:\n - Innovative ventilation system with optimized channeling for improved airflow and cooling.\n - Enhanced heat dissipation technology for a comfortable ride in any conditions.\n\n3. Rotational Impact Protection System (RIPS):\n - Fully-integrated RIPS technology to minimize the effects of rotational forces during impact.\n - Provides an additional layer of protection for your head and brain.\n\n4. Customizable Fit System:\n - Advanced fit system allows for easy adjustment and customization.\n - Ensures a secure and comfortable fit for riders of all head shapes and sizes.\n\n5. Secure Storage Solution:\n - Integrated storage port for securely stowing sunglasses or small accessories during rides.\n - Easy access and secure storage for added convenience.\n\n6. Wide Field of View:\n - Beveled front edge design provides an expanded field of view while riding in various positions.\n - Allows for better visibility and awareness of the road ahead.\n\n7. Independent Safety Rating:\n - Swift AeroGuard has undergone rigorous third-party testing and received a top safety rating.\n - Ensures optimal protection and peace of mind for riders.\n\n## Specifications\n\n| Size | S | M | L |\n|---------------|-----------------------------------|-----------------------------------|-----------------------------------|\n| Circumference | 52-58cm | 56-61cm | 59-64cm |\n| Fit System | Adjustable strap and buckle system | Adjustable strap and buckle system | Adjustable strap and buckle system |\n| Pad Material | Moisture-wicking, antimicrobial | Moisture-wicking, antimicrobial | Moisture-wicking, antimicrobial |\n| Buckle Type | Lightweight buckle | Lightweight buckle | Lightweight buckle |\n| Includes | Crash Replacement Guarantee | Crash Replacement Guarantee | Crash Replacement Guarantee |\n| Weight | 250g | 270g | 295g |\n\n## Sizing\n| Size | Circumference |\n|:----:|:----------------:|\n| S | 52 - 58 cm |\n| M | 56 - 61 cm |\n| L | 59 - 64 cm |\ntags: [helmet]" - }, - "dd3f4b5d-32ce-4dd1-8240-6c9e3ecce121" : { - "embedding" : [ 0.0028836052, 0.019493032, -7.452502E-4, -0.025281113, -0.009892609, 0.0062576667, 7.548158E-4, -0.028662132, 5.187185E-4, -0.02629681, -0.013357109, -0.0054819803, -0.015151971, 5.893602E-6, 0.006487242, -0.023166237, 0.0046228124, 0.01079004, -0.010490896, -0.037956454, 0.0079238275, 0.0321962, -0.024780221, 0.0016583338, -0.0066402922, -0.0073533673, 0.019590428, 9.974352E-4, -0.014887612, -0.019075623, -0.0022835787, 0.0077499063, -0.03063787, -0.0065394184, -0.0044071507, -0.032975364, 0.0029027364, 0.0032714484, 0.020647865, -0.01353103, 0.028230809, 0.024474122, 0.010205667, 0.011555292, -0.016278977, 0.0028418642, 0.009176056, 0.008765603, 0.02473848, 0.006981177, 0.0023114062, 0.015305022, -0.031166589, -0.0029340421, -0.0015365893, -0.018866917, -0.015346763, 0.0071029216, 0.021093102, -0.0087377755, -0.013231887, 0.007235101, -0.04129573, -0.0048941285, -0.00890474, 0.0094473725, -0.036815535, 0.027493384, -8.482982E-4, -0.008167316, 0.005565462, 0.046610747, 0.019437378, 0.009948264, 0.027924707, -0.02309667, 0.00337754, 0.002387931, -0.0076246834, 0.02432107, 0.030582216, -0.022178367, -0.021065274, 0.023041014, 0.0102126235, 0.01208401, 0.006462893, 0.015444159, -0.021747045, 0.009767386, 0.017934702, 0.014581512, 0.0074090217, 0.029496951, 0.031945754, 0.01629289, -0.029496951, 0.03333712, -0.013364066, -0.014150188, -6.5785507E-4, -4.4132376E-4, -0.022067059, -0.02329146, -0.042102724, -0.010122185, 0.016626818, -0.011972701, -0.013878872, 0.006518548, -0.0037532088, 0.02427933, 0.00287317, 0.0072629284, 0.030832661, -0.005408934, 0.027910793, -0.023722783, -0.0023809744, -0.026268983, 0.03353191, 0.02857865, 0.04399498, 0.0013165796, 0.011270061, 0.0030262202, -0.014595425, 0.004285406, 0.010456112, -0.0020453075, -0.011054399, 0.049922198, 0.031166589, 0.007819475, -0.010393501, -0.0018296457, -0.02020263, 0.02675596, -0.023263633, -0.0021287894, -0.003697554, 0.036425952, -0.027729915, -0.018588644, 0.0043306253, 0.013899743, 0.005721991, 0.009245625, 0.032975364, 0.022275763, 0.011520507, -0.019339982, -0.010497853, 0.018713867, 0.0025531559, 0.008730819, -0.018866917, 0.03333712, 0.0030627435, 0.0053289304, -0.014929353, 0.009134315, 0.029246505, -0.013851045, 0.025295027, 0.0054471963, 0.014790216, 0.02100962, -0.0070959646, -0.0071864035, -0.010414371, 0.009106488, -0.02370887, 0.018922573, 0.024376726, 0.022818396, 0.036203332, -0.0049010855, -0.016765956, 0.003057526, 0.017419897, 0.007847302, -0.008981265, 0.030359598, -0.02074526, -0.010059574, -0.00530806, -0.015597208, 0.021134844, -0.013649297, 0.022080973, 0.009996962, -0.012390111, -0.0018696475, -0.5948366, -0.01708597, -0.024794135, -0.007791647, 0.0070020473, 0.026839443, 0.007687295, 0.016612906, -0.0011539639, 0.012779693, -0.025086321, 0.03208489, -0.029246505, -0.016960748, -0.019479118, -0.027382076, 0.012404025, -0.018630385, 0.037010323, -0.0047515137, 0.006845519, 0.018352112, -0.016459854, 0.017183365, 0.030359598, 0.022359245, 0.01265447, 0.0044419346, -0.013447548, -0.018866917, -0.035980713, 0.05353975, 0.0053706714, 0.0016313762, 0.03497893, -0.023527993, -0.011214407, 0.0014244105, 0.014692821, 0.050283954, -0.010073487, -0.010748299, -0.012730995, -0.019214759, 0.011443982, 0.024460208, 0.032168373, -0.006699425, -0.009092574, -0.03734425, 0.007436849, -0.0017331197, 0.026783789, 0.03136138, 0.004469762, -0.004807168, 0.01837994, -0.0013000573, -0.01796253, 0.008515158, -0.014247584, 0.011263104, -0.008960394, -0.027340334, -0.024654998, 0.020453075, -0.046972502, -0.019799132, 0.0079794815, -0.012125751, -0.0076733814, -0.0053150165, -0.028717786, 0.021079188, -0.0058889547, 0.03675988, 0.021733131, 0.004949783, 0.024307158, 0.024891531, 0.007833389, 0.017725999, 0.033392776, -0.0054785023, 0.033225812, 0.01322493, -4.328995E-5, -0.0124527225, 0.023110583, 0.019590428, -0.0052210996, 0.009802171, -0.008605597, -0.00934302, -0.023054928, 0.042269688, 0.004076701, -0.0070959646, 0.012327499, -0.02416802, -0.0155415535, 0.004268014, 0.012104881, -0.015305022, 0.017781653, 0.012056183, -0.021148758, -0.03756687, 0.03361539, -0.03200141, 3.9153898E-4, -0.0045323735, -0.03809559, -0.01971565, -0.003965392, -0.020313937, 0.024919357, 0.008160359, 0.0132179735, -0.012410982, 0.0024261938, -0.02690901, 0.010254364, 0.0017122492, -0.03737208, 0.022122713, 0.022359245, 0.007735993, -0.006191577, 0.004831517, 0.015931137, 0.0050367434, 0.054235432, -0.011847478, -0.0055515487, 0.006595073, 0.02717337, 0.022581864, -0.0040453956, -0.046749882, -0.02169139, -0.005401977, -0.0031218766, -0.019966096, -0.008807344, -0.01107527, -0.023778439, -0.011617903, 0.008139488, -0.008216014, -0.016209409, -0.031945754, -0.052983202, 0.0154858995, -0.019993924, -0.025378508, -0.018727781, -0.023486251, -0.007882087, -0.01998001, 0.016571164, 0.010623076, -0.020773089, 6.317669E-4, -0.02085657, 0.006494199, 0.010671774, 0.008376021, 0.0012574467, -0.057491228, -0.00732554, -0.015708517, 0.010796997, 0.01849125, -0.008452546, 0.016793782, -0.014692821, -0.013064923, 0.018185148, -0.010337846, 0.0047097728, 0.028425599, -0.032864057, 0.011263104, 0.016487682, -0.008438632, 0.014414548, 0.01320406, 0.0021513992, 0.011353543, 0.013016225, 0.0019061709, -0.008459503, 0.009809127, -0.028689958, -0.02142703, 0.012932743, 0.010428285, 0.0072977124, -7.8438234E-4, 0.017670343, -0.011409198, 0.019242587, -0.028216895, 0.017753825, -0.014080619, 0.01800427, -0.0014765868, 0.019799132, 0.046972502, 0.0074507627, -0.023486251, -0.012007485, -0.014609339, -0.0031201374, -0.003982784, 0.0021113972, 0.007402065, 0.00646985, -0.015792, -0.003906259, 0.008577769, 0.0050019594, -0.002991436, -0.031166589, 0.03044308, -0.0028870837, 0.0072698854, -0.01971565, -0.018741695, 0.0052802325, -0.007402065, 0.021552254, 0.014734562, 0.020313937, 0.035034586, 0.006205491, 0.009690861, 0.026310723, 0.007367281, 0.012612729, -0.0025009797, 0.0192565, -0.013600599, -0.019590428, 0.010643947, 0.033448428, -0.002000088, 0.014609339, 0.0019844351, -0.003697554, 0.0021757479, 0.01147181, -9.5917267E-4, 0.0086821215, -0.0063724546, 0.016181583, -0.0012226625, 0.006007221, -0.007151619, 0.013211017, 0.019506946, 7.6568587E-4, -0.0052245776, 0.009551724, -0.0077220793, -0.009704775, -0.042798407, -0.018143408, -0.028829096, 0.0034645004, 0.023778439, 0.008862999, -0.0017931224, 0.044356734, 0.013816261, 0.018741695, -0.009899566, 0.011318759, 0.008327323, -0.010337846, -0.0186443, 0.016320718, 0.01967391, -0.013322325, 0.014344979, 0.014609339, -0.0025914183, 0.003184488, 0.03573027, 0.015597208, -0.014859784, 0.012028355, 0.0016096361, -0.017489465, -0.019632168, 0.03915303, -0.002520111, -0.008083834, -0.015458072, -0.02610202, -4.5741143E-4, -0.014539771, 0.007596856, 0.019242587, -0.008494287, -0.013858002, -0.004219316, 0.0070542237, 0.0012957092, 0.031083107, -0.05309451, -0.018950399, -0.0075342446, 0.018936485, 2.6175065E-4, 0.0186443, -0.0155137265, 0.017113797, -0.016278977, -0.012383154, -0.021747045, 5.139357E-4, 0.012710125, 0.057825156, 0.012744909, 0.0132805845, 0.036119852, -0.029357813, -0.012946657, -0.037817318, -0.013934527, 0.012640556, 0.008633424, -0.0026783787, 0.027075974, -0.014706735, 0.0042714924, 0.022234023, 0.0075481585, -0.0065985513, -0.014428461, 0.02100962, -0.015291108, -0.022470554, -0.00482456, 0.0012687515, 0.03333712, 0.013649297, -0.0010861348, 0.045803756, 0.013760606, 0.027215112, -0.0051306607, -0.0023479294, -0.00951694, 0.010678731, 0.008821258, -0.037900798, 0.009774343, -0.013391894, 0.01351016, 0.033810183, 0.0010209145, -0.0029427384, 0.020105233, 0.007896, -0.0018626907, 0.0102404505, -0.022178367, 0.011381371, 0.012431852, 0.0036558132, -0.03002567, 0.036592916, 0.01563895, -0.020842656, 0.010156969, 0.0065742023, 0.028634304, -0.012271845, -0.023486251, -0.021329634, -0.04719512, -0.003478414, -0.023013188, -0.005513286, 0.004316712, -0.014831957, 0.0071029216, 0.020981792, -0.0046402044, -0.0072281444, -0.0068176915, -0.006007221, -0.019576514, -0.022540122, 0.023319287, 0.0013461462, -0.01351016, 0.027827311, 0.013092751, 0.028216895, 0.018922573, -0.010407414, -0.015235453, 0.0046402044, -0.018338198, 0.002528807, -0.0020940052, 0.02116267, 0.019326068, 0.010365673, 0.0069116084, 0.02717337, -0.021093102, -4.704555E-4, -0.011478766, 0.019339982, 0.0052384916, 0.03539634, 0.023416683, -0.015708517, 0.0061046164, -0.0079794815, -0.036092024, 0.02158008, -8.0481806E-4, 0.020007838, 0.0054471963, 0.006595073, 0.014247584, 0.0070820507, -0.004149748, 0.014171058, 0.016919006, -0.016626818, 0.01449803, -0.025754178, -0.003579288, -0.01320406, -0.0066437707, -0.014171058, -0.01568069, -0.012793607, -0.04878128, 0.02686727, 0.017837306, -0.031862274, 0.032363165, 4.3632355E-4, -0.026672479, -0.022762742, 0.014059749, 0.032335337, 0.015694603, 0.0014905004, 0.029636087, -0.014845871, -0.028940404, -0.041657485, 0.0024157586, 0.017461639, -0.0331145, -0.02184444, 0.029886533, -0.008675165, 0.019493032, 0.0032192722, -0.017879048, -0.0035862448, -0.004921956, -0.0058506923, 0.031222245, -0.003285362, 0.008083834, -0.022762742, -0.024571516, -0.020912224, -0.028453426, -0.010553508, -0.0139901815, 0.005982872, 0.01940955, 0.02572635, 0.01449803, -0.013823217, 0.017002488, -0.010525681, 0.011784866, -0.0155137265, 0.013997138, -0.009273452, 0.025503732, 0.022901878, 0.007092486, -0.021037448, -0.012077053, -0.007882087, 0.028077757, -0.011868348, -0.0038958236, -0.008570812, -0.04090615, 0.011395284, -0.03022046, 0.011151795, -0.010163926, -0.05515373, -0.0030383947, 0.037733834, -0.013593642, -0.001721815, 6.230709E-4, -0.0036105937, -0.013593642, 0.02599071, 0.020425247, 0.02941347, 0.0198687, -0.0321962, -0.042492304, -0.026547255, 0.027994275, -0.012897959, -0.028216895, 1.4185408E-4, -0.0076246834, -0.010734386, 0.008389935, -0.01366321, -0.014845871, 0.031834446, -0.02138529, -0.022554036, -0.036592916, -0.025336767, -0.03467283, -0.0017774695, 0.009412589, 0.0155137265, -0.0020487858, -0.03033177, 0.0018192105, 0.016585078, 0.012814477, 0.035451997, 0.0049045635, 0.011569205, 0.03414411, -0.012383154, -0.01280752, -0.03993219, -0.0024088016, -0.02085657, 0.006066354, 0.023834093, 0.012904916, -0.0047932547, 0.0030401337, 0.004094093, -0.014219756, -0.013934527, -0.0023201022, 0.019743478, -7.1437925E-4, -0.021399204, -0.029385641, -0.0015826784, 0.011151795, -0.020425247, -0.020773089, -0.022122713, 0.014073663, -0.0012957092, 0.02930216, -0.015402418, 0.005788081, 0.023416683, -0.038513, 0.02070352, -0.02059221, -0.031417035, -0.01048394, 0.011805737, 0.044996765, -0.0023548864, 0.022373158, 0.042380996, -0.013287541, -0.011172666, -0.0036836404, 0.023082756, 0.02599071, -0.0101847965, 0.017781653, -0.0102195805, -0.022025317, -0.021218326, -0.035451997, 0.008076877, -0.008167316, 0.006932479, -0.009106488, 0.009231711, 0.0065498534, -0.032975364, -0.009029963, -0.009336063, -0.015026748, 0.007868173, -0.017364243, 0.018143408, -0.025448076, -0.01109614, -0.021287894, 2.0294372E-4, 0.0117779095, 0.016042445, -0.016849438, -0.0056941635, 0.03984871, -0.024334984, -0.008097747, 0.010310019, 0.009398675, -0.03414411, -0.012967527, 0.007158576, -0.026213327, -7.826432E-5, -0.010567422, -0.009683904, -0.018741695, 0.003386236, -0.009976092, -0.014525857, 0.004897607, 0.002327059, 0.039375648, 0.0029375206, -0.0038192985, 0.00508892, -0.014581512, -0.014818043, 0.0071307486, 0.016891178, -0.047083814, -0.0017861656, 0.011861391, 0.019353896, -9.4178057E-4, -0.025114149, -0.040238295, 3.8240815E-4, 4.8045593E-4, -0.031584, -0.008807344, -0.023527993, -5.5654626E-4, -0.033086672, 0.017892962, -0.021079188, 0.019117363, -0.004191489, -0.006066354, -0.009683904, -0.01769817, -0.017072055, 0.005530678, 0.0155415535, 0.0192565, -0.0054854588, -0.017628603, 0.0014504986, 0.044551525, 0.0054124123, -0.031917926, -0.02484979, 0.016891178, -0.04516373, 0.0012696211, -0.025183717, 0.016432028, 0.012779693, 0.020021752, -0.007318583, 0.014261497, 0.015583294, 0.00668899, -0.00179834, -0.013475376, 2.8131672E-4, 0.013753649, 0.0102334935, 0.0026018536, -0.04772384, -0.007360324, 0.019103449, 0.030554388, 0.027910793, -0.0025531559, -0.02164965, 0.014623253, 0.013405807, 0.0029688263, -0.003476675, -0.0043932367, -0.018866917, -0.026519429, -0.0010470026, -0.011868348, 0.0060211346, 0.0077707767, -0.0013591903, 0.009788257, -0.022762742, 0.0022661868, -0.010275235, -0.0132458005, -0.0055167647, -0.013997138, 0.038429517, 0.006845519, -0.032891884, 0.021399204, 0.0030679612, -0.028912578, 6.95248E-4, 0.02123224, -0.0045915064, -0.0052245776, -5.135009E-4, -0.021246152, -0.016835524, -0.018087752, 0.022234023, 0.014414548, 0.003948, 0.0019148669, -0.028495168, -0.028411686, 0.017058142, 0.0038784316, -0.01366321, -0.013621469, 0.0019722607, -0.0049950024, 0.018240804, 8.891696E-4, -0.010296105, -0.027882967, 0.017531207, -0.017113797, -0.0029566518, -0.0312779, -0.0057428614, 0.0032575347, -0.015499813, 0.010887436, 0.20436378, -0.013871915, -0.0067168176, 0.038346037, 0.018338198, 0.010727429, -0.021941835, -0.0060698325, -0.014400634, -0.007603813, 0.009656077, 0.026491601, -0.00976043, -0.006654206, 0.00879343, -0.0031253549, -0.032418817, -0.012570988, -0.008814301, 0.010546551, -0.006167228, 0.011903132, 0.007603813, -0.0164042, 0.03063787, -0.021454858, 0.020216541, -0.0070472667, 0.03305885, 0.004800211, -0.022206195, 0.017572947, 0.0021305287, -0.01449803, -0.03086049, 0.011158752, 0.030693525, 0.016265064, 0.008320366, 0.041991413, 0.0057602534, 0.044245426, 0.0054889373, -0.013329282, -0.02203923, -0.00951694, -0.016278977, -1.3033183E-4, -0.026950752, -0.0050123944, -0.006553332, 0.021371376, 0.0048523876, 0.03022046, -0.008292539, -0.019632168, -0.005269797, -0.0059306957, 0.013670167, 0.002857517, -0.010560465, 0.050979637, -0.01449803, 0.025823746, -0.008341237, 0.015764173, -0.0012696211, -0.009962178, 0.009231711, 0.0074229357, -0.03258578, -0.0012948397, -0.0075898995, -0.008250798, -0.035980713, -0.016237237, 0.013572771, 0.007290756, 0.0062889727, 0.01967391, -0.007123792, -0.010685688, 4.3045374E-4, -0.024891531, 0.007151619, -0.042102724, 0.015430245, -0.0016374633, 0.019882614, -0.00208357, 0.010546551, 0.005669815, -0.0039758272, 0.0038019065, 0.0041949674, -3.1849227E-4, -0.01754512, -0.0049602184, -0.01037263, 0.015861567, -0.004553244, 0.058938246, -3.728425E-4, -0.007819475, -0.015012835, 0.011805737, -4.5306343E-4, 0.02941347, 0.0155137265, -0.029441295, 0.0062750587, -0.023667129, -0.0024922837, -0.021621821, 0.019075623, -0.0027549039, 0.0042958413, -0.01147181, -0.012856218, 0.0020035664, 0.019659996, 0.006880303, -0.018853003, -0.016487682, 0.017712085, -0.024794135, -0.029385641, 0.02535068, -0.024070624, -0.03033177, 0.0076664244, 0.02245664, 0.017795566, -0.0068350835, 0.004028003, -0.00964912, 0.0032731877, -0.0321962, 0.013148405, 0.0031670958, -0.012139665, 0.013878872, -0.0035184158, 0.0155276405, 0.050283954, -0.04357757, 0.016000705, 0.0026922924, 0.009530854, -0.0077638202, -0.010400458, 0.0012191841, -0.0053880634, -0.038206898, 0.030665698, -0.026422033, -0.027924707, -0.020884398, 0.025072409, -0.0013931048, -0.017336415, -0.0258794, 0.023945402, 0.0074925036, -0.0155137265, -5.0784845E-4, -0.1769817, -0.0048767366, 0.025587214, 0.0267977, 0.0062263613, -0.009725645, 0.030916143, 0.0069011734, -0.01773991, 0.0075481585, 0.00603157, -0.008508201, -0.019367808, 0.0017592079, 0.021371376, -0.033754528, -0.027757743, -0.0018192105, 0.0016992053, -0.0066785547, 0.014052792, -0.008000352, 0.009043876, 0.017336415, -0.004323669, 0.0186443, -0.029970014, 0.04585941, -0.008556899, 0.010386544, -0.005276754, -0.0124805495, 0.0132736275, -0.009134315, 0.025628954, -0.01050481, -0.00241228, -0.0037462518, 0.008369064, 0.05910521, 1.1760028E-5, 0.026324637, 0.0065081124, -0.017378157, 0.008438632, 0.02199749, -0.0026922924, -0.011513551, 0.009266495, -0.0070959646, 0.042881887, -0.025935054, 0.0020800915, 0.0010322194, -0.008229927, -0.01017784, -0.024613257, 0.015026748, 0.029691743, -0.0014287585, -0.020578297, -0.021037448, 0.0073464103, -0.007930784, -0.023694957, -0.027869053, -0.021023534, 0.01785122, 0.0079516545, 0.01236924, -0.0014565858, -0.023500165, 0.011729212, 0.022122713, 0.011666601, -0.0063481056, -0.03086049, -0.0012565771, 0.03884693, 0.010031746, 0.009398675, 0.044523697, -0.0140110515, 0.017475551, 0.008028179, 0.007812518, -0.012981441, 0.022999274, -0.00423323, 0.0056663365, -0.01206314, -0.011631817, -0.029329987, 0.02728468, 0.0011243973, 0.0062437532, -0.008654294, -0.009336063, 7.9916563E-4, -0.017405983, 0.024376726, 3.1457905E-4, -0.015151971, 9.2525815E-4, 0.00127223, 0.010358717, 0.021315722, 0.022887964, 0.036676396, -0.01739207, -0.006205491, 0.025531558, 0.012327499, 0.024209762, -0.0030697004, -5.130661E-4, -1.1707037E-4, -0.03383801, 0.006939436, -0.011784866, 0.024627171, -0.018463422, -0.002327059, 0.044551525, -0.0069672633, -0.015875481, -0.07780516, -0.0139067, 0.040822666, 0.013635383, -0.020341765, -0.002386192, -0.015096317, 0.035145894, -0.0042471434, 0.03748339, -0.0027931666, -0.018296458, -0.01563895, 0.012584901, 0.026616825, 0.017072055, 0.01410149, -0.017879048, -0.03125007, 0.0039514783, -0.02013306, -0.010796997, -0.0052628405, -0.01364234, -0.014303238, -0.004226273, -0.03884693, 0.031083107, 0.022025317, -0.016042445, 0.018059926, -0.009621293, -5.465458E-4, -0.038874757, -0.024933271, 0.0036314642, -0.031639654, -0.0026522907, 0.028495168, -0.016390286, -0.018018184, 0.0030436122, 0.0033027541, -0.01195183, -0.01796253, -0.034283247, -0.002596636, 0.01133963, 0.011123968, -0.024599344, -0.01811558, 0.00890474, -0.004243665, -0.013892786, 0.012410982, -0.017920788, -0.013697994, 0.027896881, -0.009732602, -0.004914999, 0.01179878, 0.0079516545, -0.013099707, 0.012640556, 0.0154858995, -0.01109614, 0.021023534, 0.0049045635, 0.023792353, -0.011610946, -0.009092574, 0.009579552, -0.0050506573, 0.009788257, -0.028286463, -0.015179799, 9.087357E-4, -0.006156793, 0.030303942, -0.015179799, -0.029246505, -0.018936485, 0.008292539, -0.027827311, 0.0033114501, 0.0021357462, 0.0027009884, 0.0061533144, 0.013809304, -0.041880105, 0.008890826, 0.017865134, 0.036509432, 0.012104881, -0.014303238, -0.010643947, 0.0017679039, 0.014553684, -0.013405807, 0.0063654976, -0.03673205, -0.020926138, -0.08598639, 0.018936485, 0.020063492, 8.2829734E-4, -9.82652E-4, 0.012202276, 0.009899566, 0.006139401, 0.011117011, -0.021747045, -0.023305373, 0.013517117, -0.018435594, -0.010546551, -0.006205491, -0.017322501, -0.012661427, -0.0067516016, -0.014317152, 0.018477336, 0.0026157673, -0.015040662, -0.00918997, 0.016696388, 0.0016452898, -0.0045010676, 0.0017139885, 0.0011130925, -0.011026572, 0.02629681, 0.018282544, -0.010497853, 0.015764173, 0.024334984, -0.014247584, -0.007276842, -0.010261321, -0.010532637, -0.03125007, -0.032891884, -0.023347115, -0.013524073, -0.012877089, -0.015124144, -0.010602206, 0.007902957, 0.019019967, 0.013697994, 0.01693292, 0.012473593, 0.011617903, 0.0057011205, -0.004612377, -0.050784845, -0.011903132, -7.261189E-4, 0.01697466, -0.015458072, 0.015847655, 0.005047179, 0.04282623, 0.02412628, 0.015054576, -0.01193096, 0.021969663, -0.016487682, -0.017572947, -0.02759078, 0.003930608, -0.047083814, 0.001311362, -0.020675693, -8.3134096E-4, 0.006765515, 0.0060802675, -0.0147484755, 3.8219074E-4, 0.0017861656, -0.028133413, 0.014734562, 0.011896176, 0.0018644299, -0.035285033, 0.010803954, 0.024933271, -0.013364066, -0.028272549, 0.00951694, -0.020661779, 0.016724214, -0.035312857, 0.038151246, -0.022762742, -0.016390286, 0.03291971, 0.02267926, -0.0026783787, -0.006278537, 0.00219314, 0.008758646, 0.0065498534, 0.011110054, -0.021858353, -1.2674471E-4, 0.015805913, -0.0236393, -0.035451997, -0.026811615, 0.01221619, -0.009802171, -0.02443238, -0.007694252, 0.0046506394, 0.01849125, -0.023207977, 0.005384585, 0.0073464103, 0.0038610396, -0.027660348, 0.020049578, 0.022317505, -0.0016826828, 0.00140354, -0.013440591, 0.0048593446, -0.009996962, -0.0059863506, -0.016473768, 0.0065324614, -0.0021792264, 0.0024853267, 0.020105233, -0.026018538, -0.011416155, -0.010824825, -0.0164042, 0.005621117, 0.021287894, 0.0036314642, 0.09233102, 0.0042227944, 0.0053219735, -0.00359668, -0.0050367434, 0.005384585, 0.02664465, -0.011826607, -0.02123224, -0.017002488, 0.014115404, 0.012682297, -0.0097813, 0.011659644, -0.04149052, -0.0071794465, 0.0074507627, -0.004208881, -0.02743773, -0.00265403, 0.019159105, -0.017572947, -0.0031566606, -0.0047410782, -0.009767386, -8.156881E-4, 0.036871187, 0.030081324, -0.008083834, -0.033448428, 0.0094195455, 0.022999274, -0.02824472, -0.04658292, 0.016765956, -0.0018435594, -0.022999274, 0.014066706, -0.0087169055, 7.1307487E-4, 0.021176584, 0.04741774, -0.02169139, -0.012424895, 0.010525681, -0.020981792, -0.010003919, -0.0036071152, -0.025809832 ], - "id" : "dd3f4b5d-32ce-4dd1-8240-6c9e3ecce121", - "metadata" : { - "name" : "SwiftAir TQX Tubeless Charge Pump" - }, - "text" : "price: 57.99\nname: SwiftAir TQX Tubeless Charge Pump\nshortDescription: \ndescription: ## Overview\nThe SwiftAir TQX Tubeless Charge Pump is a versatile bike accessory that combines the functionality of a floor pump with a tubeless setup tool. With its innovative design, it simplifies the process of setting up tubeless tires both at home and on-the-go. Featuring a user-friendly interface and durable construction, the SwiftAir TQX is a reliable companion for any cyclist.\n\n## Product Details\n- Dual-function design: The SwiftAir TQX can be used as a standard floor pump for regular inflation or switched to the \"Charge\" mode to pressurize a chamber for effortless tubeless tire setup.\n- Compact and portable: Designed for easy transport, this pump is lightweight and compact, making it convenient to bring along on rides.\n- High-precision digital gauge: Equipped with a digital gauge, the SwiftAir TQX provides accurate pressure readings up to a maximum of 160 PSI, ensuring optimal tire inflation.\n- Compatible with multiple valves: The pump is compatible with both Presta and Schrader valves, allowing for versatile use on a variety of bikes.\n- Convenient storage: The SwiftAir TQX features built-in storage for inflation accessories, ensuring that everything you need is always within reach.\n\n## Features\n### Dual-Function Design\nThe SwiftAir TQX serves as both a floor pump and a tubeless setup tool, offering versatility and convenience for cyclists. Whether you need to inflate your tires or set up tubeless, this pump has got you covered.\n\n### Effortless Tubeless Setup\nWith the \"Charge\" mode, the SwiftAir TQX pressurizes a chamber to help seat tubeless tires without the need for a bulky air compressor. This innovative feature saves time and effort, allowing for hassle-free tubeless setup.\n\n### Accurate Digital Gauge\nThe high-precision digital gauge on the SwiftAir TQX ensures accurate pressure readings. With its backlit display, the gauge is easy to read even in low light conditions. The maximum pressure of 160 PSI provides compatibility with a wide range of tire setups.\n\n### Versatile Valve Compatibility\nThe SwiftAir TQX is compatible with both Presta and Schrader valves, catering to different bike models and allowing for easy switching between valve types.\n\n### Integrated Storage\nThe pump is designed with integrated storage, ensuring that all necessary inflation accessories are conveniently stored within the handle. No more searching for misplaced attachments, as everything is neatly organized and readily accessible.\n\n## Specifications\n- Pump Type: Floor\n- Valve Compatibility: Presta and Schrader\n- Gauge Type: Digital\n- Maximum Pressure: 160 PSI\n- Frame Mounted: No\ntags: [pump]" - }, - "71fcfa0a-1fd9-4088-bc72-331eed11b57e" : { - "embedding" : [ 0.013042293, 5.9856137E-4, -0.031269014, -0.020128584, 0.008081214, 0.020494064, 0.0028629424, -0.046375606, -0.0027208105, -0.027505904, 0.0063756304, 0.0044060885, -0.02133332, 0.008751264, -0.023417922, 0.012500838, 0.004311334, -0.008223345, -0.0050659864, -0.018368855, 0.006365478, -0.0021861237, -0.010253801, -0.009915391, -0.009109978, -0.02103552, 0.03665649, -0.0025803705, 0.011566829, -0.021874774, 0.0056615868, 0.012961075, -0.025461912, -0.009549909, -2.2102355E-4, 0.0089137, 0.0050592185, 0.0039018588, 0.027749559, 0.016527908, 0.023201339, -0.004923855, -0.016730953, -0.012879857, 0.0030219946, 0.025556667, 0.009556677, 0.006250419, 0.003065988, 0.015025371, -0.0046565114, 0.031025361, -0.014199653, -0.0022571897, -0.008243649, -0.014213189, 0.01130287, 0.013258874, 0.044318076, 0.012846015, -0.008385781, -0.0032588812, -0.033353616, 0.0025414536, -0.031675108, -0.010057523, -0.008852786, 0.012243647, -0.0028020288, 0.020020291, 0.035871383, 0.0063553257, 0.021698803, 0.0032808778, 0.012507606, -0.03457189, -0.0036108268, -0.006825715, 0.01965481, 0.0015786792, 0.029969525, -0.021617584, -0.00563113, -7.051603E-4, 0.004236884, 0.0011802024, 0.013414543, -0.015729262, -0.029942451, 0.006382399, 0.0018561748, 0.024866313, 0.017746182, 0.010450078, -0.0069576944, -0.012209807, -0.011999993, 0.013915389, -0.014199653, -0.022294402, 0.018734336, 0.007120131, 0.0076818904, -0.020169191, -0.019262254, -0.0041455133, -0.023715721, -0.011817251, -0.0034889996, -0.011878165, -0.02413535, 0.014524525, 0.00284433, 0.0052351914, 0.0025752946, -0.010950924, 0.027587123, 0.0018071055, 0.011140433, -0.0197631, 0.012541447, 0.021049056, 0.021306247, -0.038741093, 8.007609E-4, 0.012554984, -0.0013950922, -0.011722497, 0.006768185, -0.0046632797, -0.0020659885, 0.011810483, 3.5744478E-4, 0.013001684, -0.03032147, 0.026802013, 2.9801167E-4, 0.003658204, -0.04534684, -0.031160725, 0.02252452, 0.01965481, -0.006101519, -0.012365474, -0.007776645, -0.0014348553, -0.009157355, 0.014199653, 0.0013494069, -0.0046598953, 0.02592215, -0.007959385, 0.017840937, 0.010598978, 0.01197292, -0.018923845, -0.012676811, 0.019871391, -0.022795247, -0.01846361, -0.02464973, 1.2785525E-4, 0.0056480505, -0.011580365, 0.021915384, 0.025218258, 0.003983077, -0.032487288, 0.0031675107, -0.01674449, -0.0043316386, 0.023174265, -0.013969534, 0.0017267333, 0.009184428, 0.0341658, 0.013103207, -0.0032724175, -0.023824012, -0.0054720775, 0.029509287, -0.007282567, 0.026585432, 0.017895082, -0.0065888283, -0.008480536, 0.00358037, -0.010957692, 0.009840941, -0.0061996575, 0.008534682, 0.011939079, -0.0058409437, -0.0010126897, -0.6146595, -0.023688648, -0.009319791, -0.0020727566, -0.012453461, 0.021617584, 0.015864626, 0.0045076115, -0.016419617, 0.00372927, -0.020561747, -5.972923E-4, 4.247036E-4, -0.014944153, -0.038984746, -0.032649726, 0.020304555, 0.0037597269, 0.011796947, -0.020277483, -0.036060892, -0.027478833, -0.0072622625, -0.00402707, 0.016609127, -0.008216577, 0.005776646, -0.011756338, 0.0061285915, 0.0025854467, 0.001386632, 0.059614174, -0.0012927233, -0.001679356, 0.027424686, -0.04464295, -0.010037218, 0.0107749505, 0.0059052417, 0.02726225, -0.0077969492, -3.4623497E-4, -0.018707264, -0.0365482, -0.009488996, 0.026152268, 0.032378998, -0.004162434, 0.001169204, -0.027641268, 0.0167851, -0.0040710634, -0.0044027045, -0.017367164, -0.0049915365, -0.013434848, 0.026842622, -0.0014035524, 0.0080202995, -0.013969534, 0.0025719104, 0.024324859, -0.023025366, 0.0036108268, -0.006649742, 0.010016914, -0.047241934, -0.022064283, 0.009969537, -0.015688654, 0.025272403, 0.022240257, -0.001644669, 0.0071539716, 0.026301168, 0.022917075, 0.02413535, 0.001097292, -0.004626055, 0.02483924, 0.0048155636, 0.013624357, 0.0029813857, -0.029590506, 0.045590494, -0.023580357, -0.0028832469, -0.019099819, 0.0053976276, 0.01697461, 0.027939068, 0.0036412836, -0.010477151, -0.0073299445, 0.0071133627, 0.019573592, -0.003033839, 0.02103552, 0.008169199, -0.018260563, -0.012548216, 0.012054138, 0.0105651375, -0.001390016, 0.041123495, -0.0039593885, -0.016622663, -0.008920468, 0.03752282, -0.039553273, 0.0032335005, -0.0050422978, -0.03939084, 0.010802024, -0.02834516, -0.0158917, 0.013360398, 0.013279179, 0.021549901, -0.028913688, 0.023620967, -0.018301172, 0.016825708, -0.0015253797, -0.010395933, 0.008873091, 0.017543135, -9.1962714E-4, -0.007891704, -0.032243636, 0.026653113, 0.015715726, 0.02282232, -0.01712351, 0.031052433, 0.019790174, 0.014944153, 0.0016099821, 0.008521145, -0.025150577, -0.039363764, -0.006873092, -0.0016852781, -0.02454144, -0.020900156, -0.006148896, -0.014659889, 0.022741102, -0.012318097, -0.016717417, -0.007417931, -0.011925543, -0.025340086, 0.009759723, 0.011120128, -0.033516053, -0.035357, -0.023810476, -0.018003372, -0.019857856, 0.017786792, 0.008642972, -0.022240257, -0.003331639, 0.005448389, 3.073179E-4, 0.01595938, 0.023972912, 0.0022521135, -0.037197948, -0.0150389075, -0.011384088, -0.006802026, 0.0024923843, -0.030754633, 0.0069915354, -0.014849398, -0.007878168, 0.01271742, -0.014930616, -0.0015583746, 0.026368849, -0.053197935, 0.01156006, 0.038903527, 0.014362089, 0.006734344, 0.0065617557, -0.01021996, 0.01447038, -0.0046497434, 0.011708961, -0.034815546, 0.010876474, 0.0053231777, -0.0029120117, 0.028778324, 0.006646358, 0.0095093, 0.028128577, 0.03162096, -0.0055702166, 0.023675112, 0.0045448365, 0.023417922, -0.029373923, 0.013042293, 0.0089137, 0.04404735, 0.014984762, 7.855325E-4, -0.02173941, 0.017367164, 0.0047343457, -0.016812172, 0.006910317, 9.7461866E-4, 0.04545513, -3.6643378E-5, 0.006324869, -0.010172582, 0.020994911, 0.021698803, -0.0037969518, -0.020277483, 0.02834516, 0.027478833, 0.050138716, -0.019884929, -0.028182723, -0.0083654765, 0.024175957, 0.023742793, -0.011275796, 0.0020609123, 0.018301172, 0.020115046, -0.0043688635, 0.04575293, -0.001937393, 0.01118781, 0.036115035, 0.017421309, -0.018639581, 0.0104974555, 0.0049204705, 0.011228419, 0.033922143, 0.045563422, 0.0058747847, -0.0034060893, 0.0075465264, -0.008473768, 0.0012986455, -0.0014120126, 0.0050287615, 0.0034196256, 0.013549907, -0.011546524, 0.0067749536, -0.0031861232, 0.014727571, 0.038795236, 0.008588827, 0.022362083, -0.009516069, -0.015201344, -0.02405413, -0.005695428, -0.016094744, 0.0109779965, 0.009732651, -0.008060909, -0.0095093, 0.015079517, 0.0026582046, 0.0116683515, -0.0032351925, 0.012311329, 0.03202705, 0.0079526175, -0.024121812, 0.011878165, 0.012690348, -0.0093604, -0.0035905223, 0.0061285915, 0.0140101435, 5.067679E-4, 0.033137035, 4.3697096E-4, 0.016730953, -0.0027597274, 0.009719114, -0.016324863, 0.0016895082, 0.015878163, -0.015011835, 0.013482225, -0.014199653, -0.0033350233, 0.013786794, -0.008230113, -0.015986454, 0.047539733, -0.022795247, 0.004906934, -0.0066328216, 0.030592198, -0.0047648023, 0.0059695393, -0.020074436, -0.019681882, -0.0120135285, 0.017989837, 0.008189504, 0.0022402692, -0.0133874705, 0.027532978, -0.013658198, -0.028155651, 0.0024263945, -0.021008447, -0.020778328, 0.030700488, 0.029752942, -0.0024331626, 0.014497452, -0.014727571, -6.6370517E-4, -0.017516064, -0.020656502, -0.0029898458, 0.018734336, 0.008013532, 0.0085008405, -0.015296099, -0.012663274, -0.022957684, -0.0066734306, 9.560062E-4, -0.03172925, 0.015160735, -0.0030609118, 0.007269031, 0.0042605726, 0.011093056, 0.023932302, 0.015945844, 0.008785104, 0.0013350245, -0.0013401007, 0.017610818, -0.01599999, -0.006544835, -0.0038443292, 0.019221647, -0.004592214, -0.026260559, 0.016582053, -0.013421311, 0.004375632, 0.031458523, 0.018423, 0.017137045, 2.2017752E-4, 0.013773257, 0.0060473736, 0.002223349, -0.01234517, 0.011742801, 5.884091E-4, 0.026125195, -0.0069576944, 0.026098123, -3.0943297E-4, -0.023350239, -0.0027360388, -0.0075059175, 0.01629779, -5.9686933E-4, -0.0172318, -0.006734344, -0.0047648023, -0.0016979685, -0.028318087, 0.009204732, -0.0024280865, -0.0111133605, 0.012257183, -0.0133197885, 0.017949227, 0.010693733, -0.016730953, -0.046077807, -0.008128591, -0.031864617, 0.019424692, -0.0012309637, 0.012466997, 0.039553273, -0.02737054, 0.02241623, 0.008981382, -0.01264297, 0.022294402, -0.0061962735, -0.01905921, -0.013698807, 0.006964463, 0.043993205, -0.008758032, 0.009956, -0.0116006695, 0.023255484, -0.029103197, 0.020670038, -0.024554975, -0.008494073, -6.802026E-4, 0.016812172, 0.023065975, 0.010544833, -0.022335012, -6.099827E-4, -0.021021983, -0.008277491, 0.015675116, 0.02894076, 0.0059424667, 0.014307943, -0.0091911955, 0.0175296, -0.029644651, -0.02405413, -0.015093053, -0.025759714, -0.0074517718, -0.019817246, 0.015201344, 0.00753299, -3.5453657E-5, -0.0125617515, -0.01003045, 0.01227072, -0.039959367, 0.046456825, -0.003072756, -0.018788483, 0.035898454, -0.0077901813, -0.008791872, 0.0071133627, 0.0173807, 0.023783403, 0.036683563, 0.012439924, 0.002152283, -0.029861232, -0.02632824, -0.02375633, -0.008351941, 0.015296099, -0.015715726, -0.021360392, 0.0030473755, 0.015715726, 0.02394584, -0.029184414, -0.01816581, -0.028074432, 0.002196276, 9.906931E-4, 0.03754989, -0.01256852, -0.001900168, -0.019560056, -0.027343469, -0.009685273, -0.029482216, -0.002267342, -0.006869708, 0.009888318, 0.02632824, 0.0020507602, -0.025759714, 0.014741108, 0.024040595, 0.008710654, 0.0074382355, -0.0121488925, 0.0033502516, -0.04274786, -0.0014407774, 0.031458523, 0.008873091, -0.009096441, -0.020710647, 2.2038903E-4, 0.018043982, -0.016121818, -0.012967843, -0.015269026, -0.04396613, 0.0038984746, -0.0034230098, -0.006764801, -0.0054314686, -0.036900144, -4.092637E-4, 0.03367849, 0.001969542, 0.008866322, -0.015417926, -0.008642972, -0.025516057, 0.03468018, 0.0038409452, 0.018111663, 0.008602363, -0.0202098, -0.019086283, -0.024067666, 0.0043316386, -0.026896767, 0.006906933, -0.0011057523, -0.015431462, -0.0125617515, -0.011458538, 0.0155262165, -0.006720808, 0.019871391, -0.019397618, 2.9145498E-4, -0.03486969, -0.004362095, -0.021766484, 0.0054856143, 0.019546518, 0.0033028743, 0.02569203, -0.021874774, -0.008453463, 0.021915384, -0.0034686949, 0.041854456, 0.0115329875, 0.010240264, 0.0069204695, -0.013746184, 0.007939082, -0.03172925, 0.007783413, 0.010781719, 0.023323167, 0.02588154, -0.012920465, 0.008717422, 0.00783079, -0.0010820637, -0.00783079, 0.0023485604, 0.019208109, 0.015905235, 0.020859547, -0.0054551573, 0.002153975, -0.015025371, 0.009597287, 0.0064906897, -0.008663277, 0.013299484, -0.022389157, 0.0023147194, 0.02588154, -0.03199998, 0.023350239, 0.010111669, -0.021049056, -3.3840927E-4, -0.01581048, -0.033922143, -0.01850422, -0.004287645, 0.053874753, -0.018071055, 0.009746186, 0.025055822, 4.02284E-4, -0.016094744, -0.010950924, 0.0039593885, 0.022768175, -0.019384082, 0.010159046, -0.021062592, -0.009373937, 0.0027969526, 0.0069238534, -0.017610818, -0.0074382355, -0.012250415, -0.024933994, -0.016676808, 0.0013054137, -0.036521126, -0.017705573, -0.033732634, -0.013258874, -0.021725874, -0.008697118, 0.010118437, -0.042720784, -8.9678454E-4, -0.028805396, 0.012670043, 0.04580708, 0.013191193, 2.4619274E-4, 0.0010262261, 0.014876471, -0.026125195, 0.007999995, 0.031241942, 0.0052453433, -0.004612518, 0.01659559, 0.009793564, 0.0027428071, 0.0071336674, -0.0075939037, -0.017705573, -0.035790164, 0.0037698792, -0.0037901837, 0.023661576, -0.006822331, 0.028318087, -0.0059323143, 0.01629779, 0.006253803, -0.020494064, -9.2322276E-5, -0.0036006744, -0.0028071047, -0.00898815, -0.02592215, 0.008866322, -0.016825708, -0.015187807, -0.010883242, -0.014348553, -0.017407773, -0.004379016, 0.028561741, -0.016839245, 0.010395933, -0.022064283, -0.0030135345, -0.023444993, 0.025218258, -0.019194573, 0.016473763, 0.006257187, 0.0024179341, -0.0012538063, 0.03024025, -0.018423, -0.015715726, 0.010727573, -0.008115054, -0.013604052, -0.019248718, 0.006250419, 0.038416218, -0.0026802013, -0.030971216, 0.0023350238, -0.012128588, -0.046294387, -0.02207782, -0.021495756, 0.029076124, 0.03162096, 0.025570204, -0.0037969518, 0.0042808773, 0.021103201, 0.02054821, -0.0058646323, 0.0038578655, -0.012182733, 0.016609127, 0.0030372231, 0.008060909, -0.061292686, -0.022064283, 0.017610818, 0.023918767, 0.014104898, 0.0141455075, -0.006145512, -0.0031505902, -0.0025719104, -0.017583745, 0.035302855, 0.01417258, 0.002372249, -0.043993205, -0.0027901845, -0.011329942, 0.017069364, -0.012094747, -0.0040710634, -0.0020642965, -0.01715058, -0.0065177623, -0.0074517718, 0.0117360335, -0.02326902, -0.016730953, 0.01372588, 0.014538062, -0.012108283, 0.044182714, 0.014578671, -0.033868, -0.015296099, 0.0058003347, -0.02360743, -0.011404392, 0.007857863, -0.025488986, -0.012981379, 0.0014796945, 0.008473768, -0.0019187805, 0.018856164, -0.0035702176, -0.0070795217, 0.001571065, 0.03378678, 0.02148222, -0.038957674, -0.030592198, 0.023864621, -0.017786792, 0.015634507, -0.015160735, -0.0032977983, -0.051113334, -0.010226727, -0.011878165, -0.029482216, -0.03700844, 0.028426377, 0.013928926, 0.008974614, 0.005952619, 0.1964398, 0.0045651407, -0.011952615, 0.032162417, 8.176814E-4, -0.015011835, 0.003871402, 0.025759714, -0.0046666637, 0.004944159, -0.002411166, 0.03792891, -0.023959376, -0.0026260559, 0.022443302, -0.005519455, -0.04039253, -0.008602363, -0.0036412836, -0.0060710623, -0.0060913665, 0.0021099818, -0.018071055, -0.04079862, 0.011289333, -0.0031844312, -0.027357005, -0.04087984, 0.014402698, 0.009908623, -0.021915384, -3.2296934E-4, 0.010159046, -0.008115054, -0.029509287, -0.005079523, 0.014727571, 0.016663272, -0.010829097, 0.030483907, 0.0157428, -0.0191675, 0.007993227, -0.0031641265, 8.299487E-4, -0.006223346, -0.0202098, -0.011884933, -0.019032137, -0.011018606, -0.027045669, 0.0034957677, 0.005553296, 0.033922143, -0.0010905238, -0.03901182, 0.009204732, -0.020751256, 0.0011370551, 0.012338402, -0.022172574, 0.030456834, 0.002847714, 0.027126886, 0.0065583712, 0.023810476, -0.022957684, -0.029780015, 0.0131167425, -0.0024754638, 0.008717422, -0.006680199, 0.015133662, 8.341788E-4, -0.029319778, -0.019966146, 0.012900161, -0.0122842565, 0.021089666, 0.015580363, 0.0017005065, -0.019587127, 0.010253801, 0.00760744, -0.014930616, -0.03752282, 0.010686965, -0.004196275, 0.018815555, -6.472077E-4, -9.4923796E-4, 0.006307949, -0.004450082, 0.015472071, 0.019424692, -0.023431458, -0.019153964, 0.029184414, -0.018477146, -0.010443309, -0.027086277, 0.05966832, -0.010091364, -0.0021421306, -0.032081198, 0.004998305, 0.0026159035, 0.022456838, 0.004419625, -0.03478847, -0.002483924, -0.025042286, 0.010835865, -0.010788487, 0.022091357, -0.0077360356, 0.0038477133, -0.011925543, -0.001134517, -0.027505904, 0.024379004, -0.007126899, 0.009820636, -9.923852E-4, 0.011614206, -0.02290354, -0.0040372224, 0.00314213, -0.0027326548, -0.046186097, 0.0030236868, 0.00505245, 0.018964455, -0.0075939037, -0.0050219935, 0.0036345155, -0.004128593, -0.015756335, 0.01980371, -0.006277492, 0.03478847, 0.009901855, 0.021969529, -0.004060911, 0.014240262, -0.01748899, 0.00628426, -0.01495769, -0.025407767, -0.0027326548, -0.01286632, 0.016121818, 0.008148895, -0.012541447, 0.004862941, 0.0042605726, -0.026165804, -0.038849384, -0.018057518, 0.00673096, -0.035411146, -0.014226725, 0.00372927, -3.8176795E-4, -0.0068866285, -0.013373934, -0.17153288, 0.0022521135, 0.019871391, -3.5453657E-5, 0.0073299445, 0.016487299, 0.025976295, 0.021793555, -0.022362083, 4.3612494E-4, 0.032460216, -0.010328251, -0.03614211, -0.015512681, 0.0066395896, 0.0014103206, -0.0036480518, 0.0011996608, 0.01644669, 0.0021793556, -0.0040338384, -0.03091707, 0.008169199, 0.006321485, -3.8642107E-4, 0.008060909, 0.020832473, 0.04356004, 0.019357009, -0.00285279, -0.002994922, -0.022429766, 0.037685256, 0.0071065943, 6.459387E-4, -0.016568517, -0.008737727, 0.0068460195, -0.020318093, 0.0356548, 0.022159038, -0.00839255, 0.019045673, 0.003465311, 0.014578671, 0.026761405, -0.0078037176, -0.006504226, -0.0075939037, -0.01074111, 0.04959726, -0.019329937, 0.02043992, -0.004893398, 0.018368855, 0.010463614, -0.005512687, 0.011431465, 0.016392544, -0.014876471, -0.017096436, -0.0027935684, 0.017840937, -0.013746184, 0.0048358683, -0.0188697, -0.0067072716, 0.04039253, -0.019289328, 0.024148885, -5.956003E-4, 1.9194151E-4, -0.025962759, 0.009556677, 0.019126892, 0.0071404353, -0.02528594, -0.02345853, 0.008859554, -0.015336707, 0.004412857, 0.044101495, -2.55499E-4, 0.0046632797, -0.024162421, -0.017015217, -0.004940775, 3.3016055E-4, 0.014565134, -0.015715726, -0.003101521, -0.027492369, -6.252111E-4, -0.0034128574, 0.0034957677, 0.007851095, -5.439929E-4, -0.01152622, 0.0029069355, -0.0029069355, 9.754647E-4, -0.011181042, -0.013137047, 0.01432148, 0.053604025, -0.006138744, 0.021401001, 0.007194581, 0.012453461, 0.004521148, -0.016230108, 0.0062301145, 0.018544827, 0.047756314, -8.8917033E-4, 0.023174265, -0.018937383, -0.036277473, 0.003069372, 0.00738409, 0.019397618, -0.0155938985, -0.00839255, -0.002043992, -0.013367166, -0.026991522, -0.09026052, 0.0022639579, 0.034003362, 0.02603044, -0.019912, -0.004825716, 0.0035634495, 0.03614211, -0.008175968, 0.04575293, -0.015160735, -0.023472067, -0.0029018593, 0.020304555, 0.025096431, 0.0037732632, 0.018950919, -0.032920454, -0.03183754, 0.024947532, -0.018747874, -0.024027057, 0.011241956, -0.010903547, -0.021969529, -0.01357698, -0.025705567, 0.016771562, 0.026125195, 0.0155262165, 0.0017258872, -0.032162417, 0.011011837, 0.0051641255, -0.017881546, -0.014578671, -0.019316401, -7.770723E-4, 0.017543135, -0.023133658, 0.006930622, -0.0043384065, 0.002304567, -0.020385774, -0.024554975, -0.011918774, -0.019181037, 0.032270707, -0.013516066, -0.018301172, -0.014538062, -0.010896778, 0.00270389, 6.836925E-5, 0.020074436, -0.010280874, 0.016825708, 0.009908623, -0.006043989, -0.0017580361, 0.010991532, 0.014781716, 0.00335702, -0.0110456785, 0.0035668337, 0.0023282557, 0.0057664937, 0.01372588, 0.015133662, 0.004504227, -0.004240268, 0.0067072716, -0.004571909, 0.025827395, -0.030781707, -9.526221E-4, -0.019966146, -0.02312012, -0.0033451756, 0.00738409, -0.036223326, -0.0187208, 0.007059217, -0.02875125, 0.021455146, 0.039959367, 0.0061962735, -0.024473758, 0.024162421, -0.06123854, 0.02312012, 0.024446685, 0.05717763, 7.533836E-4, -0.01521488, -0.009800333, 0.006057526, 0.0057664937, -0.010206424, -0.009868014, -0.041340075, 9.311542E-5, -0.0892859, 0.039093036, 9.822329E-4, -0.010673428, -3.3756325E-4, 4.3443288E-4, 0.051221624, -0.013983071, 0.006043989, 0.008900164, 4.602366E-4, 0.006138744, -0.0028358696, -0.002482232, -0.026125195, 0.0061184396, 0.0065312986, -0.0013206422, 0.0116683515, 0.0347614, -0.006395935, 6.8443274E-4, -0.01286632, 0.014510989, -0.025746176, 0.01368527, -0.022578666, 0.007620977, 0.0046362067, -0.01021996, 0.02435193, -0.02286293, 5.337877E-5, 0.04415564, -0.015296099, -0.007120131, 0.015296099, 0.023986448, -0.014998298, -0.036521126, -0.020994911, -0.02043992, -0.0053265616, -0.016351936, 2.6057512E-4, 0.008412854, -7.191197E-4, 0.01715058, 0.003285954, 0.02152283, 0.0013730956, 0.006064294, 0.017109971, -0.022064283, 0.0011573597, -0.01204737, -0.0036277473, -0.014741108, 0.022808785, -0.0033384073, 0.050355297, -0.021252101, -8.544834E-4, -0.013901852, 0.024230104, 0.0020152272, -0.017394235, 0.009428082, 0.014226725, -0.0065583712, -0.03162096, -0.0059018573, 0.0116006695, 0.013008452, -0.002189508, 0.007201349, 0.005881553, -0.004822332, -0.02148222, 0.005089675, -0.0013959382, 0.010037218, 8.7563397E-4, -0.0031505902, 0.010950924, -0.0047580344, -0.018138736, 0.0043688635, -0.006950926, 0.02621995, -0.030565124, 0.016311327, -0.018206418, 0.0017952612, 0.010551601, 0.01271742, -0.01447038, -0.020778328, 0.031566817, 0.01719119, 0.004839252, 0.011120128, -0.018842628, -0.0027208105, 8.5575244E-4, 0.028399305, -0.011539755, -0.017840937, -0.010077828, -5.778338E-4, -0.0017614202, -0.028101506, 0.0026260559, 0.024582049, -0.023999985, 0.0107749505, 0.008230113, -0.007986459, -0.0140101435, 0.024257176, 0.01719119, 0.0037428064, -0.0062605715, 0.004998305, 0.041421294, -4.4754625E-4, 0.0093942415, -0.008291027, 0.012683579, -0.026138732, 0.0093265595, -0.0057123485, -0.0033417915, -0.003104905, -0.02133332, -0.015472071, -4.856173E-4, 0.021401001, -0.0039052428, 0.1096446, 0.030104889, -0.012203038, 0.022849394, -8.164123E-4, 0.011059214, 0.0023536363, -0.019736027, -0.0046869684, -0.0482707, 0.0037089656, 0.004744498, -0.0029796935, 0.0054619256, -0.03189169, 0.029455142, 0.0202098, 0.015174272, -0.013644662, -0.022795247, 0.00430795, -0.021658193, 0.010984764, -0.015729262, -0.008663277, 0.010010146, 0.035438217, 0.009401009, -0.0022199648, -0.028318087, 0.009949232, -0.011708961, -0.022321476, -0.015688654, 0.0033824006, -0.0030575276, -0.021874774, -0.013549907, 0.024703875, -0.020074436, 0.011857861, 0.0200609, -0.016812172, -0.016866317, 0.0060203006, 3.113365E-4, -0.0066598943, -0.018301172, -0.05788152 ], - "id" : "71fcfa0a-1fd9-4088-bc72-331eed11b57e", - "metadata" : { - "name" : "E-Adrenaline 8.0 EX1" - }, - "text" : "Chainring SRAM EX1, 18T, steel\r\nCassette SRAM EX1, 11-48, 8 speed\r\nChain SRAM EX1, 8 speed\r\n\r\nComponents\r\nSaddle Bontrager Arvada, hollow chromoly rails, 138mm width\r\nSeatpost Bontrager Line Elite Dropper, internal routing, 31.6mm\r\nHandlebar Bontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width\r\nGrips Bontrager XR Trail Elite, alloy lock-on\r\nStem Bontrager Line Pro, 35mm, Knock Block, Blendr compatible, 0 degree, 50mm length\r\nHeadset Knock Block Integrated, 62-degree radius, cartridge bearing, 1-1/8'' top, 1.5'' bottom\r\nBrake SRAM G2 RSC hydraulic disc, carbon levers\r\nBrake rotor SRAM Centerline, centerlock, round edge, 200mm\r\n\r\nAccessories\r\nE-bike system Bosch Performance CX, magnesium motor body, 250 watt, 75 Nm torque\r\nBattery Bosch PowerTube 625, 625Wh\r\nCharger Bosch 4A standard charger\r\nController Bosch Kiox with Anti-theft solution, Bluetooth connectivity, 1.9'' display\r\nTool Bontrager Switch thru axle, removable lever\r\n\r\nWeight\r\nWeight M - 20.25 kg / 44.6 lbs (with TLR sealant, no tubes)\r\nWeight limit This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\r\n\r\n## Sizing & fit\r\n\r\n| Size | Rider Height | Inseam |\r\n|:----:|:------------------------:|:--------------------:|\r\n| S | 155 - 170 cm 5'1\" - 5'7\" | 73 - 80 cm 29\" - 31.5\" |\r\n| M | 163 - 178 cm 5'4\" - 5'10\" | 77 - 83 cm 30.5\" - 32.5\" |\r\n| L | 176 - 191 cm 5'9\" - 6'3\" | 83 - 89 cm 32.5\" - 35\" |\r\n| XL | 188 - 198 cm 6'2\" - 6'6\" | 88 - 93 cm 34.5\" - 36.5\" |\r\n\r\n\r\n## Geometry\r\n\r\nAll measurements provided in cm unless otherwise noted.\r\nSizing table\r\n| Frame size letter | S | M | L | XL |\r\n|---------------------------|-------|-------|-------|-------|\r\n| Actual frame size | 15.8 | 17.8 | 19.8 | 21.8 |\r\n| Wheel size | 29\" | 29\" | 29\" | 29\" |\r\n| A — Seat tube | 40.0 | 42.5 | 47.5 | 51.0 |\r\n| B — Seat tube angle | 72.5° | 72.8° | 73.0° | 73.0° |\r\n| C — Head tube length | 9.5 | 10.5 | 11.0 | 11.5 |\r\n| D — Head angle | 67.8° | 67.8° | 67.8° | 67.8° |\r\n| E — Effective top tube | 59.0 | 62.0 | 65.0 | 68.0 |" - }, - "121f7ff2-9abb-4321-9964-130fef15f2b8" : { - "embedding" : [ 0.018203663, 0.0060851257, -0.019899912, -0.027705422, -0.0065471125, -5.575518E-5, -0.018258825, -0.0035545407, -0.004147539, -0.052459642, 0.014204373, 0.007267674, -0.0134941535, -0.0030029146, -0.013790653, 0.00866053, 0.00939833, -0.014094047, 0.013535526, -0.023126924, 0.011025627, -0.016865969, -0.014618092, -0.007267674, -0.01276325, -0.014659464, 0.030753156, -0.006829821, 6.210103E-4, -0.029898135, 0.005526604, 2.8335484E-4, -0.0200654, -0.005874818, 0.013563107, 0.0036131511, 0.006326462, -0.008612263, 0.04228214, 0.01708662, 0.018989729, 0.012356425, -0.019568937, 0.008626053, 0.002508175, 0.030946225, 0.030256692, 0.0062230323, -0.0010937712, 0.009136308, -0.013328666, 0.036214255, -0.014824952, 0.0029822288, -0.005330087, -0.008612263, -0.0025736806, 0.013776862, 0.007640022, -0.002590919, -0.0010937712, 0.0057886266, -0.030725574, 0.0038924117, -0.03147027, -0.014411232, -0.003592465, -0.006257509, 0.0056955395, 0.024823176, 0.016797015, 0.027415818, 0.028243257, 0.0037924296, 0.009308691, -0.034062915, -0.009074249, -0.016783224, 0.010605012, 0.011177324, 0.02873972, -0.00438198, -0.0048577576, -0.004168225, 0.03191157, 0.014107838, -0.01203924, 0.011142847, 1.490037E-4, -9.1794034E-4, -0.003820011, 0.01565239, 0.0021272083, 0.013576898, 0.023319995, -0.0072125113, -0.01245296, 0.0039337836, -0.00507496, -0.03933094, 0.005661063, -0.009315586, -0.01543174, -0.019968865, -0.014742208, -0.011804799, -0.016300552, -9.1190694E-4, -7.740004E-4, -0.00823302, -0.021734068, 0.03544198, -0.0107705, 0.019113844, 0.0031511642, -9.653457E-4, 0.022147788, 0.001832433, 0.018424312, -0.020382585, 0.018769078, 0.012473646, 0.015969576, -0.013742385, -0.013190759, 0.045481574, 0.0013178693, -0.02155479, -0.008074427, -0.0044819624, 0.015955785, -0.0119220195, 0.014114733, -9.877555E-4, -0.012494331, 0.024464618, -0.00854331, 0.017762361, -0.031139294, -0.021541, 0.004450933, 0.019072473, -0.0011179048, 0.010067177, -0.030697994, -0.015804088, -0.011080789, 0.009301796, 0.0035786745, -0.009674143, 0.016148854, -0.0018255376, 0.0137217, 0.022216741, 0.03273901, 0.014921486, 0.014066466, 0.016824597, -0.02344411, 0.007991684, -0.0100464905, 0.010398152, 0.00843988, -0.024823176, 0.030063624, 0.031856406, -0.0015178338, -0.014121628, -0.012735668, -0.028298419, -0.015969576, 0.023168297, -0.031746082, -0.008901866, -0.0036165987, 0.024161223, 0.008102008, -0.0043061315, -0.012604657, 0.012294367, 0.016176436, -0.008205438, 0.011866857, 0.01646604, -0.020603236, 0.011308336, 0.0115151955, -0.020341214, 0.008991506, 0.0051128846, 0.028436325, 0.001965168, 1.5029658E-4, -0.0030356676, -0.5992866, -0.041896004, -0.0045371247, -0.012459855, -0.021913348, 0.037869133, 0.0030873825, 0.0017048694, -0.019472402, 0.024395665, -0.029705066, 0.030063624, -0.011473823, 0.00898461, -0.018755289, -0.0385035, 0.01945861, -0.0068953265, 0.00554729, -0.0043061315, -0.019320704, -0.0132459225, -0.014059571, -0.0060885735, 0.0021185891, -0.0037303716, 0.012011658, -0.0019806826, 0.0049163676, 0.008005474, -0.009618981, 0.049591187, 0.021237606, -0.025443755, 0.041702934, -0.055272937, -0.0039751558, 0.03182883, 0.03359403, 0.024037108, -0.022740787, -0.021182442, -0.011329021, -0.010501582, -0.014204373, 0.01816229, 0.03315273, -0.02067219, -0.005898952, -0.03102897, -2.9025014E-4, 0.009219051, 0.030504925, -0.010880825, 0.0014118181, -0.007205616, 0.02218916, -0.0065746936, 0.015555857, -0.0108601395, 0.01352863, 0.032435615, -0.020410167, 4.8137998E-4, -0.02573336, 0.018741498, -0.03800704, -0.018865613, 0.004671584, -0.013438991, -0.011466928, 0.016824597, 0.013404515, 0.0249335, 0.016631527, 0.060899522, 0.025912637, -0.014328488, 0.006733286, 0.042364884, 0.014880114, 0.0025650614, -0.0022151237, -0.027567515, 0.047495008, 0.0019479297, -0.019072473, 0.010487791, 3.4988396E-5, -0.00401308, 0.03610393, 0.005047379, 0.011066999, 0.0149628585, -0.0046612406, 0.019044891, 3.0958265E-6, 0.011673788, -0.019762006, -0.017031457, -0.016838387, 0.010474001, 0.020548074, -0.003214946, 0.018865613, 0.0035890173, -0.008136485, 0.015735134, -0.0051232274, -0.02025847, -0.009156994, -0.011356602, -0.03425598, 4.1501247E-4, -0.015555857, -0.027346864, 0.0020117115, 0.019141426, 0.024823176, -0.01141866, 0.01836915, -0.0056886445, 0.03375952, 0.0034786921, -0.020727351, -0.0018669097, 0.036186673, 0.0024633554, -0.010467106, -0.011556567, 0.029181022, 0.019927494, 0.048267286, -0.001576444, 0.021582372, -6.404034E-4, 0.0053886976, 0.017734779, -0.011673788, -0.02155479, -0.042171817, -0.0052266573, -0.014342279, -0.032711428, -0.013294189, -0.01330798, -0.005474889, 0.008219229, 0.0011722055, 9.750423E-5, -0.016852178, -0.009177679, -0.012121984, 0.00219099, 0.005302506, -0.031442687, -0.02890521, -0.028822465, -0.014921486, 0.0055645285, 0.027815746, 0.010349885, 0.0010523992, -0.0011747913, -0.010184397, 0.0072952555, 0.015666181, 0.022299485, -0.005474889, -0.023609597, -0.007002204, -0.020148143, -0.01834157, 0.0072125113, -0.027222749, 0.013818234, -0.01584546, -0.016204016, 0.0065229787, -0.022313276, -0.005002559, 0.007543487, -0.061285663, 0.017252106, 0.015721343, 0.01750034, 0.01624539, 9.248357E-4, -0.026381519, 0.019320704, -0.011170429, 0.0032235652, -0.020630816, 0.009674143, -0.004616421, -0.004740537, 0.016769433, -0.016217807, 0.013418306, 0.009198366, 0.034807608, -0.011260068, 0.02347169, -0.009853422, 0.023526855, -0.029263765, 0.022947647, -0.012232309, 0.00532664, -0.001361827, 0.0062161367, -0.018093336, 0.008936343, 0.010901511, 0.006133393, 0.0036614183, -0.004444038, 0.031166876, -0.011322126, -0.010625698, 0.008053741, 0.0044302475, 0.022933856, 0.0024685268, 1.7521132E-5, 0.01690734, 0.020134354, 0.032187384, 0.012218518, -0.00843988, 0.010218874, 0.012501227, 0.024423247, -0.017431386, 0.02469906, -0.006991861, 0.02047912, -0.016755644, 0.035221327, -6.481607E-4, 0.022120208, 5.7188113E-4, 0.0050094547, -0.02450599, 0.012521913, -0.004047557, 0.02556787, 0.0119082285, 0.029842973, 0.0013523459, -0.0024581838, -0.00898461, 0.00875017, 0.016107483, 0.017734779, -0.00401308, -0.002201333, 0.019706843, -0.0031287544, 0.008377822, 0.025719568, 0.026133288, 0.03375952, 0.01647983, 0.032435615, -0.017072828, -0.014438814, 0.0064540254, -0.014204373, -0.032380454, 0.007219407, -0.011804799, -0.0013170074, -0.017789943, 0.0045405724, -9.231118E-4, 0.031608175, -0.0112531725, 0.01921038, 0.03908271, 0.01457672, -0.025512708, 0.01014992, 0.03866899, -0.0016669452, -0.012046135, -0.011246277, 0.003408015, -0.008412299, 0.008826018, -0.008805332, 0.014273326, 0.011997868, 0.0050887507, -0.018327778, -0.020561863, 0.025678195, -0.023499273, -2.8680247E-4, -0.020189516, -0.016534993, 0.0013575174, 0.02046533, -0.009253528, 0.025416173, -0.0047439844, -2.036276E-5, -0.009012192, 0.030229112, 0.0030563534, 0.012439169, -0.02347169, -0.01879666, -0.0025357562, -0.014059571, -2.3293275E-4, -0.0068332683, -0.012515018, 0.017776152, -0.0072263023, -0.019789588, -0.015735134, -0.01984475, -0.0034011197, 0.012101298, 0.033869844, -0.010315408, -0.01087393, -0.009722411, 0.01288047, 9.6103613E-4, -0.0034976543, -0.0061920034, 0.029070696, -0.004747432, -0.00208756, -0.009881003, -0.012294367, -0.007453848, -0.032408033, -0.009081145, -0.027002098, 0.023361366, 0.0109773595, -0.0056231385, -0.010763604, -0.02025847, 0.0264091, 0.019320704, -0.0034752446, 0.006805687, 0.010880825, 0.01352863, -0.024561154, -0.0073573133, 0.020106772, 0.02511278, 0.0047164033, -0.027636468, 0.005199076, 0.03944127, -0.007219407, 0.016355714, 0.00792273, -0.023499273, -0.013087329, 0.029043116, 0.005499023, 0.017734779, 0.011349707, -0.01321834, 0.020327423, 0.008081323, -0.024809385, 0.016769433, 0.008212334, -0.008260601, -0.0024943843, -0.019169008, -8.619158E-4, 0.0014833572, -0.03486277, -0.01436986, -0.02490592, 0.015983367, -0.030973807, 0.014604301, 0.011997868, -0.0020720456, -0.004413009, -0.023251042, -0.015941994, 0.0010670518, -0.011749636, -0.029760228, -0.0029598188, -0.02807777, 0.026422892, -0.0022306382, -0.007708975, 0.04159261, -0.028436325, 0.0072331973, 0.008081323, -0.036434904, 0.0027443399, -0.014838742, 0.014755999, 0.0017160744, 0.0014937001, 0.0036131511, 0.008088218, -0.0029718857, -0.005705883, 8.076151E-4, -0.022437392, 0.013790653, -0.0037958773, -0.0018996624, -0.011177324, 0.011363498, -0.02472664, 0.00501635, -0.0050197975, -0.0056989873, -0.034145657, 0.0036889997, 0.014328488, 0.013149387, -0.004902577, 0.007660708, -0.012018554, 0.0025978142, -0.02283732, -0.006867745, 0.008274392, -0.024574943, -0.015679972, -0.0149628585, -0.0011618625, 0.004137196, 0.008412299, -0.007833091, -0.011984077, 0.01457672, -0.05405936, 0.032408033, 0.012487437, -0.008060637, 0.041151308, 0.0014764618, -0.01583167, -0.03102897, 0.024188805, 0.008405403, 0.021072118, -0.0017807181, 0.0137217, -0.026740076, -0.023071762, -0.0018082993, 8.5200375E-4, 0.013452782, -0.030339437, -0.030587668, 0.014562929, 0.018686336, 0.019375868, -0.009818945, -0.014728418, -0.045950454, 0.011425556, -1.9985673E-4, 0.049149886, -0.023126924, 0.01257018, -0.0085915765, -0.034780025, -0.012418483, -9.731029E-4, -0.009253528, -0.011177324, 0.016024739, 0.041454703, 0.0200654, 0.012832203, 0.01161173, 0.025416173, 0.02155479, 0.0016462592, -0.012177147, -0.009729305, -0.051494297, -0.01152209, 0.03254594, -0.0020186068, 0.0034252533, -0.01925175, -0.021085909, 0.026877983, -0.014755999, 0.0069780704, -0.0013532079, -0.050997835, 0.0040096324, -0.02363718, 2.3013153E-4, -0.014245745, -0.03549714, -0.02748477, 0.025871266, -0.014631882, 0.023140715, -0.0010532611, -0.007853777, -0.024147434, 0.03249078, 0.012508122, 0.026078125, 0.0055852146, -0.028656976, -0.014004408, -0.03527649, 0.0042337305, -0.030973807, 0.017983012, -0.013294189, -0.012011658, 0.010094758, -0.008929448, 0.00866053, -0.0065436647, -0.0028477698, 0.0024805937, -0.0200654, -0.021251395, -0.01382513, -0.029898135, -0.028960371, -0.007315941, -0.009860317, 0.037289925, -0.01647983, -0.0029649904, 0.01732106, -0.008074427, 0.0140319895, -0.006502293, 0.031635758, 0.023926783, -0.019196589, 0.00739179, -0.014797371, 0.012742563, -0.002652977, 0.023292413, 0.0401308, -0.020382585, -0.010308513, 0.009777573, 0.0011489338, 0.012108194, -0.017872686, 0.0133631425, 0.033538867, -0.003326995, -0.016728062, -0.014742208, -0.020768723, -0.0021754755, 0.004471619, 0.0044095614, 1.0095189E-4, -0.010280931, 0.0123150535, 0.025278267, -0.011853066, 0.0107153375, -0.0029149994, 8.795851E-4, 0.017196944, -0.015404159, -0.013383829, -0.002027226, -0.008529519, 0.060127247, -0.004974978, 0.0039096503, 0.015018021, -0.0055645285, -0.027622677, -0.01751413, 0.009674143, 0.03149785, -0.021775441, 0.009053564, -0.009012192, -0.0049405014, 3.5791053E-4, -0.022658043, -0.010784291, -0.014769789, -0.0021323797, -0.019734424, -0.005126675, -0.012190937, -0.006767763, -0.007902044, -0.010087863, -0.034090493, -0.013225236, -0.010067177, -0.0032942423, -0.056238282, 0.0061713173, -0.028188094, 0.025802312, 0.024809385, 0.01857601, -0.026078125, -0.005705883, 0.03398017, -0.0196241, 0.010763604, -0.0015066288, 0.008315763, -0.032435615, 0.026533216, 0.0196241, -0.009756887, 0.021320349, 2.1375512E-4, -0.0044095614, -0.019100055, 0.028767303, -0.012115088, 0.0022271904, -0.0036165987, 0.014397441, -9.1190694E-4, 0.003830354, -0.005305954, -0.02573336, 0.022920065, 0.017045246, 0.0048474143, -0.0013773415, -0.020024028, 0.02915344, -0.018769078, -0.018755289, -0.010922197, -0.019375868, 0.016231598, 0.015928203, 0.023113133, -0.014052675, 0.028601814, -0.048736166, -0.008577786, -0.02890521, 0.043440558, -0.011039417, 0.0012359873, 0.022244323, 0.002937409, -0.005505918, 0.02365097, -0.019775797, -0.0321598, 0.011666892, -0.019141426, -0.018741498, -0.02134793, -0.0033511287, 0.043550882, 0.00854331, -0.022892484, -0.011246277, 0.0013075263, -0.05132881, -0.02978781, 0.0034511108, 0.014218163, 0.007412476, 0.012390901, -0.012611552, 0.0047681183, 0.013011481, 0.041758098, -0.026091915, 0.009570713, 0.002447841, 0.024257759, 0.010625698, 0.008901866, -0.035966024, -0.016217807, 0.010294722, 0.034035333, 0.009612085, 0.010156816, 0.0067401817, 0.003380434, 0.014728418, -1.2864094E-4, 0.031222038, 0.0071297674, -0.0015531722, -0.050915092, -0.0079503115, 0.007853777, 0.018079545, 0.01497665, -0.0049129203, -0.0040372135, 0.0011541053, 0.0041303006, -6.205794E-4, -6.438511E-4, 0.012287471, -0.009825841, 0.018713916, -0.012549494, -0.015638601, 0.045123015, 0.00845367, -0.012901156, 0.0030718679, 0.009060459, -0.022754578, -0.011549672, 0.0041544344, -0.045895293, -0.01320455, -0.015335206, 0.015528276, -0.013535526, 0.0043130266, -0.01497665, -0.006695362, -0.017900268, 0.034780025, 0.009846526, -0.03800704, -0.032876916, 0.026422892, -0.017403804, 0.030146368, 0.015321416, -0.01922417, -0.040682428, 0.032021895, 0.011639311, -0.017914059, -0.019058682, 0.03734509, -5.886885E-4, -0.01140487, -0.0077020796, 0.1867806, -0.00174107, 0.011563462, 0.032214966, -0.0010765329, -0.011756532, 0.011784113, 0.024106061, -0.0095362365, -0.0129839, 0.018038174, 0.01382513, -1.13557406E-4, -0.0018151947, 0.02702968, 0.0057679405, -0.060347896, -0.02998088, -0.009729305, 0.0011782389, 0.0060472013, 0.008005474, -0.03298724, -0.038586248, 0.009529341, 0.0059127426, -0.007660708, -0.01689355, 0.020768723, 0.016797015, -0.019582728, -0.0020048162, 8.722588E-4, -0.013280399, -0.01320455, 0.0042095967, 0.0030718679, 0.006460921, -0.004216492, 0.01708662, 0.0014514662, -0.011439347, 0.023375157, -0.01245296, -8.584681E-4, -0.0041130623, -0.019899912, 0.011639311, -0.009639666, -0.02323725, -0.03775881, -0.017183153, 0.03398017, 0.03668314, -0.019348286, -0.017789943, 0.008626053, -0.005054274, -0.0049129203, 0.01181859, -0.02429913, 0.04666757, -0.015445531, 0.01152209, -0.004740537, 0.0024805937, -0.025857475, -0.014480186, 0.0012273681, -0.0032890707, -0.025816102, -0.008481252, -2.4998926E-6, -0.007708975, -0.018741498, -0.03315273, 0.022961438, -0.012046135, 0.02068598, 0.033263054, 0.013590689, -0.036186673, 0.008081323, 0.011653102, -0.010308513, -0.033235475, 9.308691E-4, -0.0012808068, 0.01584546, -0.009894794, 0.014190582, -0.0023220011, 0.012321948, 0.00292879, -0.016383296, -0.003992394, -0.018700125, 0.021706488, -0.014493976, -0.009563818, -0.020451538, 0.05530052, -0.01046021, -0.013570002, -0.029539578, -0.01341141, -8.718278E-4, -0.012053031, 0.0065712463, -0.033621613, -0.0034028436, -0.0489844, 0.014480186, 0.0015523104, -0.0043888753, -0.005099094, 0.0112531725, 0.006936698, 0.009336272, 0.0023168297, 0.031139294, -0.008715693, 0.0078193005, 0.011266964, -0.002539204, -0.029346509, -0.008819123, 8.102009E-4, -0.006205794, -0.022864902, 0.026284985, 0.010501582, -0.0042371782, -0.0031684025, -0.03398017, -0.008701902, -0.005833446, -0.013570002, 0.01203924, -0.0048681004, -0.005905847, 0.015514485, -0.012701191, -0.02406469, -0.0027995026, -0.04415767, -0.0100602815, -0.007309046, -0.022989018, -0.01628676, -0.025264475, -0.01361827, 0.0059748003, -0.0032597657, 0.019403448, 0.021292768, 0.0042027016, -0.038144946, -0.005602453, 0.0117910085, -0.045950454, -0.013790653, 0.0049715303, -0.0029615427, -0.017583083, -0.033263054, -0.1749758, -0.009481074, 0.030173948, 0.01945861, 0.0039751558, 0.009660352, 0.015955785, 0.0075021153, -0.010439524, -0.0025822998, 0.007095291, 0.0027150349, -0.034780025, -0.030973807, -0.014259535, -0.006092021, -0.022092625, 0.0074262666, 0.010798081, 0.011535881, -0.0012161632, -0.033290636, 0.01246675, -0.0054162787, -0.014259535, 0.034090493, 0.00864674, 0.03549714, 0.018741498, -0.017596873, -0.009012192, -0.034338728, 0.025416173, -0.008398508, 0.014562929, -0.003992394, 2.1763373E-5, 0.014080256, -0.0224236, 0.030642832, -0.0041613295, -0.005271477, 0.018631171, -0.0124460645, -0.003919993, 0.0041096145, 0.01013613, 0.0019324153, 0.011708264, -0.007488325, 0.047908727, -0.02787091, 0.017555501, -0.011363498, 0.032408033, -0.002846046, -0.0052059717, 0.010467106, 0.010267141, -0.009143203, -0.030642832, -0.030560087, 0.01774857, -0.009487969, 9.188022E-4, -0.023940574, -0.009963747, 0.0052404483, -0.032435615, -5.9730763E-4, -0.02068598, -0.0069263554, 0.01013613, 0.013797549, 0.011432451, 0.009122517, -7.416786E-4, 0.0015669629, 0.020010237, 0.0070746047, -0.026726285, 0.03668314, -0.0040165274, 0.006164422, 0.015266253, -0.010267141, -0.0028443222, 0.0051335706, 0.011308336, -0.041923586, 0.006585037, -0.0392482, -0.0056851967, -0.0030218768, 0.016741853, 0.01628676, 0.007881358, -0.027719213, 0.017638246, 6.253199E-4, -0.014866324, -0.011728951, -0.019858541, 0.020203307, 0.06233375, 0.023457902, -0.002916723, 0.037648484, 0.0075228014, 0.013370038, -0.009625875, 0.005588662, 0.03182883, 0.03740025, 0.010508478, 0.02007919, -0.04076517, -0.027153796, 0.029594742, 0.016686691, 0.035607465, -0.018686336, -0.027622677, -0.0020306737, -0.014356069, -0.02407848, -0.08814985, -0.031222038, 0.023030391, 0.005333535, -0.012059926, 0.014466395, 1.2928738E-4, 0.008508833, -0.008322659, 0.029622322, -0.02664354, -0.015376578, 0.004688822, 0.0059610098, 0.020175725, 0.007205616, 0.008177857, 0.004268207, -0.0031787455, 0.03293208, -0.006233375, -0.028050188, -0.009150098, -0.006436787, -0.018355358, -0.014066466, -0.0144250225, 0.024230177, 0.04178568, -0.0030080862, 2.1429382E-4, -0.028601814, -0.008088218, -0.0023185536, -0.010949778, 0.0059954864, -0.012942527, -0.013576898, -0.0021478941, -0.04437832, -0.007350418, -0.013666537, 0.013797549, -0.021458255, -0.020230887, -0.018355358, 0.0040165274, 0.049591187, 5.6757155E-4, -0.017872686, -0.0010894616, -0.014466395, 0.005530052, -0.008943238, 0.023057971, -0.0053369827, 0.015969576, -0.0011808247, -0.011135953, 0.0059713526, -2.4241382E-4, 0.012232309, -0.011880647, 0.025154151, 0.021499628, -0.0117772175, -0.0021634088, 0.018093336, 0.03149785, -0.0067022573, -0.008612263, 0.017059037, 0.0010386086, 0.029208602, -0.020327423, 0.010480897, -0.0069677276, -0.027071051, 0.0149628585, 0.003347681, -0.021389302, 2.3939712E-4, 0.0149628585, -0.021816812, 0.002251324, 0.04415767, 0.010411943, -0.017803732, 0.017638246, -0.02643668, 0.017983012, 0.03359403, 0.036793463, 0.0051439134, 0.004881891, -0.009943061, 0.004399218, 0.028601814, -0.001811747, -0.0171142, -0.05130123, -0.01857601, -0.080537416, 0.030256692, 0.006385072, -0.011859962, 0.003971708, 0.009329377, 0.010894616, -0.0096672475, 0.014604301, 0.024050899, -0.005957562, 0.012287471, -0.0033649192, -0.004892234, -0.0028822464, -6.3393905E-4, 0.0088673895, -0.0076744985, 0.030229112, 0.031553015, -0.010673965, 0.020010237, 0.0068436116, 0.022051254, -0.011204906, 0.0038648306, 0.0034511108, 0.0070815003, 0.009067355, -0.011846171, 0.046419337, 0.0028908656, -0.0094052255, 0.027319284, -0.023375157, -0.0053404304, 0.0034666255, 0.009770677, -0.025995381, -0.017072828, -0.0396895, -0.012914946, 0.0031149636, -0.0035373024, 0.010039595, 0.010018909, 0.030891063, 0.012053031, 0.013535526, 0.0171142, 0.013611374, 0.013004586, 0.0021375513, -0.016507411, 0.0025633376, -0.017348642, -0.009425911, -0.0048094904, 0.01246675, -0.005847237, 0.05152188, -0.0023892305, -0.00854331, -0.034145657, 0.0149490675, -0.026946936, -6.8651594E-4, -6.1368407E-4, 0.007984788, -0.02133414, -0.036490068, -0.021499628, 0.014811161, 0.011859962, 0.0048405193, 0.0107153375, -5.236139E-4, -4.298805E-4, -0.040268708, 0.02174786, 0.02347169, -0.028684558, -0.019555146, -0.009943061, 0.013859606, -0.01392856, -0.019389657, 0.01065328, 0.008798436, 0.009494864, -0.039137874, 0.01628676, 0.0070504714, -0.0056886445, 0.0014592235, -5.5334996E-4, -0.023940574, -0.01649362, 0.0410134, 0.045123015, -0.005795522, -0.004492305, -0.005509366, -0.0068125827, 0.00950176, 0.032049477, -0.008370927, -0.0071711396, 0.01921038, 0.002025502, -0.011901334, -0.012273681, 0.008398508, 0.015307625, -0.01585925, 0.018548429, -0.013149387, -0.0069780704, -0.023844039, 0.036407325, 0.028629396, 2.30347E-4, 0.009529341, 0.008122695, 0.025374802, -0.0027460638, 0.025167942, -0.0122461, -0.0010024081, -0.029677484, 0.0013549316, -0.018934567, 0.005126675, -0.009515551, -0.03141511, 0.0014057846, 0.0022289143, 0.0103223035, 0.022575298, 0.10883583, 0.012749459, -0.026340147, -0.0014859429, 0.015004231, 0.015983367, 0.01606611, -0.033483706, -0.015873041, -0.016121274, 0.02046533, 0.008612263, -0.023264831, -0.00898461, -0.014549139, 0.0255265, 0.0041199573, 0.0012868403, -0.009432807, -5.43007E-4, 0.026795238, -0.0014462947, 0.013390724, 1.082243E-4, -0.011501404, 0.007164244, 0.02490592, 0.0067022573, -0.003882069, -0.02472664, 0.032352872, -5.641239E-4, -0.035883278, -0.021651326, -0.001710041, -0.027002098, -0.01813471, 0.028146723, 0.045757387, -0.017776152, 0.0131011205, 0.012811516, -0.018782869, 0.0029770571, -0.00501635, -0.011425556, -5.5378093E-4, -0.033731937, -0.06277505 ], - "id" : "121f7ff2-9abb-4321-9964-130fef15f2b8", - "metadata" : { - "name" : "Hyperdrive Turbo X1" - }, - "text" : "4 | 29.4 |\n| G — Bottom bracket drop | 6.5 | 6.5 | 6.5 | 6.5 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 |\n| J — Trail | 9.5 | 9.5 | 9.5 | 9.5 |\n| K — Wheelbase | 112.2 | 112.7 | 114.0 | 115.2 |\n| L — Standover | 43.3 | 43.3 | 43.3 | 43.3 |\n| M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 |\n| N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 |\n| Stem length | 8.5 | 9.0 | 9.0 | 11.0 |\ntags: [bicycle, city bike, professional]" - }, - "63cd17d2-26ba-4c2b-9059-3d73f3d63239" : { - "embedding" : [ 0.021528456, -0.008446603, -0.0076963897, -0.012612969, -0.0070600472, 0.002392981, -0.010630261, -0.03049083, 1.28943E-4, -0.018139098, -0.012907696, 0.005740475, -0.025493871, -0.013671306, -0.0018604632, 0.011273301, 0.011822565, 0.004849596, 0.018098908, -0.007749976, -6.405285E-4, 0.013691401, -0.010904893, -0.009303991, -0.007508836, 0.01156133, 0.02848133, -0.007234204, 0.008024608, -0.014012922, 0.020831829, 0.02388627, -0.032500334, -0.0027865083, -0.025346508, 0.0034061044, 0.015915249, 0.009511638, 0.027891876, -0.012438812, 0.021461472, 0.0015816449, -0.0044610924, -0.020992588, -0.007863848, 0.020068219, 0.00282, -0.0029573159, 0.013369882, 0.019679714, -0.025252732, 0.020523705, -0.0111795245, 0.008727933, 0.001607601, -0.0105498815, 0.008855202, 0.020697862, 0.03150898, 0.031803705, 0.01816589, 0.009411164, -0.03440266, -0.0029874584, -0.019652922, -0.008145178, -0.016142992, 0.005341924, 0.0021819833, 0.023872875, 0.017348694, 0.02952627, 0.019934252, 0.005934727, -0.0023075773, -0.032366365, -0.007435154, -0.0072476007, 0.03646575, 0.008004513, 0.012834014, -0.030892732, 5.706146E-4, 0.0129679805, 0.027248835, 0.0123383375, 0.0020279216, 0.01796494, -0.039386224, 0.013410071, 0.00227576, 0.024971401, -0.0027647386, 0.0065643704, 0.013222517, 0.0052548456, -0.031267837, 0.008560475, -0.019184038, -0.006738527, 0.03327734, 0.009752779, -0.013316294, -0.018634774, -0.028293777, -0.02485083, 4.3204275E-4, -0.00423, 0.0034362471, -0.0027161757, -0.013423468, 0.013691401, 0.01216418, -0.005660095, 0.03649254, -0.017522851, 0.02360494, 0.018313253, 0.017804181, -0.02651202, 0.011146033, 0.030276485, -0.005660095, -0.038448457, -0.0036673397, 0.009926936, -0.003630499, -0.017214727, 0.02848133, -0.024207791, -0.0035668646, -0.009310689, 0.012633064, 0.0102953445, -0.025560854, 0.006912684, -0.020121805, 0.028990403, -0.017670214, -0.02388627, 0.016089406, 0.012016817, 1.0122732E-6, -0.0021451425, -0.0023712113, 0.008681045, -0.004146271, 0.014655962, 0.019907458, 0.0051510213, 0.034349073, -0.017710404, 0.012813919, 0.01848741, 0.0059849643, -0.027155058, 0.004384062, 0.0063433256, -0.009357577, -0.0074150595, 0.0050940854, 0.014602375, 0.008078195, -0.0039218767, 0.021180142, 0.018433824, 0.0014945664, -0.0034931828, 0.0022171496, -0.009786271, -0.025507268, 0.020885415, -0.023872875, 0.018862518, -0.021649025, 0.0065074344, 0.024073824, -0.0069394773, -0.028240189, -0.021019382, 0.041583277, -0.009920238, 0.022010736, 0.022064323, -0.009712589, -0.00223557, 3.0561164E-4, -0.026525415, 0.015232019, 0.0020664372, 0.0022941804, 0.010020712, 0.013296199, 0.0041630166, -0.600171, -0.029338717, -0.0075423275, -0.005007007, -1.1554632E-4, 0.020282565, 0.0030594654, 0.027047886, -0.0043204273, -0.0048194537, -0.031562567, 0.02119354, -0.0065811165, -0.020965796, -0.03429549, -0.021890165, 0.021005986, -0.013175629, 0.015486556, -0.02344418, -0.039171875, -0.014749738, -0.034938525, 0.0040424466, 0.0029723872, 0.0016469536, 0.010456105, -0.011835962, 0.0017683611, 0.020925606, -0.02992817, 0.035260048, 0.01760323, -0.005998361, 0.03592988, -0.044718098, 0.015607126, 0.029660238, 0.013624418, 0.034429453, -0.016303753, 6.0578086E-4, -0.012639763, -0.015901852, -7.238391E-4, 0.009364275, 0.04825482, -0.012090499, -0.0068457006, -0.034429453, 0.014843515, 0.0066681947, 0.0050739907, -0.0035032304, 0.007723183, -0.019719904, 0.03702841, 0.006855748, -0.008989168, 0.020898812, 0.0152722085, 0.012907696, -0.023270024, -0.020135202, -0.013222517, 0.023658527, -0.030571211, -0.037001614, 0.05232741, -0.005700285, 0.011715392, 0.018273065, 0.005144323, 0.025962755, 0.011715392, 0.019800285, 0.043324847, 4.3999703E-4, -0.0065241805, 0.012412019, 0.025024988, 0.0059514726, -0.0034044299, -0.03199126, 0.022385843, -0.0058108075, 0.0014861936, -0.020818433, 0.013550736, -0.0035903088, 0.030758765, 0.0027161757, 0.0015540143, -0.018098908, 0.014227268, 0.024355154, 0.005388812, 0.025868978, 0.005007007, -0.024931211, -0.01736209, 0.022265272, 0.018420428, 0.033973966, 0.017174536, 0.0116819, -0.010355629, -0.015205226, 0.018902708, -0.03362565, 0.023149453, -0.025547458, -8.46921E-4, 0.0069662705, -0.026900522, -0.028025843, 0.0021200238, 0.013369882, 0.024797244, -0.018326651, 0.01123981, -0.016089406, 0.013430166, -0.025426889, -0.025212541, 0.011990024, 0.012023515, 0.011474252, -0.013423468, -0.0024917815, 0.016451117, 0.0010667102, 0.025627838, -0.018045321, 0.008647554, 0.023270024, 0.010181473, 0.010924988, 0.01639753, -0.029901378, -0.03601026, 0.009364275, -0.0030795606, -0.035715535, -0.0063466746, -0.01921083, -0.0019910808, 0.004447696, -0.02195715, -0.02119354, -0.014173682, -0.016209977, -0.011547933, 0.0025520665, -0.022466224, -0.026337862, -0.015031069, -0.009491544, -0.022908313, -0.021608835, 0.010255154, 0.012036912, -0.0237657, -0.006855748, -0.006571069, -0.0045649167, 0.0055127316, 0.026203895, -0.0028953564, -0.034992114, -0.014039715, 0.0023846081, -0.014213871, 0.0037577671, -0.008192066, 0.006272993, -0.020336151, -0.014870308, 0.0049333256, -0.015178432, 0.011534537, 0.033438098, -0.0423067, 0.015124845, 0.039948884, -0.00825905, 0.03199126, 0.0036371972, 6.7988125E-4, 0.024247982, -0.011675201, 0.0051778145, -0.011286698, -0.0025135512, -0.009437957, -0.003476437, 0.03161615, -5.0420687E-5, 0.01740228, 0.0096523035, 0.021354299, -0.0059280284, 2.6416566E-4, 8.0003263E-4, 0.015071259, 0.0023192994, 0.01176228, -7.661223E-5, 0.040136438, 0.025091972, 0.020121805, -0.035045702, -0.011541235, 6.689964E-4, -0.021742802, -0.0022740855, -0.012820617, 0.03496532, -0.015325796, -0.012398622, -0.0066681947, 0.005047197, 0.04233349, -0.010784323, 0.0076829926, 0.024234584, 0.01921083, 0.03319696, -0.0035266746, -0.012934489, -0.007629406, 0.03576912, -6.1457243E-4, -0.023189643, 0.018366842, 0.015138242, 0.027289025, -0.014146889, 0.049380142, -0.021582043, 0.029472684, 0.05905254, 0.023819286, -0.03199126, 0.009156627, 0.020322755, 0.019117054, 0.019813681, 0.013456959, 0.040672302, -0.03271468, -0.0010625237, -0.017549643, -0.016209977, 0.003992209, -0.00596152, -0.002731247, 0.0059816153, -0.018112304, 0.0047424226, 0.0058108075, 0.024783848, 0.037832208, 0.0018420428, -0.013209121, -0.016223373, -0.013959335, 0.013403373, 0.0036070547, -0.031321425, -0.0014175356, 0.0022422683, -0.0017465914, -0.008044703, 0.029311923, 0.0023511164, -0.005187862, -0.009404466, 0.02840095, 0.029660238, -0.016303753, -0.025949359, 0.00858057, 0.00922361, 0.004963468, 1.9770561E-4, -0.009900142, -0.015499952, -0.0063299285, 0.04943373, 0.02936551, 0.0346438, 0.0049768644, 0.015191829, -0.051336057, -0.016384132, 0.02920475, 0.014026318, 0.013262708, 0.015299003, -0.005063943, 0.006694988, -0.013584228, -0.021649025, 0.01768361, -0.015124845, -0.0019023278, -0.027208647, 0.026498621, -0.0058509978, -0.020336151, -0.04399468, -0.026699573, -0.027704323, 0.003978812, 0.010127886, 0.0018052019, -0.027007695, 0.021166746, -0.011012066, -0.0073346794, -0.019157244, -0.007307886, -0.025855582, 0.053291973, 0.011152731, 1.3386208E-4, 0.01736209, -0.020604085, -0.0070466506, -0.025694821, -0.012271354, 0.011902945, 0.029311923, -0.0065040854, 0.029954964, -0.01164171, -0.010744133, -0.013195724, -0.019626128, 0.016129596, -0.005181164, 0.004789311, -0.013168931, 0.0039386223, -0.011226413, -0.005362019, 0.022131307, 0.02952627, -0.018554395, 0.0237657, 0.013865558, 0.0054055583, -0.01840703, 9.1348577E-4, -0.0074820425, 0.022693967, -0.015057862, -0.039948884, 0.015861662, 0.0071270308, 0.009518337, 0.0037410213, 6.359234E-4, 0.0050170547, 0.021890165, -0.0064672446, -0.0010868052, 0.005418955, -0.02038974, -0.007810261, 0.0028769358, 0.014548789, -0.020161996, 0.045897007, 0.004648646, -0.021247126, 0.009250403, 0.0068055107, 0.0111862235, 0.0010181472, -0.03472418, -0.03440266, -0.02541349, -8.590618E-4, -0.022359049, 0.018634774, -0.011708694, -0.023618337, 0.0014418171, 0.003915178, 6.6564727E-4, -0.008694442, 0.0074150595, -0.0146425655, -0.015312399, -0.043485604, 0.006912684, -0.009377672, 0.0010332186, 0.0045783133, -0.027409596, 0.007488741, 0.017938146, -0.0035434205, 0.0056667933, 0.009766175, -0.008533682, 7.971021E-4, -0.0012969655, 0.02751677, 0.004685487, 0.020282565, -0.0047792634, 0.02968703, -0.0077633727, 0.040297195, -0.01172209, -0.018755345, -0.005861045, 0.012740238, 0.012659857, -8.9590263E-4, -0.004645297, 0.010094394, -0.022345653, -0.0041228267, 0.008794917, 0.045977388, -0.0067552733, 0.0115680285, -0.015124845, 0.02324323, -0.008835107, -0.024395345, -0.011380475, -0.028910024, 2.6835213E-4, -0.026766555, 0.014146889, 7.896712E-5, -0.0023594892, -0.014187078, 0.005248147, 3.309397E-4, -0.037778623, 0.027972257, -0.007408361, -0.0064839902, 0.016142992, -0.0044610924, 0.013269406, -0.023149453, 0.025252732, 0.047263466, 0.036117435, -0.012177577, 0.009565226, -0.012914394, -0.026873728, -0.018822327, 5.065618E-4, 0.02485083, -0.012519192, -0.019800285, 0.028025843, 0.004785962, 0.018326651, -0.008319335, -0.02312266, -0.012432114, -0.004008955, -9.813064E-4, 0.040591925, -0.011507743, -0.0040993826, -0.021367695, -0.019733302, -0.017670214, -0.021300713, -0.010563278, -0.025681425, 0.011233112, 0.04774575, 0.015392779, -2.2271971E-4, -0.0024767101, 0.01776399, 0.009618812, -0.0013086876, -0.04648646, -0.0043639666, -0.03207164, 0.022868123, 0.035608362, 0.008841805, -0.01176228, -0.020470118, -0.022747554, 0.027489977, 0.013048361, -0.01740228, -0.021300713, -0.033411305, -0.011956532, -0.028856438, -0.020202186, -0.007368171, -0.030865937, -0.0090092635, 0.03582271, 6.618794E-4, 0.0110656535, 0.0054122563, 0.0034077791, -0.021568647, 0.042279903, 0.016973587, 0.0038214014, -4.1739014E-4, -0.020336151, -0.038850356, -0.032500334, 0.019572541, -0.008667649, 0.012030214, 0.015325796, -0.019304607, 0.009699192, 0.01180247, -0.018862518, -0.017094156, 0.007549026, 0.001123646, -0.0034328979, -0.029606652, -0.019411782, -0.025024988, -0.022493016, 0.01844722, -8.54038E-4, 0.022251876, -0.04120817, -0.0044175535, 0.011842661, 0.008567173, 0.016812826, 0.002006152, 0.023752304, 0.031053491, -0.0038214014, -0.011588124, -0.030892732, -0.00878152, -0.015888456, 0.02751677, 0.011346984, -0.012914394, -0.011172826, 0.011192922, -0.0064103086, -0.0028300474, -0.016062614, 0.007260998, 0.03367924, 0.027289025, -0.0072141094, 0.0047926605, 0.0028434442, 0.0049132304, 1.4508703E-5, 0.014495201, 0.0037242756, -0.0030510926, -7.3639845E-4, 0.028427742, -0.013550736, 0.007408361, 0.005268242, -0.016611876, -0.0036874346, -0.013878955, -0.008098289, -0.009350879, -0.009216912, 0.05130926, -0.009283896, 0.0045749643, 0.030598005, -0.003230273, 0.0043137292, -0.019344797, 0.011708694, 0.024864228, -0.017804181, -5.350297E-4, -0.006993064, -0.019920856, -0.03024969, 0.0063064843, -0.010308741, 0.0035434205, -0.02219829, -0.0067653204, -0.0012626366, 0.0022087768, -0.0041864607, -0.026002945, -0.014696152, -0.024194393, -0.012244561, 0.0011454157, 0.022988694, -0.0117019955, -0.020604085, -0.022814536, -0.004353919, 0.02063088, 0.01675924, -0.0013530641, -0.008305938, 0.027945463, -0.0322324, 0.0030594654, 0.013430166, 0.009585321, -0.0068791923, 0.02223848, -3.4747625E-4, -0.02400684, -0.0056868885, 0.010523087, -0.02191696, -0.03582271, -0.012840712, -0.015138242, 0.013041663, -0.010724038, 0.0043170783, 8.0631237E-4, 0.006540926, -0.017697006, -0.031428598, 0.008279145, 0.0029623397, -0.01756304, 0.0021669122, -0.030517625, 0.0062662945, -0.013034964, 0.008192066, 0.0024448931, -0.0031164014, -0.015111449, 0.0044744895, -0.0116952965, -0.016544893, -0.0020731355, -0.040913444, -0.003459691, -0.019438574, -0.00596152, 0.0013312945, 0.0046151546, -0.005978266, -0.022131307, -0.00628304, 0.026846936, -0.007924133, -0.009404466, -0.012887601, -0.0034077791, -0.036304988, -0.014682755, 9.536758E-4, 0.04112779, 0.017750593, -0.01123981, -0.0010265202, 0.0013848812, -0.04557549, -0.019693112, -0.0032738124, 0.022533206, 0.021086365, 0.00793753, -0.0016720725, -0.001647791, 0.014964085, 0.02888323, -0.01953235, -0.015191829, -0.0048596435, 0.019666318, -0.001974335, -0.004206556, -0.056909073, -0.0036238004, 0.027784703, 0.0189295, 0.019920856, 0.0053452733, -0.01824627, 0.0037276247, 0.02727563, -0.010710641, 0.015553539, 0.028776057, -0.008493491, -0.040833063, -0.009766175, -0.019987838, -0.010355629, -0.0020228978, -0.00801791, -0.003630499, -0.024140807, 0.0016017399, -0.012988076, 0.0028250238, -0.012418717, -0.011983326, 0.025507268, 0.00789734, -0.023176247, 0.019894062, 0.0011588123, -0.03432228, -0.009759477, 0.025145559, 0.002868563, -0.014856912, -0.01728171, -0.049969595, -0.0022992042, -0.0027764607, 0.020778242, 0.011293396, -0.009571924, -0.0035434205, 0.0017666864, -0.040350784, 0.028025843, 0.02320304, -0.018058717, -0.033652447, 0.011902945, -0.005445748, 0.021247126, 0.0029740618, 0.01667886, -0.04337843, 0.024958005, -0.015098052, -0.013410071, -0.028910024, 0.014133492, 0.0043773632, -0.014441615, 0.0036974822, 0.20695183, 0.0031884084, 8.5068884E-4, 0.030464038, 0.013450261, -0.009196817, 0.009424561, 0.004785962, -1.8692548E-4, -0.010007316, 0.0058710924, 0.023578146, 0.0062696435, -0.002969038, 0.02115335, -0.015674109, -0.033170167, -0.009712589, -0.003267114, -0.0016218349, 0.013597624, -0.009424561, -0.029901378, -0.02380589, 0.0016662114, 0.016692257, -0.03863601, -0.011849359, 0.012365131, 0.004116128, -0.023980048, -0.011789073, 0.015808076, 0.01953235, -0.025668029, 0.007729881, 0.013651212, 0.011387173, -0.012371829, 0.042762186, -0.006919382, 0.0022958552, 0.007013159, -0.0068155583, -0.0010884798, 0.0017717102, -0.030812351, 0.0010131235, -0.019867267, -0.012077102, -0.02731582, -0.0063500237, 0.011346984, 0.033170167, 0.0043639666, -0.029633444, 0.0011897922, -0.0018319952, 0.016062614, -0.019585937, -0.038930736, 0.029954964, -0.014709549, 0.035956673, -0.024931211, 0.024958005, -0.007428456, -1.985429E-4, 0.03576912, 0.028427742, -0.016196579, -0.00817867, -0.0081250835, -0.027489977, -0.027168456, -0.031857293, 0.03000855, 0.0041395724, 0.012512494, 0.0326343, -0.0035367222, -0.014870308, 0.0059112827, 0.015392779, 0.01675924, -0.033411305, 0.0070801424, -0.0024800594, 0.009645605, 0.007816959, -0.018098908, 0.013034964, 0.0048295013, -0.019786889, -5.4382125E-4, -0.009752779, -0.006195962, 0.023832684, -0.011340285, -0.0023628385, -0.019264419, 0.05417615, -0.006450499, -0.0049098814, -0.028749263, -0.003613753, 9.662351E-4, 0.024381947, 0.013678005, -0.035260048, 0.0071069356, -0.027222043, -0.0061892634, -0.020764846, 0.019157244, -0.016370736, 0.0037410213, -0.020925606, -0.0017901306, -0.014374631, 0.016719049, -0.019907458, -0.0012492399, -0.0043606176, 0.015808076, -0.009257102, -0.02223848, 0.0075155343, -0.009437957, -0.031803705, 0.0066045607, 0.018393634, 0.026659383, 0.002218824, 0.0081183845, -0.016464513, 0.008815012, 0.0020111757, 0.014669359, -0.026900522, 0.014106698, 0.02627088, 0.0025637886, 0.008104988, 0.012807221, -0.028910024, 0.030839145, 0.011340285, -0.026324466, -5.4790304E-5, -0.01575449, -0.0020664372, 0.012237862, -0.019894062, 0.017375486, 0.01627696, -0.019652922, -0.01579468, -0.0036974822, -1.4160703E-4, -0.029847791, -0.0037678147, -0.007642803, 0.018755345, -0.027181853, 0.005817506, -0.16869092, -0.0022405938, 0.035233255, -0.026927317, 0.017107554, 0.009866651, 0.023350403, 0.0037644655, -0.012418717, -0.0066045607, 0.023350403, 0.001828646, -0.05792722, -0.006132328, 0.020429928, 0.005526128, -0.016009025, 0.012097197, 0.016169786, -0.0015096378, 9.896794E-4, -0.024904419, -0.0033324228, -0.018554395, 0.0071404274, -6.187589E-4, -0.002017874, 0.028936816, 0.0050505465, -0.0069059855, -0.0023594892, -0.03542081, 0.028695676, -0.0053352257, 0.016464513, -0.012264656, -0.012793824, 0.015232019, 0.0028183253, 0.048897862, -0.0037443705, 0.005857696, 0.030812351, 0.0065878145, 0.0245695, 5.8442994E-4, -0.015620522, 1.463168E-4, -0.019800285, -0.019478764, 0.037859, -0.0035702137, 0.006460546, -0.017094156, 0.02731582, 0.015044466, -0.009558527, 0.022091117, 0.026150309, -0.01687981, -0.039332636, -0.02920475, -0.0013480404, -0.0061691687, 0.009618812, -0.029606652, -0.007167221, 0.0370552, -0.025118764, 0.010462803, -0.005321829, -0.011306793, 0.0039386223, 0.018849121, 0.031133872, -0.009404466, -0.019639526, -0.010107791, 0.03266109, -0.005700285, -0.011172826, 0.040752683, 0.006393563, 0.0010298693, -0.017027173, -0.0055160807, -0.002017874, 3.8013063E-4, 0.01708076, 0.011125938, -0.0079911165, -0.02231886, 0.0032034798, 0.0016201603, -0.005284988, -0.0015523396, -0.0065442757, -0.018031923, -0.017187933, -0.015540143, 0.009826461, -0.0018537649, -0.016477909, 0.015473159, 0.033464894, 0.0034211758, 0.013932541, 0.019318005, 0.022787744, 0.006038551, -0.028240189, 0.009605415, 0.016183183, 0.033491686, -0.007026556, 0.027677529, -0.024703467, -0.017187933, 0.013383278, 0.016665462, 0.0119498335, -0.014495201, -0.01256608, 0.008151877, -0.013544038, -0.032205604, -0.055998098, -0.014816722, 0.031562567, 0.019438574, -0.032500334, 0.00406924, 9.7460806E-4, 0.019023277, -0.010007316, 0.020001234, 0.010777624, -0.040538337, -0.007662898, 0.031053491, 0.014106698, -0.0024013538, 0.005854347, -0.018514205, -0.0134904515, 0.025453681, -0.019505559, -0.03145539, -8.3436165E-4, 0.00467209, -0.02832057, -0.020336151, -0.03512608, 0.018634774, 0.026431639, 0.006718432, 0.012787126, -0.027155058, 0.018058717, 0.016477909, -0.015955439, -0.0039587175, -1.3930448E-4, -0.013396675, 0.033089787, -0.03871639, 6.6564727E-4, -0.006219406, 0.020228978, -0.0056667933, -0.019572541, -0.022024132, -0.0022104513, 0.018701758, 0.0092771975, -0.014709549, -3.508254E-4, -0.019786889, 0.005556271, -0.007830356, 0.027945463, -0.013463658, 0.004290285, -0.003791259, -0.011742185, 0.01599563, -0.013269406, 0.015432969, -0.025587648, 4.923278E-4, -0.0099068405, -0.0056031593, 0.0083729215, 0.018286461, 0.03855563, -6.752761E-4, -0.011206319, 0.004347221, -0.0024700118, 0.015687507, -0.0374571, 0.0073614726, 8.4817695E-4, -0.021488266, 0.017228123, 0.0037611164, -0.012170879, -0.025279526, 0.0058342516, -0.041797623, 0.026110118, 0.009585321, 0.024020238, -0.013061757, 0.0035065794, -0.049058624, 0.036144227, 0.027731117, 0.026217291, 0.0060921377, -0.014535392, -0.008955677, -0.025775202, 0.021782992, -0.006433753, -0.0050572446, -0.026083326, -0.016986983, -0.08664969, 0.024515914, 0.022586793, -0.02896361, 0.0064873397, 0.010214964, 0.012371829, -0.024462327, 0.006972969, 0.0154061755, -0.004286936, -0.00846, -0.0110656535, -0.0062461994, -0.02268057, 0.005978266, 0.01071734, -0.026391448, 0.03314337, 0.011333587, 0.0075758193, 0.009947031, -0.005144323, 0.028856438, -0.026806746, 0.01708076, -0.026069928, 0.021903563, 0.0033910333, -0.010462803, 0.022975298, -0.023403991, 0.0032721378, 0.04862993, -0.00934418, -0.006946176, 3.2759056E-4, 0.0068657957, -0.010020712, -0.030142518, -0.026324466, -0.03231278, -0.035179667, -0.01977349, -0.020791639, -0.0032821852, 0.007997815, -3.0519298E-4, -0.012807221, 0.030062137, -0.0035836105, 0.0129679805, -0.0068021617, -0.047263466, 0.010328836, -0.028213397, 0.010241758, 0.01639753, 0.0055328268, 0.020563895, 0.043458812, 0.00294057, 0.016209977, -0.0054926365, 0.0016101128, -0.020510308, -0.02440874, 0.009216912, 0.0053151306, -0.0014820071, -0.0269943, -0.006336627, 0.015942043, 0.037778623, -0.017616628, 0.008681045, 9.14323E-4, -0.018862518, -0.029874584, 0.012740238, 0.015325796, 0.013195724, -0.0041362233, -1.7279616E-4, -0.0013890677, 0.004732375, 0.0027329216, 0.0051342756, -0.005445748, 0.027489977, -0.033813205, 0.020711258, -0.011380475, -0.0011964905, 0.024663277, 9.3609263E-4, -0.015700903, -0.019800285, 0.022573397, 0.019090261, 0.014026318, 0.02332361, 0.0026843587, -0.007388266, 0.014789929, 0.023926461, -0.018112304, -0.019853871, -2.1978919E-4, -0.0014175356, -0.016504703, 0.0054089073, -4.1571556E-4, 0.015687507, -0.034509834, 0.017589834, -0.012077102, -0.036197815, -0.040457956, 0.018634774, 0.03166974, 0.012177577, -0.008714537, -0.001619323, 0.032339573, -0.004702233, 0.005097435, -0.015781283, 0.01643772, -0.0020195488, -0.003247019, 0.0073547745, -0.011306793, -0.0044175535, -0.0040257005, -0.0118292635, -0.017027173, -0.0046955342, 0.013671306, 0.092061944, 0.019545749, 0.011574727, -0.0024381948, -0.010067601, 0.0024633135, 0.007997815, 0.0048295013, -0.014066508, -0.019652922, 0.02260019, -0.010355629, -0.011534537, 0.026110118, -0.026431639, 0.04238708, 0.018085511, 0.028106224, -0.0055763656, -0.022426033, 0.006025154, -0.00801791, -0.0069260807, -0.006477292, -2.217516E-5, 0.018875914, 0.045253966, 0.034777768, 7.7993766E-4, -0.06682261, 0.007910736, 0.018540997, -0.02651202, -0.0074552493, 0.0021451425, -0.0039855107, -0.011353682, -0.01216418, 0.015057862, 0.0022305462, -0.0042500948, 0.02243943, -0.0066380524, -0.02328342, 0.019197434, 0.018661568, -0.020161996, -0.0077365795, -0.038368076 ], - "id" : "63cd17d2-26ba-4c2b-9059-3d73f3d63239", - "metadata" : { - "name" : "SonicRide 8S" - }, - "text" : "price: 5999.99\nname: SonicRide 8S\nshortDescription: SonicRide 8S is a high-performance e-bike designed for riders who crave speed and long-distance capabilities. The advanced SonicDrive motor provides powerful assistance up to 28 mph, combined with a durable and long-lasting battery for extended rides. With its sleek design and thoughtful features, the SonicRide 8S is perfect for those who prefer the freedom of riding a bike over driving a car. Plus, it comes equipped with a smartphone controller for easy navigation, music, and more.\ndescription: ## Overview\nIt's right for you if...\nYou want a fast and efficient e-bike that can take you long distances. The SonicRide 8S features a hydroformed aluminum frame with a concealed 625Wh battery, a high-powered SonicDrive motor, and a Smartphone Controller. It also includes essential accessories such as lights, fenders, and a rear rack.\n\nThe tech you get\nThe SonicRide 8S is equipped with the fastest SonicDrive motor, ensuring exhilarating rides at high speeds. The long-range battery is perfect for commuters and riders looking to explore new horizons.\n\nThe final word\nWith the SonicDrive motor and long-lasting battery, you can enjoy extended rides at higher speeds.\n\n## Features\n\nConnect Your Ride with SonicRide App\nDownload the SonicRide app and transform your phone into an onboard computer. Simply attach it to the Smartphone Controller for docking and charging. Use the thumb pad on your handlebar to control calls, music, directions, and more. The Bluetooth® wireless technology allows you to connect with fitness and health apps, syncing your routes and ride data.\n\nSay Goodbye to Limited Range with Range Boost!\nExperience the convenience of Range Boost, an additional long-range 500Wh battery that seamlessly attaches to your bike's down tube. This upgrade allows you to double your distance and time between charges, enabling longer commutes and more adventurous rides. Range Boost is compatible with select SonicRide electric bike models.\n\nWhat is the range?\nFor an accurate estimate of how far you can ride on a single charge, use SonicRide's range calculator. We have pre-filled the variables for this specific bike model and the average rider, but you can adjust them to obtain the most accurate estimate.\n\n## Specifications\nFrameset\n- Frame: High-performance hydroformed alloy, Removable Integrated Battery, Range Boost-compatible, internal cable routing, Motor Armour, post-mount disc, 135x5 mm QR\n- Fork: SonicRide rigid alloy fork, 1-1/8'' steel steerer, 100x15mm thru axle, post mount disc brake\n- Max compatible fork travel: 63mm\n\nWheels\n- Front Hub: SonicRide sealed bearing, 32-hole 15mm alloy thru-axle\n- Front Skewer: SonicRide Switch thru axle, removable lever\n- Rear Hub: SonicRide alloy, sealed bearing, 6-bolt, 135x5mm QR\n- Rear Skewer: 148x5mm bolt-on\n- Rim: SonicRide MD35, tubeless compatible, 32-hole, 35mm width, Presta valve\n- Spokes: Size: M, L, XL - 14g stainless steel, black\n- Tire: SonicRide E6 Hard-Case Lite, reflective strip, 27.5x2.40''\n- Max tire size: 27.5x2.40\"\n\nDrivetrain\n- Shifter: Shimano Deore M4100, 10 speed\n- Rear Derailleur: Size: M, L, XL - Shimano Deore M5120, long cage" - }, - "2cbf698b-d935-484a-898e-0093271be415" : { - "embedding" : [ 0.029826978, 0.012413825, -3.5096516E-4, -0.019856486, 0.0034872075, 0.014505093, -0.023236314, -0.025827516, -0.03016496, -0.034079928, 0.024222098, 0.019856486, 0.00570698, 0.004678949, 0.0021123923, 0.019265017, 0.014645919, -0.009470559, 0.01540638, -0.012223709, 0.007836975, 0.0029538285, -0.023560215, 0.01529372, -0.022771588, 0.0020807064, 0.027953992, -0.0044430653, 8.5727917E-4, -0.019250935, 0.029629823, -0.00360867, 9.998657E-4, 0.0064111105, -0.006918085, -0.019419925, 0.0068652746, -0.027390687, 0.019997314, 0.010209896, 0.028348304, 0.009787417, -0.015462711, 0.0013255262, 0.0038269507, 0.009548013, 0.019490339, -0.0069638533, -0.008090463, -0.012047677, -0.0019398802, 0.02417985, -0.017842673, -0.005055659, 0.008879089, -0.015603538, 0.009681798, 0.02525013, 0.013188369, 0.015969686, 5.7474675E-4, 0.020152222, -0.023165902, 0.013146121, -0.009069204, -0.037572417, 0.026081003, 0.0027918785, 0.0074215382, 0.018715795, -0.0023183506, 0.02837647, 0.030502943, 0.0052035265, 0.018293317, -0.010618292, 7.749839E-4, 0.014026284, -0.007259588, 0.010737994, 0.032446343, -0.031122578, -3.2279996E-4, 0.010069069, 0.030249458, -0.00543941, -4.986126E-4, 0.009210031, -0.016180925, 0.008766428, 0.03619232, 0.017096294, 0.021616815, 0.031488728, -0.003441439, -0.0055661537, -0.0030260019, -0.0045064366, -0.022250531, -0.020673279, 0.005238733, 0.015040233, -0.014899407, -0.008935419, -0.019969149, -0.035460025, -0.029545326, -0.0052105677, 0.011125266, -0.013589723, -0.019025613, 0.002541912, -0.008512941, 0.021982962, 0.0032073155, -0.011132307, 0.040839583, 0.00963955, 0.008731221, -0.019715661, 0.03177038, 0.020729609, 0.01696955, -0.02757376, 0.008512941, 0.023926362, -0.0018993927, -0.011618157, -0.004647263, -0.013441856, 8.493577E-4, 0.005178882, 0.009055122, -0.0043128007, -6.89168E-4, 0.013174286, 0.012934882, 0.022264615, -0.030024135, -0.015476794, -0.002881655, 0.013695343, -0.013962912, 0.027869495, 0.010477466, 0.005020452, -0.028686287, -4.055353E-4, 0.0062104333, -0.017532855, 0.014603672, -0.0012621543, 0.01470225, 0.019490339, 9.58498E-4, 6.447197E-4, -0.01449101, 0.011477332, -0.013491145, -0.04210702, -0.011435083, 0.02202521, -0.0035629016, -0.04292381, 0.034108095, 0.025433203, 0.011371711, -0.027390687, -0.0024838212, -2.3742409E-4, -0.02099718, 0.015955603, -0.019673413, 0.015040233, 0.01362493, 0.0072736708, 0.012843345, -0.019138275, -0.012568734, -0.004425462, -0.0024644576, -0.002730267, 0.034108095, 0.0140755735, -0.012491279, 0.005847806, 0.017589185, -0.010639416, 0.012554651, 0.0028235642, 0.031488728, 8.449569E-4, 0.011977264, -0.010970357, -0.59034324, -0.04323363, -0.046219144, -0.01087882, -0.0173357, 0.012639147, 0.02105351, 0.025644442, -0.019152356, -0.018011665, -0.0044782716, 0.024165768, 0.009808541, 0.0012243073, -0.037234433, -0.022898331, 0.015040233, -0.0023940445, -0.012702519, -0.0074919513, -0.027447017, -0.007836975, -0.029151013, 0.04092408, 0.008822759, -0.018898869, -0.005897095, -0.011132307, -0.0025278295, 0.012723642, -0.032784328, 0.047852725, 0.004942998, -0.007858099, 0.035882503, -0.024334759, 0.0019099547, -2.2774229E-4, 0.018307399, 0.04120573, -0.024362924, -0.009632508, -0.01750469, -0.0013290468, -0.006009756, 0.0012392701, 0.028080733, -0.0039783386, -1.4731736E-4, -0.04683878, 0.017377947, 2.1575006E-4, 0.010639416, -0.0013440095, -0.025348706, -0.013737591, 0.036389478, 0.0029872747, 0.007928512, -0.00866785, 0.0068793576, 0.02703862, -0.021306997, -0.01319541, -0.021546401, 0.023743289, -0.033516623, -0.030418448, -0.0049958075, -0.0033639846, 0.013054584, 0.018912952, -0.017814508, 0.035600852, 0.01987057, 0.0032002742, 0.024813568, -2.493063E-4, 0.013012337, 0.012695477, 0.0011380513, 0.008435487, -0.013596765, -0.027461099, 0.02332081, 0.0018606655, -0.017054047, -0.011625199, 6.0863304E-4, 0.010111318, 0.019603001, -0.0065026474, 0.017645517, -0.02364471, -0.010090194, 0.02654573, 0.013674219, 0.016504824, 5.0125306E-4, -0.025123386, -0.011519579, 0.012498321, 0.020124057, -0.0076609426, 0.024855815, 0.01228004, 0.005826682, 0.0021828052, 0.017899003, -0.030333953, 0.012096967, -0.034502406, -0.02898202, -0.002607044, -0.037685078, -0.037910398, 0.024461502, 0.02482765, 0.0034396788, -0.02892569, -0.005288022, -0.0043796934, 0.03979747, 0.0018060954, -0.0073229596, 0.00614002, 0.036473975, 0.010252143, 0.019025613, -0.009301567, 0.016434412, 0.03500938, 0.04788089, -0.011181597, 0.03760058, -0.005636567, 0.016180925, -0.005798517, 0.0067948615, -0.04351528, -0.020377545, 0.0039536944, -0.019194605, -0.037797738, -0.008005966, -0.009991615, -0.020800022, 0.01437835, -0.010991481, -0.0062702843, -0.014589589, -0.020053644, -0.024700906, -0.0070589106, -0.032136526, -0.032192856, -0.023686958, -0.02784133, -0.02612325, -0.0024222098, 0.009195948, 3.564662E-4, -0.012667312, -0.011639281, 0.01647666, 0.017772261, 0.005273939, 0.03253084, -0.030869093, -0.032502674, -0.0110689355, -0.006984977, -0.008266495, -0.003349902, -0.014828994, 0.00495356, -0.018772125, 0.01303346, 0.0031861917, -0.020349378, 0.0018465829, 0.013533393, -0.054640546, 0.016659733, 0.008421403, 0.006062566, 0.030474778, 0.0047352794, -0.02003956, 0.015857024, -0.0076116533, 0.004069876, -0.034446076, -0.004615577, -0.0011292497, 0.0012797576, 0.0043057594, -0.033319466, 5.368997E-4, 0.017068129, 0.03613599, 0.01868763, 0.03022129, 0.005344352, 0.007308877, -0.010702787, 0.015533124, 0.005735145, 0.013230617, 0.0054323687, 0.020250801, -0.041966192, -4.1609726E-4, -0.0038973638, -4.6120564E-4, -0.011399877, 0.011118225, 0.016180925, -0.0063125324, -0.010709829, -0.0029978366, 0.0036755626, 0.04605015, 0.018673547, -0.00845661, 0.027827248, 0.016406247, 0.037234433, 0.004647263, -0.011498455, -0.0077806446, 0.01496982, 0.042839315, -0.024799485, 0.0021564004, 0.009519848, 0.032390013, -0.012301164, 0.036473975, -0.0047317585, 0.035262868, 0.02364471, 0.017265286, -0.02589793, -0.0016775915, -0.011484372, 0.032277353, 0.026940042, 0.035347365, 0.01578661, 0.0025172674, -0.0048373784, -0.010202855, 0.038952515, 0.0046085357, 0.03275616, 0.01087882, 0.011561827, -0.009590261, 0.025968341, 0.02525013, 0.031207075, 0.028728535, 0.02709495, 0.0077947276, -0.011033729, -0.032812495, -0.007259588, -0.007942595, -0.040698756, -7.70143E-4, -0.02364471, 0.0026140853, -0.0018430622, -0.0019398802, 0.009991615, 0.016096428, 0.004400817, 0.023870032, 0.025376873, 0.0021071113, -0.021123923, 0.001017469, 0.017913086, -0.024898063, 0.0029151014, 0.0010377127, 0.011350588, -0.006199871, 0.022151953, 0.014230482, 0.032502674, -0.015533124, 0.0070342664, 0.0011565348, 0.0014082615, 0.015871108, -0.019856486, -0.0059323017, -0.0030893737, -0.03348846, 0.0077947276, 0.014617754, -0.032080196, 0.029235508, -0.025559947, -0.0015394059, -0.015547207, 0.021264749, -0.0068019032, -0.0014144226, -0.026320407, -0.011653364, 7.248146E-4, 0.0048690643, 0.006918085, 0.017997582, -0.016561156, 0.024250263, -0.026897795, -0.01383617, -0.008308743, -0.023602463, -0.017194873, 0.01470225, 0.025714856, 0.0063090115, -0.0071258033, -0.018011665, -0.016899139, -0.012301164, 0.005217609, 0.007844017, 0.011751942, -0.01803983, -0.011456207, 0.0108929025, -0.029770648, -0.015364133, 1.7625272E-4, -0.0148430765, -0.018997448, 0.009850789, -0.0063512595, -0.007696149, -0.02482765, 7.780645E-4, 0.02406719, 0.0010377127, 0.002131756, 0.008484775, 0.0046648663, 0.032502674, -0.0034502407, -0.017349781, 0.014674085, 0.0015490877, -0.0062280367, -0.03754425, 0.018321482, 0.012970088, -0.031094413, 0.018448226, -0.013800963, -0.0048761056, 0.0060484833, -0.009252278, 0.012251875, 0.020898601, -0.012991212, 0.008301701, 0.014688168, 0.016547073, -0.013913624, 0.036530305, 0.010963316, -0.033798277, -1.2938403E-4, -0.003640356, 0.020236718, -3.8089073E-4, -0.028362386, -0.029883308, -0.023025075, -0.0036368354, -0.031122578, 0.015265555, -0.005245774, -0.0019257976, 0.0112168025, -0.024489667, -0.0070589106, -0.008759387, 6.6100276E-4, -0.040614262, -0.015321885, -0.010632374, 0.009301567, 0.016659733, 0.004622618, 0.025137467, -0.025869764, 0.011294257, -0.0043867347, -0.042642158, 0.010132441, -0.0036861245, -0.0047352794, -0.014322019, -0.0064427964, 0.019729743, -0.016279504, 0.0063160527, 0.0013079229, 0.019940984, -0.016490743, 0.031432398, -0.035995163, 1.1970223E-4, -0.010111318, 0.021278832, 0.017575104, 0.015688034, -0.014033326, 0.030446613, -0.007308877, 0.028291974, 0.021236584, 0.012913758, -1.352151E-4, 1.8428422E-4, -0.019476257, -0.00630197, -0.012449032, -0.011674488, -0.0027179448, -0.008576312, 0.011963181, -0.022968745, 0.00823833, 0.011611116, 0.014913489, -0.0017022361, -0.0039290497, 0.010477466, -0.022687092, 0.041656375, -0.020208552, -0.0054922197, 0.01874396, 0.015547207, 0.012716602, -0.01346298, 0.03624865, 0.01061125, 0.009188906, -2.1718034E-4, -0.016293585, -0.01082249, -0.017152624, -0.013005295, 0.0043691313, 0.0046754284, -0.008428445, -0.009301567, 0.017673682, 0.0075623645, 0.0103929695, -0.0034590424, -0.01637808, -0.020800022, -0.0073581664, -0.011061894, 0.042529497, -0.015997851, 0.0039818594, -0.012104007, -0.019786075, -0.020828187, 0.003242522, -0.028573627, -0.007259588, 0.010181731, 0.02772867, 0.03275616, 0.019969149, -0.0036227526, 0.012449032, -0.015040233, 0.011998388, -0.036642965, 2.6514923E-4, -0.03714994, 0.007576447, 0.028503213, 0.017180791, -0.007245505, -0.014314978, -0.022419523, 0.025405038, -0.0068582334, -0.0186313, -0.013631972, -0.037938565, -0.015321885, -0.008322826, -0.0132447, -0.0032988526, -0.03585434, -0.031207075, 0.025982425, 0.0057597896, 0.009202989, -0.009681798, 0.003075291, -0.0070096217, 0.03365745, -0.0014997985, 0.03081276, -2.7967192E-4, -0.03500938, -0.017025882, -0.020208552, 0.013660137, -0.027052704, 0.027996238, -0.0027021018, -0.007463786, -0.00963955, 0.010646457, -0.011315381, -0.032559007, -7.340563E-4, 0.012498321, -0.0065660193, -0.013857293, -0.03548819, -0.018673547, -0.016561156, -0.0015332447, -0.03478406, 0.025334625, -0.02639082, -0.003689645, 0.021123923, -0.009041039, 0.021518236, -0.021292914, 0.02757376, 0.018194739, -0.019152356, -0.00770319, -0.01922277, 0.027827248, 0.010174689, 0.043487117, 0.04841603, -0.015195142, 0.0019240372, 0.0028042006, 0.014336102, -0.0037072485, -0.024391089, 0.016786477, 0.012998254, -0.0010412333, -0.04340262, 0.0064005484, -0.017842673, 0.004583891, -0.0018536242, -0.008893171, 0.001901153, -0.009766294, -0.010421135, 0.043796934, -0.020335296, 0.014575507, 0.0022109705, -0.015434546, 0.005154237, 0.014026284, -0.0029045392, 0.0011723777, 0.009850789, 0.059372306, -9.42655E-4, -0.015307803, 0.013716467, 9.778616E-4, -0.012491279, -0.013336237, -0.0051190304, 0.031432398, -0.015828859, 0.002186326, 0.003753017, -0.014103739, 0.0041473303, -0.0017418434, -0.015307803, -0.0032213982, 0.010857696, -0.0049570804, 0.0028288453, -0.0023289125, -0.02208154, 0.005143675, -0.015181059, -0.020264883, -0.02837647, 0.0071082, 0.012054718, -0.046190977, -0.0073652077, -0.038642697, 0.019659331, 0.024616411, -0.0025612756, -0.041008573, 0.027714586, 0.025588112, -0.018955199, 0.023123654, -0.0023975652, 0.0022426564, -0.0437406, 0.0027073827, -0.00754124, 0.002019095, 0.023250397, -0.0010333118, 0.003925529, -0.013160204, 0.009787417, 0.002520788, 0.009977533, -0.0053302697, -0.024081271, 0.003182671, 0.01449101, -0.016814642, -0.03022129, 0.0029256633, 0.008477734, -0.0031228198, 0.031432398, -0.017011799, 0.045036204, -0.012716602, -0.012878551, 0.021391492, 3.850715E-4, 0.009280443, -0.0039396114, 0.005643608, -0.0062456396, -0.0056154425, -0.022194201, -0.024785403, -0.020814106, 0.03883985, -0.018927034, -0.005583757, 0.023363058, -0.009548013, -0.017490609, 0.04216335, 0.004534602, -0.020969015, 0.0070342664, -0.029911473, -0.04098041, -0.020349378, 0.016899139, 0.043318123, 0.0372626, -0.012787014, -0.0140474085, -0.011230885, -0.024785403, -0.02482765, 0.008139752, 0.03548819, 0.024898063, 0.0010535556, 0.004654304, 0.028644038, -3.490398E-5, 0.026996372, -0.045233358, 0.0012850387, 0.016758312, 0.029122848, -0.0033058939, 0.028446883, -0.032615338, -0.025123386, 0.013343277, 0.022630762, 0.021982962, 0.015828859, 0.013160204, 0.009195948, 0.003209076, -0.024954394, 0.016307669, 0.0013554516, -0.0031474645, -0.05568266, -0.004777527, 0.01744836, 0.0027813164, -2.945797E-5, 0.0030770514, -0.018814374, -0.023391224, -0.008801634, -0.00102363, -5.426208E-4, -0.015462711, -0.013272865, 0.003473125, -0.011174555, -0.018546805, 0.046416298, 0.012561693, -0.01120272, 0.007829934, 0.031038083, -0.019377679, -0.025292376, 4.836498E-4, -0.044670057, -7.476988E-4, -0.002837647, 0.014603672, 0.020983096, -0.006791341, -0.004390255, -0.026644308, -0.010906985, 0.024926228, 0.0045310813, -0.025559947, -0.016279504, 0.02246177, -0.022489937, 0.01416711, 0.018166574, -0.013413691, -0.041064907, 0.0054886993, 0.012315247, -0.029855143, -0.027052704, 0.034812223, -0.0025507137, 0.008970626, 0.0097733345, 0.19073494, 0.019321349, -0.013610847, 0.03241818, 0.028601792, 0.0037952648, -0.007182134, 0.011301299, 7.4065756E-4, 0.015688034, 0.033741947, 0.014005161, 0.004238867, 0.0011750181, 0.007844017, -0.0022637805, -0.045684002, -0.009294526, -0.010435218, -0.015448629, 0.021532318, 0.005633046, -0.023729207, -0.035375528, 0.021898467, 0.007597571, -0.010139483, -0.035629015, 0.010780241, 0.010315515, -0.004717676, -0.017701847, 0.010322557, -0.008688973, -0.019490339, -0.0045029162, 0.029883308, -0.008125668, -7.2833523E-4, 0.027953992, -0.010618292, -0.016885055, 0.022982828, -0.021616815, -0.022363193, -0.011582951, -0.014519176, 0.01104077, -0.02898202, -0.0052316915, -0.030981753, -0.0071293237, 0.018701714, 0.0307001, -0.016547073, -0.0030576878, 0.019969149, -0.0056964178, 0.0132517405, 0.013364402, -9.734608E-4, 0.037994895, 0.0059217396, 0.018518638, -0.023334892, 0.01195614, -0.029545326, -0.0015948561, 0.03478406, -0.002149359, -0.014082615, -0.012350453, -0.0025331103, 0.006171706, -0.041712705, -0.01093515, 0.011723777, 0.0074074557, 0.018180655, 0.024348842, -0.0010782002, -0.0036544385, 0.008984708, 1.9033534E-4, 0.010780241, -0.037685078, -0.010780241, 0.00576331, -0.0051366338, -0.028207477, -0.0015358852, -0.01152662, 0.0076327776, -0.0113646705, -0.015800694, -0.015631702, -0.03258717, 0.031601388, -0.010202855, -7.749839E-4, -0.011188637, 0.037234433, -0.0020102933, 6.429594E-4, -0.011935016, -0.0099493675, -0.028137065, 0.0030541671, -0.010885862, -0.04007912, -0.015096563, -0.04678245, -0.009386063, -0.0063899867, 0.016814642, 0.005904136, 0.0076186946, -0.023785537, 0.0032284395, -0.025588112, 0.028362386, -0.01540638, -5.038936E-4, 0.024813568, 0.02665839, -0.016730146, -0.027503347, -0.012794056, -0.009970492, -0.016011933, 0.0031439438, -0.012357495, -0.0047352794, -0.009435352, -0.0118364375, -0.0010324317, -0.010801366, -0.009956409, -0.0010702787, -0.01712446, 0.017054047, 0.010871779, 0.009794459, -0.013688302, 0.019490339, -0.015533124, -0.0067666965, 0.009019915, -0.024644576, -0.0036473973, -0.024588246, -0.012251875, 0.015758445, -0.012885593, 0.04210702, 0.0022884249, 6.522011E-4, -0.05528835, -0.0030172002, 0.02099718, -0.03613599, -0.020701444, 0.009864871, 0.023377141, -0.0016327031, -0.01195614, -0.17958151, 0.007801769, 0.028615873, -0.029376335, -0.01195614, 0.001718079, 0.039994627, 0.014307937, -0.034699563, -0.012223709, 0.015209224, 0.005347873, -0.035882503, -0.025348706, 0.0027760356, -0.00937198, -0.02429251, -0.011195679, 0.012751807, 0.0179835, -0.008379156, -0.029432666, 0.019448092, -0.01803983, -0.0043867347, 0.009604343, -0.006587143, 0.009590261, 0.029545326, -0.0028182834, -0.017913086, -0.0074778683, 0.015997851, -0.02208154, 0.003295332, 0.020321213, -0.03064377, 0.0014258648, -0.008083421, 0.031038083, 0.018194739, 0.009456476, 0.019110108, 0.008055256, 0.016026016, 0.015378215, -0.0067279693, -0.00247678, 0.017575104, -0.013674219, 0.043092802, -0.019307265, 0.026996372, -0.024405172, 0.024193933, 0.0028306057, 0.008984708, 0.021081675, 0.019659331, -0.015504959, -0.020602865, -0.0015534884, 0.036530305, -0.0037459757, -0.015758445, -0.023095489, -0.027489264, 0.044275742, -0.012561693, 0.010139483, -0.022194201, -0.013441856, 0.0074497033, 0.010864737, 0.039177835, 6.843271E-5, -0.018758044, 0.0052281707, 0.033741947, 0.006942729, 0.0015860546, 0.06449838, 0.005541509, -0.0055344678, -0.023715124, -0.0072947945, 0.014899407, 0.0186313, -0.005478137, -0.021574566, -0.0142164, -0.020940848, 0.008632643, -0.013991078, -0.0039889007, 0.0013396088, -0.025405038, -0.014744498, 0.0070237042, 0.0051612784, -0.002230334, -0.020391626, -0.02046204, -0.0035541, 0.02456008, 0.011421001, 0.011892769, 0.0053901207, 0.0018430622, 0.012209627, -0.0053619556, 0.014202317, 0.02892569, 0.020898601, -0.019011531, 0.0023289125, -0.017955335, -0.016617486, -0.0070201834, -0.011639281, 0.0022479375, -0.011026688, -0.00931565, 0.0186313, -0.007829934, -0.02208154, -0.09435352, 8.128309E-4, 0.021898467, 0.011484372, -0.01750469, 0.018321482, -0.0031439438, 0.007625736, 0.0035928271, 0.023405306, -0.021546401, -0.014772663, -0.0058724503, 0.009090328, 0.016166842, 0.0044465857, 0.036671128, -0.019856486, -0.02854546, 0.021377409, -0.018180655, -0.02305324, -0.02288425, 0.0062984494, -0.017490609, 0.001211985, -0.033037815, 0.022982828, 0.018391896, 0.0075834882, 0.018758044, -0.029629823, -0.017180791, 2.2906254E-4, -0.017476525, 0.0061364993, -0.020222636, 5.5318273E-4, 0.008857965, -0.03258717, 0.0022549788, 0.009238196, 0.009055122, 0.0118646035, -0.02536279, -0.010047946, -0.011435083, 0.034023598, 0.0011855802, -0.03016496, -0.002159921, -0.019448092, 0.014265689, -0.028151147, 0.0061259377, -0.0151669765, 0.0069075227, -0.02282792, -0.02051837, -0.006851192, -0.002094789, 0.013040502, 0.0018025747, 0.015758445, 0.015772529, -0.0192791, -0.012406784, 0.0173357, 0.016349915, -0.010040904, -0.015392298, 0.029291838, -0.014033326, 0.04227601, -0.02536279, 0.023517966, -0.006657556, -0.049965117, 0.01001978, -0.019771991, -0.026207747, -0.018645382, 0.017800426, -0.030362118, 0.0097733345, 0.027813165, -0.0011107663, -0.002886936, 0.019448092, -0.025545863, 0.021771723, 0.014279772, 0.064554706, -0.014124863, -0.014913489, 0.013054584, -0.002719705, 0.009604343, -0.023799619, -0.004453627, -0.040726922, -3.3842283E-4, -0.07632777, 0.01933543, 0.032615338, -0.013955872, 0.0014117821, -0.005238733, 0.02951716, -0.009533931, 0.008005966, 0.0058618886, -0.011660405, 0.0054534925, -0.020771857, 0.012082884, -0.00878051, 0.007175092, 0.040107287, 0.0055063027, 0.024461502, 0.032108363, -0.006763176, 0.008449569, -0.018307399, 0.026940042, -0.031854875, 0.017265286, 0.0019962108, 0.013110914, 0.01383617, -0.0016617486, 0.040107287, -0.01916644, 0.014589589, 0.009125534, 0.003721331, 0.022898331, 0.0035470587, 0.006699804, -0.012364536, -0.025067056, -0.019419925, -0.021729475, -0.009519848, -0.013765756, -0.0131038735, -0.006537854, 0.032333683, 0.03377011, 0.022687092, 0.05658395, 0.0012700758, 0.007879223, 0.0044747507, -0.021377409, 0.016631568, -0.030136796, -0.009681798, -0.011097101, 0.005583757, -0.014561424, 0.03765691, 0.012096967, 0.0049746837, -0.018377813, 0.026095085, -0.0068758368, -0.026954126, 0.00813271, 0.002013814, -0.029742483, -0.028531378, 0.001820178, 0.015378215, 0.004809213, -0.00452404, 0.012688437, 0.002374681, 0.003689645, -0.024686825, 0.02084227, 0.03388277, -0.009709963, -0.008174958, 0.00199269, 0.0045099575, -6.455999E-4, -0.0141952755, 6.83887E-4, -0.022588514, 0.0072877533, -0.022926496, 0.010181731, -0.007442662, -0.012082884, 0.021081675, 0.016166842, -0.03495305, -0.012948965, 0.024757236, 0.031995703, -0.022137871, 0.009055122, -0.004351528, -0.0021018302, -9.945846E-4, 0.017420195, -0.026742887, -0.011906851, 0.0062421192, -0.018518638, -0.016589321, -0.00737929, 0.013512269, 0.01120272, -0.02046204, 0.010949234, -0.0015930958, -0.017997582, -0.0218703, 0.027461099, 0.022151953, 0.0062773256, -0.0051612784, 0.004126206, 0.026855547, 0.0038586366, -0.004351528, -0.0057597896, 0.00721734, -0.021391492, 0.0039008844, -0.018462308, 0.00969588, -0.020081809, -0.013920665, 0.0031192992, -0.006294929, 0.023081405, 0.007667984, 0.090917364, 0.0044043376, -0.017631434, 0.0060660862, 0.0013862575, 0.027714586, 0.0012463115, -0.012195544, -0.017687764, -0.03371378, 0.011484372, -0.0025700773, -0.0154908765, 0.0053302697, -0.011421001, 0.02612325, 0.006358301, 0.011111183, 0.012836304, -0.0173357, 0.026827382, 0.0019698057, 0.0025630358, -0.018729879, 0.0070589106, -0.011730818, 0.031854875, 0.02574302, -0.016138677, -0.04782456, 0.017786343, 0.005288022, 4.4162202E-4, -0.018828455, 0.014364268, -0.020293048, -0.0051260716, 0.020912683, 0.024743155, -0.011660405, 0.0022092103, -0.011195679, -0.021546401, 0.0017004758, 0.002617606, -0.0048972294, -0.0148430765, -0.027376603, -0.06252681 ], - "id" : "2cbf698b-d935-484a-898e-0093271be415", - "metadata" : { - "name" : "Celerity X5" - }, - "text" : "1 | 38.6 | 39.4 |\n| N — Frame stack | 52.0 | 54.3 | 56.2 | 58.1 | 59.8 | 62.4 |\n| Saddle rail height min | 67.0 | 69.5 | 71.5 | 74.0 | 76.0 | 78.0 |\n| Saddle rail height max | 75.0 | 77.5 | 79.5 | 82.0 | 84.0 | 86.0 |\ntags: [bicycle, city bike]" - }, - "0c5f2104-2c3c-4e8f-97e2-53c4617ad00c" : { - "embedding" : [ 0.015026105, -0.004380889, -0.03684086, -0.020407354, -0.006761057, -0.007533749, 0.027913507, -0.04379509, -0.0065299394, -0.031597592, 0.01398435, -0.0014720822, -0.02286341, 0.020490142, 0.005615817, 0.0250987, 0.015991969, 0.0039324514, 0.01111435, -0.007133605, 0.0067369104, 0.013322042, -0.02422942, -0.0026216344, -0.0012185426, -0.025623025, 0.032232303, -0.007506153, 0.024257017, -0.015591825, 0.011321321, -0.0041980646, -0.016392114, -0.02974865, -0.007692427, 0.0115765855, 0.026450912, 0.015412451, 0.03311538, 6.166015E-4, 0.026078362, -0.0018196212, 0.013177162, 0.012708028, -0.004142872, 2.382324E-4, 0.038027495, -0.019814037, 0.0013608352, 0.008403028, -0.023056583, 0.02171817, -0.0136187, -0.0055985693, -2.6992484E-4, -0.034798745, 0.020214181, 0.017302787, 0.011335119, -0.0068162493, 0.0030890442, 0.014970912, -0.03535067, 0.025692016, -0.004618906, -0.024974518, -0.034881536, 0.005422644, -0.015605624, 0.0059883646, 0.023553316, 0.019841632, 0.04688586, -0.0124803595, 0.019965814, -0.01240447, -0.0051087374, -0.008071874, 0.004556814, -0.0042498074, 0.017675335, 0.0022283893, 0.0066230763, 0.018241055, 0.016985431, 0.0071749995, -0.016833652, 0.023056583, -0.019689854, 0.002123179, -0.002207692, 0.01312197, 0.0143913925, 0.007678629, 0.01283221, 0.014101633, -0.037834324, 0.043546725, 0.0026888999, -0.016571488, 0.015812594, -0.021759566, -0.02523668, -0.016571488, -0.021318026, -0.027485766, -0.011141946, 0.008810071, 0.0057124035, 0.011038461, -0.030107401, 0.02754096, -0.004932812, -0.008968749, -0.014598364, 7.196559E-4, 0.04558884, -0.0222287, 0.0063264174, -0.018530816, 0.020117594, 0.02574721, 3.5982794E-4, -0.012611441, 0.0017954746, 0.02617495, -0.017840913, 0.0028699997, 0.015716009, -1.06503896E-4, -0.009493076, 0.002845853, 0.022753026, -0.0039841942, 0.010693508, 0.016516296, -0.020490142, 0.015177883, -0.038993362, -0.009382691, 0.0057262015, 0.009293004, -0.022739228, 0.0093895905, -0.009382691, 0.015716009, -0.011749062, 0.014722547, 8.4728806E-4, 0.0012254416, 0.005529579, -0.014598364, 0.009644855, 0.019400094, -0.008768677, 8.753154E-4, -0.025540238, 0.056296147, -0.024629565, 0.012970191, 0.0022163158, -9.451682E-4, 0.012563148, 0.006250528, 0.041835766, 0.006961129, 0.014322402, -0.00422911, -0.0064506005, -0.021193843, -0.0018955106, 0.0023111776, -0.02108346, 0.022615045, -0.015495239, 0.029500285, -0.0013936056, -0.012245792, -0.01068661, -0.0179237, 0.0042498074, -0.026920045, 0.0087341815, 0.024188027, -0.016723268, -0.02093168, 0.014750143, 0.0041463217, 0.012245792, -0.01570221, 0.0222287, 0.029169131, -0.0079959845, -0.0036185454, -0.59121996, -0.010596922, -0.007271586, -0.024767546, 3.5702522E-4, 0.013322042, 0.009844927, 0.013384134, -0.01848942, 0.005105288, -0.014819133, -0.005957319, -0.0072784848, -0.0021956188, -0.020365959, -0.022739228, -0.0011461027, -0.0016083382, 0.02380168, -1.403523E-4, -0.023829276, -0.003987644, -0.022780623, 0.017082017, -0.015895383, 0.016875047, 0.020255575, -0.010279566, 0.0072577875, 0.006388509, -0.035819802, 0.04567163, 0.039600477, -0.0021421511, 0.042111725, -0.024532977, 0.01684745, -0.0063712616, 0.026478507, 0.02660269, -0.00853411, -0.011383412, -0.013253052, -0.02760995, -0.022076922, -0.0038324154, 0.01390846, -0.002143876, 0.021428412, -0.024670959, 0.010596922, -0.0061125476, 0.014722547, -0.0229462, 0.010638316, -0.019648459, 0.021980334, 0.0034305465, -0.0086789895, 0.0035392065, -0.013535912, 0.010203677, -0.02337394, -0.02344293, -0.01039685, 0.024477785, -0.025002113, -0.040262785, 0.034081247, 8.908383E-4, 0.024339804, 0.011452403, -0.0243812, 0.03642692, 0.011680071, 0.03808269, 0.039738458, 0.022256296, -6.7998643E-4, 0.021511199, 0.011838749, -0.006999074, -0.007851105, -0.047134224, 0.016488701, -0.0043670908, 0.017827114, -0.02035216, 0.044650573, 0.016157547, 0.015039902, 0.0034909132, -0.016530095, -0.0200762, 7.0283946E-4, 0.046251148, 0.0072784848, 0.00874798, -1.952212E-4, -0.032811824, -0.020338364, -0.017095815, 0.010990167, 0.0028268807, 0.00939649, 0.013342739, -0.0045844107, -0.038469035, 0.005153581, -0.020628123, -0.007147403, 0.0026716525, -0.019662257, -0.010983268, -0.0052363696, -0.030272977, 0.024491584, 0.008927355, 0.012080215, -0.017399373, 0.0015945401, 0.008906658, 0.02545745, 0.005060444, 0.0022490863, 0.003590949, 0.014612162, -0.0024612318, -0.017882306, 0.0025698915, 0.019827835, 0.0016195491, 0.042829227, 0.0017359704, 0.012894302, 0.030079804, 0.007609639, -0.011535191, 0.025802402, -0.033529323, -0.006209134, 0.0034546931, -0.00774072, -0.039766055, -0.023718892, -0.029417496, -0.026216343, 0.008058076, -0.01426721, 0.010741802, 0.01354971, -0.017385576, -0.023622306, -0.023346344, -1.4337063E-4, -0.02545745, -0.029803842, -0.0085686045, 0.0021318027, -0.004994903, -0.0028958712, 0.005219122, -0.006416105, -0.0064540496, -0.022408074, 0.01369459, 0.027499564, 0.026450912, 0.00423256, -0.048734803, -0.006695516, -0.00580899, -0.023070382, 0.034715958, -0.019027546, 0.015357258, -0.0286724, -0.022090718, -0.0013547986, -0.0072646867, 0.010548629, 0.034605574, -0.033004995, 0.0025716163, 0.0047706845, 0.008071874, 0.022711633, -0.0057917424, -0.016267931, 0.020710912, -0.028948363, 0.02186995, 0.005784843, 7.765729E-4, -0.014253412, -0.0051018386, 0.013363436, 0.008258148, 0.026768267, -0.00480173, 0.01348072, -0.013784277, 0.024036247, -0.013991249, -0.0028786235, -0.029583074, 0.018751584, -0.032232303, 0.0043394947, 0.010934975, 0.019607065, -0.027085623, -0.036730476, 0.011976729, -0.01928971, 0.009734542, -0.0012806338, 0.0559374, -0.015495239, -0.038965765, -0.008754879, 0.010693508, 0.008403028, -0.022256296, -0.018089278, 0.004267055, -0.0063471147, 0.003456418, 0.0057606967, -0.029362304, -0.0037185813, 0.008982548, 0.025802402, 0.003663389, 0.02407764, 0.020365959, 0.0050569945, -0.017758124, 0.045285285, 0.0067231124, 0.02180096, 0.024326008, 0.010107091, -0.016764661, 0.012487259, -0.0016505948, 0.007416466, 0.020490142, 0.034219228, 0.009686249, -0.007340576, 0.023222161, -0.0056261653, 0.004546466, 0.005526129, 0.0109211765, 0.02106966, 0.0052639656, 0.011024662, 0.009341297, 0.0024284613, 0.03822067, 0.015784997, 0.03857942, -0.019179326, 0.00680935, 0.0012237168, -0.031928748, 0.00545024, -0.034909133, 0.018475624, -0.0062401798, 0.010348557, 2.2335634E-4, 0.029307112, 0.014198219, 8.528935E-4, 0.038827784, 0.01693024, 0.050942495, -0.020021008, -0.014281008, 0.001096947, 0.011624878, -0.02889317, 0.003949699, -0.0056399633, -0.0146673545, 0.010652115, 0.0039462494, 0.0094447825, 0.012804614, -0.012694229, 0.01749596, 0.02164918, -0.0394349, 0.02716841, -0.006216033, -0.012576946, -0.0053536533, -0.010348557, -5.480423E-4, -0.017523555, -0.031100862, 5.1225355E-4, -0.01348072, -0.018530816, -0.0143913925, 0.023912065, -0.006457499, -0.010113989, -0.040428363, -0.016957834, -0.019620864, 9.60691E-4, -0.004267055, 0.008485816, -0.009382691, -0.00867209, -0.02100067, -0.009065336, -0.004460228, 0.0063126194, -0.011749062, 0.049093552, 0.011355816, 0.0031304383, 0.036675286, -0.020766104, -0.018365238, -0.019607065, -0.010245071, 0.007492355, 0.008278845, -0.01369459, 0.0071681, -0.026906248, 0.01398435, 0.021180047, -0.018103074, 0.0070508164, -0.026009372, 0.009803533, -0.0086789895, -0.011824951, -0.007892499, -0.008982548, 0.02265644, 0.019993411, -0.0086031, 0.03521269, 0.024629565, 0.019372499, -0.011348917, 0.021345623, -0.0031149155, 0.006819699, -0.020683315, -0.034577977, -0.0023594708, -0.019689854, -0.017371777, 0.039131343, 0.0026216344, 0.037199613, 0.010907379, 9.4689295E-4, -0.0048741703, 0.022780623, -0.017840913, -0.0029217424, 0.008202956, -0.016516296, -0.02709942, 0.016295528, 6.933533E-4, 0.0060953, -0.0053640017, 0.0019075839, 0.014067138, -0.0026302582, -0.015026105, -0.026851054, -0.039103746, 0.022573652, -0.03388807, 0.02359471, -0.006781754, -0.036702882, -0.005270865, -0.0067783045, 0.009451682, -0.011086754, -0.015812594, -0.023208363, 0.011673172, -0.013639398, 0.0130529795, -0.012894302, -1.8325569E-4, 0.022628844, -0.001251313, 0.030190188, 0.03046615, -0.021911344, 0.00953447, -0.01699923, -0.013294445, -0.01354971, 0.009976009, 0.018130671, -0.029224323, -0.0034719408, 0.0040255887, -0.015647018, -0.0024974516, 0.021028267, -0.022766825, -0.011017763, 0.0035874997, -0.005205324, 0.027761728, -0.020034805, 0.008154662, 0.018241055, -0.023291152, 0.009851826, -0.013515215, 0.016530095, 0.007933893, -0.002337049, 0.0010495161, -0.018089278, 0.0035426558, -0.0013168538, -0.011838749, -0.012094013, 0.0272374, -0.0172062, 0.0061056484, -0.001914483, -0.019234518, 0.023277353, -7.7226106E-4, -0.019662257, -0.03877259, 0.028051488, -0.014349999, -0.008720384, 0.016102355, 0.018351441, -0.013397931, -0.012300984, 0.02014519, 0.05005942, 0.026878651, -0.009410287, -0.029389901, -0.021552594, -0.036592495, -0.02106966, 0.027402978, 7.15344E-4, -0.023470527, -0.021469805, 0.012397571, -0.014763941, 0.0044981726, -0.021166248, -0.019979613, -0.018434228, -0.025084902, -0.010479638, 0.032784227, 0.010831489, -0.016944036, -0.03054894, -0.013784277, -0.015233075, -0.002214591, 0.012073316, -0.023994854, 0.01922072, 0.027071824, 0.029803842, 0.004439531, 0.0027044227, 0.023691297, 0.004180817, -6.519591E-4, -0.029721055, 0.01534346, -0.038469035, 0.019869229, 0.015095094, 0.016585287, -0.01527447, -0.011404109, -0.011666273, 0.02137322, -0.010231273, -0.015605624, -0.02502971, -0.040731918, -0.0010115714, -0.013660095, -0.013894662, -0.0039255526, -0.027941102, -0.0070853117, 0.042553265, 0.012556248, 0.007692427, 0.021442208, 5.139783E-4, -0.036896054, 0.047354996, 0.0038807087, 0.03355692, 0.024615766, -0.012252691, -0.018751584, -0.048044898, 0.019055143, 0.0065920306, 5.713266E-4, 0.0012711477, -0.024601968, -0.021124853, 0.009258509, -0.01619894, -0.021662978, 0.018654998, 0.00674036, -0.009272307, 0.007092211, -0.049507495, -0.028230863, -0.0028130827, -0.0042843022, -0.0014815683, 0.02137322, -0.0042981007, -0.008547908, 0.017730527, -0.02186995, 0.015950575, -0.025733411, 0.0040980284, 0.021994133, -0.015743604, -0.031073267, -0.039904036, -0.015716009, 0.002136977, 0.0023525718, 0.041477013, -0.0039462494, 0.001171974, 0.025885189, -0.0019110334, 0.0066058286, -0.033805285, 0.010383052, 0.03907615, 0.042415284, -0.015495239, -0.008865263, -0.026409516, -0.010714206, 0.0020973075, 0.018185863, 0.03548865, -0.010728003, -0.0020748856, 0.009375792, -0.030493747, 0.0020904085, 0.028837977, 4.8724454E-4, 0.008375431, -2.3297727E-5, 2.6043868E-4, -0.0031080164, -9.736267E-4, 0.046444323, -0.01670947, 0.013749782, 0.041201055, -2.0998946E-4, -0.018337643, -0.013860167, 0.041283842, 0.024974518, -0.016212739, 0.0023767184, -0.0032063278, 0.0057331, -0.013735984, -0.023028988, -0.011017763, -0.0039945426, -2.6151666E-4, 2.4297548E-4, 0.008499615, 0.011100552, -0.028589612, -0.011555889, -0.0029303662, -0.01183185, -0.027568555, -0.0021542246, 0.030880094, -0.029169131, -0.019607065, -0.013142667, 0.024601968, 0.024270814, 0.029307112, -0.009748341, 0.011949133, 0.021925142, -0.02465716, -0.014694951, 0.014515575, 0.020821296, -0.017840913, 0.0058020907, 0.0051156366, -0.04324317, 0.025719613, -0.021814758, -0.037309997, -0.0086513935, -3.7211686E-4, -0.021897545, 0.022021728, -0.034964323, -0.011914638, -2.1990683E-4, -0.0066575715, -0.02658889, -0.007161201, 0.0061780885, -0.0043636416, 0.026009372, 0.035267882, -0.006761057, 0.034715958, 0.0030079805, 0.011859446, 0.010072595, -0.012983989, -0.03068692, -0.010369253, 0.013273749, 0.007975288, 0.0058055404, -0.007823509, -0.008478917, -0.031211248, -0.0066299755, -0.009382691, 0.028341247, 0.03885538, -0.012066417, -0.020103795, 0.022877209, -0.040621534, -0.010838388, -0.014212018, 0.014570768, 0.008271947, -0.022325287, 0.012356177, 0.03292221, -0.020876488, -0.05342615, -0.022394277, -0.023870671, -0.026699277, -0.005298461, -0.035543844, 0.0044498793, -0.0015091645, 0.015164085, 0.0017247595, 0.025388459, 0.019620864, 0.017965095, -0.017399373, 0.010548629, 0.0034736656, 0.010245071, 0.0061677396, 0.003506436, -0.033805285, -0.017633941, 0.044209033, 0.0026561294, 0.0011107451, 0.017095815, -0.019041345, -0.010879783, 0.018006489, -0.010631417, -0.012708028, 0.0037392785, 0.0017402823, -0.033474132, -0.0037323795, 0.012783917, 0.015826393, 0.005477836, 0.0018765383, 0.010852186, -0.004439531, 0.005677908, -0.021124853, -0.007285384, -0.015315864, 0.008265047, 0.009451682, 0.016212739, 0.008409927, 0.04437461, 0.02359471, -0.028810382, 0.0122319935, 0.0018558411, -0.006278124, -0.010831489, 0.008237451, 0.0028855226, 0.011680071, 0.00516393, 0.005391598, 0.0044843745, -0.018944757, -0.0026078364, -0.014046441, -0.04258086, 0.03612336, 0.031349227, -0.031487208, -0.038634613, 0.011783556, -0.0123699745, -0.002932091, 0.011555889, 0.021635382, -0.027292592, 0.0039152037, 0.0072025955, -0.036316536, -0.026216343, 0.03220471, 0.0067576077, -0.009741441, -0.0014324128, 0.19162767, -0.0075406483, -0.026409516, 0.044567782, 0.01670947, 0.011749062, -0.013418629, -0.011893941, 0.0060539055, 3.0183292E-4, -0.0054536895, 0.01785471, -0.018586008, -0.003075246, 0.03455038, 0.022987593, -0.034715958, -0.026533699, -0.026368123, -0.008810071, 0.011024662, 0.0086513935, -0.0042636055, -0.018034084, 0.01054173, 0.0056227157, 0.0072025955, -0.013135768, 0.013584205, -0.0016229986, -0.008547908, -0.027182208, -0.007285384, -0.0017937499, -0.037834324, 0.006029759, 0.0093206, -0.019344902, -0.013418629, 0.046913456, -0.0018265202, 0.0020490142, 0.015605624, -0.023208363, 0.004115276, -0.0049880045, -0.031514805, 0.0021628484, 0.0038013698, 0.002243912, -0.019331103, -0.0080787735, 0.043187976, 0.008285744, 0.009189518, -0.0250987, 5.0751044E-4, -0.0055226795, 0.0012099188, -0.0100381, -0.016474903, 0.041973747, -0.016171344, 0.038662206, -0.027913507, 0.018185863, -0.025719613, -0.00480173, 0.028079083, 0.0024181127, -0.037034035, -0.0041601197, -0.031818364, 0.0021559494, -0.016792258, -0.004546466, 0.0029527883, 0.0011555888, 0.017151007, 0.03957288, 0.014108532, -0.012846008, 0.009230913, -0.003397776, 0.023539517, -0.016668076, 0.03054894, 9.3740673E-4, 0.016116152, 0.0028717245, -0.0027475418, -0.011383412, -0.0023749936, -0.0062194825, -0.01333584, -0.005553725, -0.01857221, -0.0032459972, -0.017385576, 0.025429852, -0.023787882, 0.052929416, 0.014308604, -0.025112497, -0.0408699, -0.007147403, 0.007982187, 0.04782413, 0.012728725, -0.017965095, -0.003040751, -0.037475575, 0.0042532566, -0.009589663, 0.012521753, -0.015536633, -0.0013289271, -0.009382691, -0.010596922, -0.0272374, 0.0048362254, -0.030355766, 0.010748701, -0.0081063695, 0.0027716884, -0.009286105, -0.016488701, 0.020614324, 0.007726922, -0.04070432, 0.033280957, 0.0035978481, 0.020048603, -0.0031666583, -0.004832776, -0.00996221, -0.0016730167, -0.03162519, -0.019620864, 0.008354735, 0.011997427, -4.7026642E-5, 0.0068817902, -6.023722E-4, 0.031873554, -0.028562017, -0.006005612, -0.018820575, -0.0102657685, -0.01635072, -0.02745817, -0.010776297, -0.011452403, -0.025912786, 0.015164085, 0.0027199457, -0.037668746, -0.023636103, 0.014170623, -0.0031425117, -0.02316697, -0.013777378, 0.016157547, -0.0054398915, -0.025636824, -0.010941874, -0.17484921, 0.025554037, 0.029279517, -0.016875047, 0.006423004, 0.011818051, 0.020172786, -0.0056123673, -0.021400815, 0.0041842666, 0.0157712, -0.0036047471, -0.04216692, -0.0014677703, 0.001071938, -0.0045257686, -0.007054266, 0.025512641, 0.018116873, 0.0114662, 0.015564229, -0.008023581, 0.033722498, -0.02337394, -0.010031201, -0.011431705, 0.0047223913, 0.02754096, 0.01534346, 0.0063229683, 0.012252691, -0.013273749, 0.026064565, -0.019952018, 0.033722498, -0.011769759, 1.4434081E-4, 0.020986874, -0.004094579, 0.022559853, 0.005557175, 0.022877209, 0.0058572832, -0.0030355765, 0.008754879, 0.03786192, 0.0049155643, 0.006150492, 0.010217475, -0.01039685, 0.040593937, -0.023332546, 0.0014349999, -0.016599085, 0.002337049, 0.015039902, -0.019538075, -0.0016126501, 0.020821296, 0.011811153, 0.004474026, -0.018848171, -5.320883E-4, -0.015039902, -0.005729651, -0.032287497, 0.02429841, 0.037558362, -0.0027216703, 0.006354014, -0.019758845, -0.012087114, -0.012494157, -0.008575504, 0.01635072, -0.0072094942, -0.02301519, -0.007292283, 0.037834324, 0.015688412, 0.017937498, 0.034274418, -0.007092211, 0.03068692, -0.019124134, -0.014184422, 0.001555733, 0.018834373, -0.014998508, 0.0049880045, 0.013439326, -0.008071874, 0.0102933645, 0.0022283893, -0.006678269, 0.008023581, 0.012783917, -0.001158176, 0.011880143, -0.023001391, 0.0023060034, 0.010189879, -0.03145961, -0.008375431, 0.0069093863, 0.016143749, 0.029389901, 0.004242908, 0.007871802, 0.014432787, -0.009341297, 0.0026888999, 0.010728003, 0.012211297, -0.014750143, -0.01175596, -0.0053674513, -0.012777018, 0.018406633, -0.0024784794, 0.022891007, -0.018696392, 1.4347842E-4, 0.01118334, -0.009017042, -0.036758073, -0.06788653, -0.038662206, 0.033639707, 0.018958556, -0.021414613, 0.009948413, -8.722971E-4, 0.028810382, -0.029555477, 0.043270763, 0.004760336, -0.01756495, -0.028244661, 0.027982498, 0.010341657, -0.006457499, 0.016254133, -0.017137209, -0.014101633, 0.008996345, -0.010907379, -0.0236637, -0.024615766, -0.010307162, -0.016792258, -0.01699923, -0.021593988, 0.013239253, 0.0136187, 0.003908305, 0.0024715802, -0.009631056, 0.009361994, -9.339572E-4, 0.01677846, 0.003708233, -0.0143913925, -0.019372499, 0.015605624, -0.051135667, 1.2579965E-4, 0.021497402, 0.026409516, -0.0029596873, -0.023925863, -0.02845163, 0.0055744224, 0.014377595, 0.006354014, -0.03388807, 0.0076165376, 0.006547187, -0.015991969, 0.003677187, 0.026119757, 1.8799878E-4, 0.0019989961, 0.009700047, -0.01619894, -0.0019524277, -0.014225815, 0.014060239, -0.036454514, 0.046941053, -3.8160302E-4, -0.023691297, -0.008403028, 0.011824951, 0.016888844, -0.020545334, -0.002581965, 0.014888124, 0.0038117184, 0.009955311, -0.033225767, -0.013591104, 0.019344902, -0.017233796, 0.018392835, -0.0051742783, -0.024864132, -0.018365238, 0.024836536, -0.0035426558, -0.0059193745, 0.012107811, -0.0021662978, -0.0094723785, 0.008885961, -0.03835865, 0.02624394, 0.028865574, 0.030576535, 0.012031922, -0.028368844, -0.007306081, -0.0074509606, 0.016033364, -1.4121468E-4, 0.006743809, -0.031597592, 0.005212223, -0.08792134, 0.037558362, 0.030272977, -0.004201514, 0.003929002, 0.019151729, -0.015853988, -0.0047223913, 0.0066092783, 0.013101272, 0.022201104, 0.0025215982, -0.007975288, -0.016047161, -0.0114662, -0.0056503117, -0.007609639, 0.00358405, 0.023925863, 0.0020317666, 0.007464759, -0.022601247, -0.005291562, 0.024712354, -0.02244947, 0.023636103, 0.008216754, 0.0034753904, 0.0021680226, 5.704642E-4, 0.042856824, 0.0024215623, -0.013715287, 0.040621534, 0.0033684552, 0.0039772955, -0.011424807, 0.015371056, 0.0023249758, -0.028948363, -0.005422644, -0.002130078, 0.0011443779, -0.013991249, -0.013025383, -0.017371777, -0.003233924, -0.013756681, 0.02853442, 0.03664769, -0.0077200234, -0.009844927, -2.9040637E-4, -0.03499192, -0.0044084853, -0.017247595, -0.0031511355, -0.014322402, -0.025692016, 0.012397571, 0.028341247, 0.008244351, 5.570973E-4, 4.984555E-4, 0.010203677, -0.011838749, -0.016543893, -0.010141586, 0.009658653, -0.017592546, -0.027554756, 0.002400865, 0.025333267, 0.019772641, 0.016502498, -0.020628123, 0.005691706, -0.0012607991, -0.044209033, 0.018406633, 0.018365238, -0.0077338214, -0.01254935, -0.01848942, 0.0072301915, 0.0078856, -0.034881536, 0.022490863, -0.027085623, 0.009624158, -0.016737066, 0.019841632, 0.009410287, 0.014943316, 0.031735573, 0.012880503, -0.0013366885, -0.0037116823, -0.006999074, 0.0022059674, 0.011404109, -0.009196417, -0.0014746693, 6.390234E-4, -0.031790767, 0.0041635693, -0.026119757, -0.021456007, -0.005512331, 0.0143362, -0.004956959, -0.015371056, -0.0073750713, 0.016957834, -0.007947692, 0.020241776, -0.005553725, 0.0026233592, -0.00846512, 0.028506825, 0.022201104, 0.011417908, -0.0063229683, -0.009279205, 0.055661436, -0.0010960846, -0.010638316, 0.005991814, 0.023180766, 0.012914998, 0.0073888693, 0.017040623, -0.009741441, -0.015840191, 0.003856562, -0.017633941, 0.0012547625, 0.017316585, -0.031349227, 0.110219024, -0.009217114, -0.021745767, 3.7103888E-4, -0.024960719, 0.02961067, 0.011852547, -0.0026975237, -0.020559132, -0.0145017775, -0.008285744, 0.009948413, 7.2526134E-4, 0.005243269, -0.036068168, 0.0016540443, 0.009727643, 0.019303508, 0.0013323766, -0.022270095, 0.035737015, -0.021593988, 0.006547187, 0.0026337076, -2.3068658E-4, -0.007012872, 0.025967978, 0.012818412, -0.009810432, -0.02788591, 0.017164806, 0.009023941, -0.025347065, -0.016309325, 0.029169131, -7.114633E-4, -0.017123412, 0.003111466, 0.018158268, -0.010748701, 0.0172062, 0.005964218, -0.014805335, -0.01606096, 0.01039685, -0.020848893, -0.023001391, -0.027444372, -0.028079083 ], - "id" : "0c5f2104-2c3c-4e8f-97e2-53c4617ad00c", - "metadata" : { - "name" : "Commuter Pro BeamMax RT Bike Light Set" - }, - "text" : "price: 105.99\nname: Commuter Pro BeamMax RT Bike Light Set\nshortDescription: \ndescription: ## Overview\nThe Commuter Pro BeamMax RT Bike Light Set is the perfect accessory for cyclists who prioritize safety and visibility. This set combines the BeamMax RT front light and the Flare RT rear light, ensuring that you can see the road ahead and be seen by others, day or night. With advanced features like a unique beam pattern, wireless connectivity, USB-rechargeability, and weather-resistant design, this bike light set is designed to enhance your cycling experience and keep you safe on the road.\n\n## Product Details\n- BeamMax RT front light provides a powerful beam that illuminates the road ahead while avoiding blinding oncoming riders.\n- Flare RT rear light offers ultimate visibility for any type of road or path.\n- Specifically designed beam pattern with focus, flash, and range settings for maximum visibility during the day.\n- BeamMax RT modes: high beam 1000 lumens - 1.5 hours, low beam 500 lumens - 3 hours, day flash 300 lumens - 12 hours.\n- Flare RT flash modes: 90 lumens - 6 hours, 45 lumens - 12 hours, 5 lumens - 15 hours. Steady modes: 25 lumens - 4.5 hours, 5 lumens - 13.5 hours.\n- Compatible with Blendr stems, helmets, and helmet mounts for integrated and clean mounting options.\n- USB-rechargeable with included USB-C and micro USB cable.\n\n## Features\n1. High Beam: Illuminate the road with a powerful 1000 lumen high beam setting, perfect for off-road or low-light conditions.\n2. Wireless Connectivity: Wirelessly pair the front and rear lights for convenient single-button power control.\n3. Fuel Gauge: Dual-fuel gauge displays the battery life of both lights, ensuring you always know when it's time to recharge.\n4. USB-C Chargeback: The USB-C charging port allows you to use the front light as a battery bank to recharge your gadgets on the go.\n5. Weather-Ready: Designed with a durable and weather-resistant construction, this light set can withstand various weather conditions.\n6. BeamMax RT with Kindbeam: Kindbeam technology directs the light towards the ground, ensuring optimal visibility without blinding oncoming riders.\n7. Flash, Focus, Range: The unique beam pattern of the front light is specifically designed for daytime visibility, making you visible from a meaningful distance.\n8. Blendr-Compatible: Offers seamless and clean mounting options on Blendr-compatible stems, ensuring proper orientation of the light when using a cycling computer above.\n\n## Specifications\n- Battery: Rechargeable Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh\n- Rechargeable: Yes\n- Charge Time: 4 hours for front light, 2 hours for rear light\n- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm)\n- Waterproof Rating: IPX4\n- Wireless Compatibility: ANT+ / Bluetooth\n- Weight: 257g\ntags: [bikelight]" - }, - "fa54f23c-a7c7-4614-9293-c27fac1b58a3" : { - "embedding" : [ 0.002231233, 0.002796898, -0.005450634, -0.014344141, 0.008338317, 0.0016175568, 0.013457234, -0.0664272, 0.0017214365, -0.025098754, -4.2315738E-4, 0.003792049, -0.011362179, 0.011927844, 0.0076678996, 0.004633562, 0.011124739, -0.0066657653, 0.0025419996, -0.025126688, 0.027082073, 0.019330371, -0.038632806, 0.0068927296, -0.0034655696, -0.025433963, 0.041789357, -0.0013556749, 0.036118742, -0.04257151, 0.02882795, 0.016942007, -0.038660742, -0.0046161036, 0.007084776, -0.04553252, 0.0063934084, 3.0094586E-4, 0.016453162, 0.0020845793, 0.028911753, 0.0061734277, -0.002262659, -7.5421965E-4, -0.016313491, 0.0102378335, 1.9608402E-4, -0.02040583, 0.002088071, -0.004046947, -0.021132117, 0.02121592, -0.008771296, 0.02266849, 0.007388559, -0.015726877, 0.006452768, 0.024023293, 0.021187985, 0.00645626, -0.011068872, 0.017151514, -0.019819217, -0.006829878, 0.002205045, -0.024470238, 0.011746272, -0.0073536416, -0.013561986, 0.009602333, 0.0136038875, 0.016746469, 0.023785854, -0.03296219, 0.014001948, -0.010803498, 2.9636294E-4, 0.01305219, -0.001310282, 0.0073815756, 0.014972657, -0.003645395, -0.028660348, 0.012151317, 0.04030885, 0.012332888, 0.008205631, 0.02916316, -0.041035134, 0.0063515073, 0.011543751, 0.0054226997, -0.010335603, 0.015838612, 0.0076539326, 0.0066064056, 0.008226581, 0.01394608, -0.006267705, -0.008792246, 0.0073257075, 0.010943169, -0.038968015, -0.010154031, -0.041929025, -0.022445017, 0.0049443287, -0.0073676086, -0.004752282, 0.0011845788, -0.01561514, 0.024358502, 0.007870422, -0.0058417106, -0.0024599433, -0.0034935034, 0.022081876, 0.015503404, -0.0020810876, -0.035113115, 0.0096372515, 0.02882795, 0.012584294, 0.018506316, -0.004382156, 0.0014211454, -0.01340835, 0.008254515, 0.030168787, 0.0045218263, -0.008212614, 0.03955463, 0.0027916601, -0.024581974, -0.0073536416, 0.02977771, -0.022975765, 0.028325139, -0.009686136, -0.007737735, 0.01448381, 0.031481687, -0.030503996, -0.011208542, -0.0132896295, 0.0129893385, 9.017464E-4, 0.020252194, 0.011348212, 0.0037536395, 0.020070624, -0.011536768, 0.01150185, 0.024302633, -0.012032597, 0.004556744, 0.0051817684, 0.0030762386, -0.027864225, 0.0014918535, -0.011599619, 0.026495457, 0.012053547, 0.004755774, 0.01646713, 0.007451411, 0.023967424, -0.017584492, 9.1134873E-4, -0.007535213, -0.018687887, 0.010447339, -0.035392456, 0.02840894, -0.0039561614, 0.026285952, 0.031900696, -0.011487883, -0.025266359, -0.021858403, 0.0083453, 0.02403726, 0.006438801, 0.011522801, -0.01938624, -0.0028562578, 0.014225421, -0.005632205, 0.02018236, -0.008910965, 0.007042875, 0.016006216, -4.4383512E-5, 0.0111596575, -0.5823693, -0.0039282274, -0.020657238, -0.0255457, -0.009707087, 0.021299722, 8.407498E-5, 0.025266359, -0.01150185, -0.0021980614, -0.010971103, 0.02252882, -0.012633179, -0.018478382, -0.0153777, -0.018101271, 0.009288075, -0.0024651808, 0.042962585, 0.0068089273, -0.039387025, 0.0025000984, -0.015782744, 0.030476062, 0.020517567, 0.009260141, 0.028353073, -0.026802732, 0.008575757, 0.012339871, -0.043437466, 0.016774403, -0.0012221151, 0.002665957, 0.046510212, -0.03824173, 0.027459182, 0.036481883, 0.02521049, 0.030643664, 0.002377887, -0.020475667, -0.013541036, -5.080507E-4, -0.029470434, -0.011864993, 0.034973446, -0.0068543204, 0.003701263, -0.024903215, 0.007332691, -0.0050351145, 0.0013888467, -0.019316403, -0.00921824, -0.02139749, 0.04472243, -0.0139111625, -8.3060184E-4, -0.0033608167, 0.007123186, -0.0029313306, 0.008645592, -0.03852107, -0.038884215, 0.02850671, -0.042403907, -0.020545501, 0.033939883, -0.0123678055, 0.0054087327, 0.011047921, 8.388948E-4, 0.008436087, 0.013645789, 0.046342608, 0.037878588, 0.020377897, 0.0016472366, 0.026285952, 0.024805447, 0.014155585, 0.003792049, -0.009350927, 0.03631428, -0.0019012621, 0.024819413, -4.2839503E-4, 0.021146085, 0.003039575, 0.0050351145, 0.0068787625, -0.0016175568, 0.0017371494, -0.017975569, 0.034749974, -0.0038828345, 0.02117402, 0.020070624, -0.01011213, -0.007402526, -0.0027270627, -0.012647146, 0.0010178473, 0.010154031, 0.0345265, -0.0011330753, -0.0064073754, 0.028562577, -0.0029906905, 0.021369556, -0.012193218, -0.008282449, -0.0269005, -0.021648897, -0.030923005, 0.008659559, 0.014944723, 0.0074164933, -0.048661135, -0.030112918, -0.014008932, 0.014246372, 0.0053668316, -0.015559272, 0.0114599485, -0.005171293, -0.008373234, -0.02652339, -0.00816373, 0.018380612, 0.018604085, 0.015587206, 0.001468284, 0.036956765, 0.028660348, 0.02860448, 0.006571488, -0.014029882, -0.057041354, -0.028297205, -0.002508828, -0.008394185, -0.03419129, -0.01366674, -0.006309606, -0.016299525, 0.002086325, -0.028367039, -0.004462466, -0.0016943754, -0.032906324, -0.033604674, -0.03988984, -8.345301E-4, -0.020391865, -0.0070812847, -0.011103789, 0.0012360822, -0.007119694, 0.014888855, 0.0017982551, -0.01458158, 0.011327262, -0.036146674, 0.0040748813, 0.020461699, 0.013987981, -0.015950348, -0.040392652, -0.0054401583, -0.022445017, -0.025992643, 0.024581974, -0.0030186244, 0.008680509, -0.017235316, -0.017542591, 0.025741238, -0.0016035897, 0.0139041785, 0.031146478, -0.033604674, 0.02860448, 0.012891569, 0.0105520915, 0.027738523, 0.029386632, -0.026006611, 0.0142114535, -0.006152477, 0.005129392, 0.0014499524, 0.012779833, -0.03530865, 2.6930182E-4, -0.014127651, 0.019539876, 0.0075910813, 0.0018995162, 0.021746667, -5.416589E-4, 0.009707087, 0.016536964, -0.010377504, 0.0027811849, 0.021104183, -0.005028131, 0.014001948, 0.019176733, 0.011194575, -0.024805447, 0.005199227, -0.020517567, -0.008128812, 0.0333812, 0.015000591, 0.010126097, -0.00794724, -0.005143359, 0.010356553, 0.006225804, 0.040197115, 0.002461689, -0.024428336, 0.002117751, -0.009546465, 0.033856083, 0.0072349217, -0.025559666, 4.9757546E-5, 0.036398083, 0.012123383, 0.010719696, 0.030029116, 0.005028131, 0.042515643, -0.020126492, 0.04257151, -0.024665777, 0.028227368, 0.034889642, 0.0281715, -0.011648503, 0.019176733, -0.002723571, -5.263825E-4, 0.015698943, 0.02163493, 0.0016917565, 0.014022899, 0.0108384155, -0.0069485977, -0.01716548, -0.008010092, -0.0017170719, 0.022961799, 0.009469647, -0.013457234, 0.0011880705, -0.0015040747, 0.027529018, 0.014253355, 0.015265965, 0.0056147464, -0.033800215, -0.013527069, -0.012304954, -0.014427942, -0.026663061, 0.012193218, -0.006976532, 0.013142976, -0.011236476, -0.0012256069, 0.011885943, 0.005894087, 0.0068927296, 0.011376146, 0.038325533, -0.020643272, -0.021271788, 0.009050636, 0.020992447, -0.013841327, 0.0029278388, -0.003935211, -0.0033049486, 0.003514454, 0.052627772, 0.024190897, 0.019721447, -0.04044852, -0.009001751, -0.013673723, -0.013645789, 0.03368848, -0.011990696, 0.009064603, -0.019316403, -0.013980998, 0.0055693532, -0.02197014, -0.02860448, -0.005317947, -0.02004269, -0.019623678, -0.022193613, 0.026034545, -0.0025158115, 0.01509836, -0.043633003, -0.025671402, -0.009797872, -0.001469157, 0.007961207, -0.005778859, -0.010133081, 0.009364894, 0.016802337, -0.0074863285, -0.010684778, -0.01394608, 0.009246174, 0.04332573, 0.0242747, -0.012751899, 0.030112918, -0.008114845, -0.027906127, -0.017933667, -0.02004269, 0.016774403, -0.005216686, -0.013555003, -0.015573239, -0.0022155202, -0.019218635, -0.0046195956, -0.026216116, 0.009748987, -0.02004269, 0.01380641, -0.02826927, -0.019553842, -0.021774601, -0.019456074, 0.017738128, 0.025964709, -0.012954421, 0.028534643, 0.03815793, 0.028883819, -0.015000591, 0.024330568, 0.0053668316, 0.013596904, 0.020922612, -0.031537555, -0.02201204, -1.6323967E-4, -0.026020577, 0.017277217, 0.016425228, -0.022403117, 0.022026008, -0.006264213, 0.027249677, 0.017081678, 0.0029645022, 0.0044869087, 0.016774403, 0.0031251232, -0.017067712, 0.028688282, 0.018143173, 0.0016943754, 0.0074095097, 0.01585258, 0.0025961217, -0.025880909, -0.0023324941, -0.03623048, -0.04533698, 0.017347053, -0.022403117, 0.030224655, -0.005705532, -0.0026886533, -0.037264038, -0.009162372, 0.0036663455, -0.0307554, -0.0061280346, -0.0320683, -0.0069206636, 0.0037571313, 0.028688282, 0.005241128, 0.016969942, 0.022277413, -0.011543751, 0.021816501, 0.020587403, 0.002246946, -0.023604281, -0.007388559, -0.025014952, 0.008966833, -0.011040938, 0.033604674, -0.012891569, 0.022039974, -0.007856455, 0.005258587, -2.6908357E-4, 0.029414566, -0.01684424, 0.022403117, 0.005604271, 0.017570525, 0.008310383, 0.013212811, -0.0047033974, 0.008212614, 0.00870146, 0.022431051, -0.010628911, 0.020168392, 0.01778003, 9.0261933E-4, -0.003959653, 9.531407E-5, 0.04167762, 4.4869084E-4, 0.013387399, -0.01356897, 0.002405821, -0.0332136, 0.018869458, -0.0069066966, -0.0015817662, 0.026355786, -0.023729986, -0.019930953, -0.029805643, 0.017221348, -0.009804855, -0.015126294, 0.0191907, -0.021146085, -0.016103987, -0.012402724, 0.016858205, 0.06290751, 0.008848114, -0.012151317, -0.005014164, 0.007940257, -0.03136995, -0.022095842, 0.019665578, -0.003053542, -0.009888657, -0.031537555, 0.005935988, -0.008589724, -0.012835701, -0.019176733, -0.020908644, -0.01567101, 0.009686136, -0.01839458, 0.056231264, 0.00562173, -0.020070624, -0.0129893385, -0.022207579, -0.027948027, -0.028157534, -0.004651021, -0.016481096, 0.025671402, 0.025000986, 0.036398083, 0.003977112, 0.011543751, 0.014225421, -0.0108384155, 0.0035162, -0.033884015, 0.0016341426, 4.5130966E-4, 0.021160051, 0.016145887, -0.009001751, -0.009385845, -0.019930953, -0.012849668, 0.011452965, -0.005143359, -0.01567101, -0.013778476, -0.018268876, 0.0020845793, 0.0018628527, -0.007018433, -0.016299525, -0.040141247, 0.0090296855, 0.034135424, -0.0024128046, 0.012891569, 0.01684424, 0.007521246, -0.04148208, 0.026788766, 0.0034376355, 0.003371292, 0.012025613, -0.02276626, -0.0191907, -0.03307393, 0.015182163, 0.013122025, 0.008596707, 0.029805643, -0.020014755, 0.02139749, 0.0111526735, -0.013443267, -0.012605245, 0.04779518, -7.708055E-4, -0.020014755, -0.006082642, -0.037515443, -0.039973643, 0.0014944723, 0.028995555, -0.001988556, 0.01984715, -0.04684542, 0.014316207, 0.0069695483, -0.009881674, 0.026188182, -0.015154229, 0.001339962, 0.018562183, -4.277403E-4, -0.035727665, -0.029610105, -0.013673723, -0.007884389, 0.01811524, 0.02097848, -0.007856455, -0.010426388, 0.036202542, -0.012486526, -0.018492348, -0.011606602, 0.003889818, 0.02624405, 0.04835386, -0.015922414, -0.025741238, -0.015573239, 0.0040713893, -0.03569973, 0.009993411, 0.007563147, -0.019637644, -0.002922601, 0.031956565, -0.01881359, 0.01227702, 0.02610438, -0.0117672235, 0.01509836, 9.0698403E-4, 0.026970336, -0.0166487, -0.0035249293, 0.03212417, 9.0523815E-4, 0.0039561614, 0.040616125, 0.006253738, -0.012249086, -0.025322227, 0.011578668, 0.019986821, -0.020168392, -0.009623284, -0.03061573, 0.0023516987, -0.027179841, -0.008771296, -0.013094091, -0.020755008, 0.005293505, -0.030336391, 0.010363537, -0.0077586854, -0.018240942, -0.008973817, -0.0043996144, -0.0061420016, -0.048800804, -0.013177893, 0.018632019, -0.01009118, -0.036649488, -0.0037955407, -0.006267705, 0.01140408, -0.014113684, -0.025126688, 2.0110342E-4, 0.026411654, -0.032766655, -0.0042739115, -0.0023377317, -0.011236476, -0.041091003, 0.0074723614, -0.009672169, -0.03438683, 0.02930283, -0.010447339, -0.034358896, -0.016299525, -0.022165678, -0.01203958, 0.0043646973, -0.011676437, 0.01646713, 0.001974589, 0.021886338, -0.004263436, -0.03983397, 0.023520479, -0.013087108, -0.009413779, 0.02648149, -0.02366015, 0.0151402615, -0.008722411, 0.018408546, 0.007137153, -0.01368769, -0.018883426, 0.01448381, 0.008282449, 0.0073955427, -6.1280344E-4, 0.006480702, -0.02958217, -0.03692883, 0.0090157185, 0.010614944, 0.00856179, 0.002723571, 0.0026135806, -0.022333281, 0.0027602345, -0.019204667, 0.012479542, -0.0035109622, 7.3719735E-4, -0.011355196, -0.020349964, 0.0035354046, 0.04472243, 0.016955975, -0.050979663, -0.011543751, 0.010105147, -0.020531535, 0.024344534, -0.004951312, 0.026369754, 0.008289433, 0.017361019, 0.0011758493, 0.016550932, 0.022696424, 0.022877997, 0.0044310405, 0.026146282, 9.707086E-4, 4.8579078E-4, 0.01277285, -0.0016795354, -0.046482276, -0.024540072, 0.029023489, 0.028520677, 0.0148190195, 0.01255636, -0.024232797, 0.005831235, 0.0051538344, 0.004029488, 0.01086635, 0.0022521836, 0.012200201, -0.038912147, -0.011096806, -0.0020828336, 0.0111596575, 0.028003896, -0.02055947, 0.009246174, -0.011718338, -1.445806E-4, -0.036733292, 0.0016035897, -8.7337586E-4, -0.0052725542, 0.034917578, 0.0057439413, -0.0130033055, 0.007563147, 0.018352678, -0.018967228, -0.0035266753, 0.020503601, -0.018003503, -0.007346658, 0.012577311, -0.025364127, 0.013729591, -0.007535213, 0.019889051, 0.006176919, -0.023604281, -0.0068647955, -0.03810206, -0.034107488, 0.00659593, 0.011187592, -0.03500138, -0.01905103, 0.01203958, -0.004811642, 0.028590512, 0.010028328, 0.0028056272, -0.01060796, -0.0016332696, -0.029135225, -0.029638039, -0.021816501, 0.01778003, -0.014735217, -0.024665777, 0.025922809, 0.19676752, 0.01187896, -0.019679546, 0.030867137, 0.017612426, 0.02153716, -0.008938899, 0.010677795, 0.0038549004, 0.012374789, -0.003844425, 0.010279735, -0.012744916, -0.0108384155, 0.004794183, 0.007200004, -0.048465595, -0.004015521, -0.020112524, -0.0033468497, -0.0045637274, 0.003528421, -0.0029889445, -0.0061420016, 0.0056706145, 0.0032874898, -0.008596707, -0.014427942, -0.003069255, 0.0036384114, -2.4267715E-4, -0.028520677, 0.0026450064, -0.02916316, -0.013631822, 0.0048500514, 0.021942206, -0.008135796, -0.0044310405, 0.0066552903, 0.013785459, -0.002737538, 0.00856179, -0.0024372467, -0.03128615, 0.022584688, -0.011173625, 0.010307669, 0.0077726524, -0.031481687, -0.016732503, -0.009993411, 0.0055868123, 0.024945118, 0.008792246, -0.025769172, -0.017877799, -0.014120668, 5.69593E-4, 0.015112327, -0.018715821, 0.03796239, -0.023394777, 0.003414939, -8.759947E-4, 0.0034760446, -0.017835898, -0.0026554817, 0.014735217, 0.0021561603, -0.008170713, -9.65471E-4, -0.006875271, -0.010307669, -0.02789216, -0.01098507, -0.009532498, -0.0030290997, 0.0019676054, 0.035085183, 0.011844042, -0.02032203, 0.015782744, -0.01051019, -0.0038269663, -0.034722038, -0.008436087, 0.009811839, 0.021942206, -0.020755008, -0.025000986, -0.023017667, 0.0019693512, -0.034917578, -0.009071587, 0.036705356, -8.2230894E-4, 0.019372271, -0.0076050484, 0.012521443, -0.013268679, 0.037459575, 0.017319119, -0.03536452, -0.037794784, -0.0020968004, -0.0063410318, 0.040616125, 0.011425031, -0.017835898, -0.0039002933, -0.010775564, -0.0040504388, -0.012633179, 0.013960047, -0.010621927, 0.0051363753, -0.015251998, 0.016774403, -0.019861117, 0.012339871, -0.014553646, 0.033101864, -0.024051227, -0.0074304603, -3.969692E-4, -0.029721841, 0.010517174, 0.01340835, -0.048381794, 0.008554806, 0.019274503, 0.01519613, -0.010670811, 0.011955778, -0.020796908, -0.0070393835, -0.016732503, -0.009001751, 0.01646713, -0.00524462, -8.3933125E-4, 0.021439392, 0.005649664, 0.037124366, -0.018492348, -0.006819403, -0.011557718, -0.015503404, -0.0052201776, -0.013038223, -0.0072977734, -0.008603691, -0.026830666, 0.0076818666, 0.002376141, -0.0562592, -0.043772675, 0.021523194, -0.014106701, -0.008191664, -0.004542777, 0.0077866195, 0.002824832, -0.0064457846, -0.01100602, -0.17732543, 0.029973248, 0.026188182, -0.0083453, 0.011669454, 0.0010911743, 0.029973248, 0.015503404, -0.02521049, 0.0061454936, 0.0042983536, 0.0024826396, -0.05019751, 0.009288075, -0.013177893, -0.014777118, -0.0048884605, 0.010964119, 0.019833183, 0.031118544, 0.011452965, 6.8787625E-4, 0.020377897, -0.018422514, -0.013785459, -0.0034393813, -0.014595547, 0.022514854, 0.0105381245, -0.013443267, -0.013373432, -0.02789216, 0.013233761, 0.0067076664, 0.041649684, -0.0037361807, 0.012996322, -0.004424057, -2.3809423E-4, 0.026397688, -0.013059174, 0.040252984, 0.023059567, 0.0035581011, 0.028995555, 0.032543182, -0.0018122222, 0.0051678014, -0.010363537, -0.0061175595, 0.024623875, 0.0019396713, 0.015503404, -0.01034957, 0.01825491, -0.019176733, 0.0059185294, 0.019064996, 0.01688614, 3.6336103E-4, -1.5298263E-4, -0.01730515, 0.0089808, -0.026034545, -0.027389348, -0.025755204, -0.0077098007, 0.012654129, 0.0037641148, -0.0059010703, 0.012311937, 0.014469843, 0.005977889, 0.011934828, 0.024190897, 0.015880514, -0.027501084, 8.8865234E-4, 0.025769172, 0.0055379276, -0.014169552, 0.04142621, -0.009462663, 0.013038223, -1.9128284E-4, -0.018282844, -0.007402526, -0.0058242516, -0.008226581, 0.012472559, -4.8797313E-4, -0.01877169, 0.0034027179, -0.010873334, -0.0039945706, 0.009050636, -0.003659362, 0.003256064, -0.007360625, -0.002548983, 0.009574399, -0.005241128, -0.027082073, -0.018003503, 0.029246962, 0.0058556776, 0.022877997, 0.023632215, 0.010461306, 6.18914E-4, 0.0017694482, 0.021565095, 0.021425424, 0.02507082, -0.019344337, 0.012877602, -0.014930756, -0.033492938, 0.0074164933, 0.0012456846, 0.034833774, -0.029721841, -0.0076050484, 0.005415716, -0.008519889, -0.020615337, -0.06553331, -0.004294862, 0.01189991, 0.013163926, -0.0294425, 0.012668096, -0.027389348, 0.056343, 0.0043297797, 0.026271984, -0.0033800213, -0.011208542, -0.028534643, 0.021774601, 0.0053493725, -0.019916985, 0.017598458, -0.01394608, -0.018506316, 0.013422317, -0.019106898, -0.0064841937, -0.02262659, -0.009783905, -0.018897392, -0.0055274526, -0.038549006, 0.01730515, 0.049275685, -0.008198647, 0.015559272, -0.013869261, -4.809896E-4, 0.0066971914, -0.01603415, 0.0011837059, 0.006051216, 0.02088071, 7.48982E-4, -0.05771177, 7.7735254E-4, 9.4015576E-4, 0.012591278, -0.018408546, -0.02733348, -0.013422317, -0.009420762, 0.00856179, 0.009399812, -0.010496223, 0.014295256, -0.0015485946, 0.003924736, -0.020545501, 0.026188182, 0.003613969, -0.008491955, -0.0105451085, -0.0045148428, -0.0052376366, -0.010880317, 0.028325139, -0.008883031, 0.014036866, -0.012374789, 0.0019099915, -0.01319186, 0.007165087, 0.0020548995, -0.012940454, -0.0063026226, 0.009036669, -0.0035162, -6.33754E-4, -0.020308062, 0.016718535, -0.0320683, -0.01782193, -0.0040120296, -0.017388953, -0.006917172, -0.02751505, -0.007898356, -0.028911753, -0.008261499, 0.0319845, 0.0027934061, -0.0093160095, 0.009134438, -0.03433096, 0.029274896, 0.02229138, 0.04525318, 0.011948795, -0.03556006, 0.011550735, 0.014665382, 0.009162372, -5.543165E-4, 0.004909411, -0.028003896, -0.0052481117, -0.083243504, 0.03307393, 0.0319845, -0.017137546, -6.725998E-4, 0.016439196, 0.0014997099, 0.01750069, 0.0051154247, -3.404464E-5, -4.7924372E-4, 0.0055693532, -0.026746863, 0.0014490794, -0.007933273, -0.011278377, -0.0042180433, 0.004595153, 0.023604281, 0.011445981, -0.0077098007, 0.016858205, -0.014099717, 0.028800016, -0.027640754, 0.04173349, -0.014267322, 0.047487903, 0.017277217, 0.0048221173, 0.002507082, -0.019344337, -5.2376363E-6, 0.04497384, -0.0045218263, 0.0017546082, -5.1765307E-4, 0.003458586, -0.0042564524, -0.043493334, -0.023995358, -0.02361825, -0.007919306, -0.020810876, -0.04340953, -0.02733348, 0.02798993, -0.00645626, 0.010202915, 0.015796712, 0.005461109, 0.014176536, 0.002246946, -0.050365113, 0.01472125, -0.016397294, 0.011075855, -0.008743362, -0.007856455, 0.008394185, 0.035448324, 0.008142779, 0.03480584, -0.027431248, 0.006162952, -0.020894678, -0.011529784, -0.0062188203, -0.00768885, -0.009728037, -0.015684975, -0.0020060148, 0.024470238, 0.0061594606, -0.010140064, -0.010440355, -0.009350927, -0.01187896, -0.010335603, 0.028632414, -0.0018506316, -0.018855492, -0.014246372, 0.008114845, -0.009623284, -2.147431E-4, -0.021760633, 0.017514657, -0.012863635, 0.009267124, -0.052907113, 0.02290593, -0.021187985, -0.023241138, -0.010314652, 0.0096163, 0.00236392, 0.01227702, 0.013757525, 0.012919503, 0.014071783, 0.00971407, -0.014071783, -0.0018034928, -0.008429103, 0.0074583944, -0.023157336, -0.0019955395, -0.011271394, 0.011508834, 0.007961207, -0.017807964, -0.008519889, 0.01650903, -0.019414173, 0.003502233, 0.008114845, -0.0033154238, -0.028213402, 0.042627376, 0.011871976, 0.027096039, 0.012891569, -0.007098743, 0.010405438, 0.014400008, 4.194474E-4, -0.033045996, 0.03424716, -0.012884586, 0.010419405, 0.008952866, -0.006987007, -0.016704569, -0.01839458, -0.008415136, 0.0048046587, 0.0037990324, 0.008170713, 0.09871897, 0.028367039, 8.6366446E-5, 0.030084984, -0.016495064, 0.022612622, 0.029246962, -0.005031623, -0.016676635, -0.040923398, 0.0117811905, 0.017752096, 0.014665382, 0.014120668, -0.046454344, 0.005792826, 0.016006216, 0.004584678, -0.013799426, 0.0032473346, 0.025028918, -0.0080869105, 0.006452768, 0.010391471, -0.008945883, -0.0030867138, 0.033241533, 0.036398083, -0.019916985, -0.03377228, 0.008645592, 0.0044170734, -0.010098163, -0.013694674, -0.0016498555, -0.0052201776, -0.0127938, 0.016662668, -0.0027043663, 0.010915235, -0.011369163, -2.4485952E-4, -0.021900304, -0.029386632, 0.03136995, -0.01984715, -0.013038223, -0.024763545, -0.04952709 ], - "id" : "fa54f23c-a7c7-4614-9293-c27fac1b58a3", - "metadata" : { - "name" : "VelozRide CargoMax Trunk Storage Bag" - }, - "text" : "price: 18.99\nname: VelozRide CargoMax Trunk Storage Bag\nshortDescription: A versatile trunk storage bag designed to provide secure and convenient on-bike storage for a wide range of cargo. The CargoMax easily mounts to compatible racks, ensuring a quick and tool-free installation process.\ndescription: ## Overview\n\nMaximize your cycling experience with the CargoMax Trunk Storage Bag. Whether you're running errands or going on an adventure, this bag offers simple and secure storage that keeps you organized. It features multiple pockets, durable materials with reflective accents, and a built-in rain cover to protect your gear in various weather conditions.\n\n### Product Details\n\n- Compatibility: Easily mounts to compatible VelozRide racks\n- Reflective Accents: Enhance visibility with front and rear reflective materials\n- Organization: Internal mesh pocket and two side pockets, each with a smaller internal pocket for easy organization\n- Phone Storage: Zippered pocket with soft lining provides secure storage accessible from the top of the bag\n- Weather Protection: Integrated rain cover securely stowed in rear pocket\n- Light Mount: Built-in light loop for easy rear light attachment\n- Versatility: Adjustable carrying strap for convenient off-bike use\n\n### Features\n\nFunctionality, performance, and style come together in the CargoMax Trunk Storage Bag. VelozRide offers high-quality materials and meticulous finishing for a perfect blend of functionality and aesthetics.\n\n#### VelozRide Compatibility\n\nThe CargoMax Trunk Storage Bag utilizes an innovative mounting system designed specifically for VelozRide racks. This secure and integrated mounting system ensures a hassle-free installation process and easy removal when needed.\n\n##### How it Works\n\nSimply slide the CargoMax bag onto the VelozRide rack. Once you hear a click, the installation is complete. To remove the bag, insert the key and press the release mechanism. The bag can then be effortlessly detached from the rack.\n\n#### Better Together\n\nVelozRide bags and racks are engineered as a complete system, providing seamless integration and maximum security for your valuable cargo.\n\n#### Integrated Light Mounting\n\nFor enhanced visibility during all hours of the day, VelozRide trunk bags and racks feature a dedicated spot to mount your rear light.\n\n## Specifications\n\n- Cargo Capacity: 12L\n- Bag Type: Trunk storage bag\n- Dimensions: 36cm (l) x 22cm (w) x 20cm (h)\n- Attachment: VelozRide mounting system\n- Material: Woven fabric\n- Weight: 900g\ntags: [trunkbag]" - }, - "2fcf4b6b-9c54-4981-a8cf-b089419a434b" : { - "embedding" : [ 0.015745241, 0.0016164602, -7.1257906E-4, -0.02310995, 0.009957729, -0.007023874, -0.011474779, -0.0060414677, 0.020156046, -0.023363905, -8.955273E-4, 0.017857082, -0.01803084, -0.0011010307, 0.009382987, -0.016306616, 0.016012562, 0.009550063, 0.012951731, -0.011595073, -0.0048218127, 0.03084891, 0.017736787, 0.009616894, -0.013753695, -0.022307986, 0.01758976, -0.026197515, 0.02491437, -0.023337174, 0.0287638, 0.011648538, -0.046861473, -0.006058175, -0.031062767, -0.021973833, 0.009523331, -0.021599583, 0.015317527, -0.009042152, 0.018565483, 0.002761766, 0.016787795, 0.01708185, -0.01690809, 0.02873707, -0.0064190594, 0.0026966063, 0.01963477, 0.017001653, -0.011301019, 0.019501109, -0.020730788, 0.009563429, 0.013579936, -0.010505738, -0.010672814, 0.020530296, 0.015531383, -0.0042002904, -8.946919E-4, 0.007885987, -0.024139138, -0.0071976334, -0.026718792, -0.0024677124, -0.027801445, 0.012791337, 0.0015287453, 0.003542011, 0.008059746, 0.045631792, 0.032639965, -4.824319E-4, 0.0076854955, -0.020343171, -0.031116232, 0.013780427, 6.131689E-4, 0.007859254, 0.03902895, -0.017616492, -0.006559403, 0.019300617, 0.012243329, 0.037184432, -4.7741964E-4, 5.14594E-4, -0.020476833, -0.009035469, -0.009957729, 0.0058175856, 0.010452273, 0.032639965, -0.007478321, 0.020222878, 0.0014853055, 0.039055683, -0.009209229, 0.0050690854, -0.007458272, -0.0020416686, -0.004153509, -0.023390638, -0.049026776, 0.010879988, 0.0037024037, 0.00345179, 0.007799107, -0.018819438, -0.026264345, 0.02464705, 0.022214424, -0.011855712, -0.010118121, -0.013513106, 0.009730506, -0.017603125, -0.0012213255, -0.044669434, -0.0061684456, 0.051379208, 0.003749185, -0.0024894322, -0.0072109997, -0.007251098, -0.02948557, -0.010164903, 0.039055683, 0.008714683, 0.021465922, 0.012410404, 0.010666131, 0.0054366523, -0.037264626, 0.017803617, -0.0197016, -0.010626033, 0.0018211282, 0.011354484, 0.006936995, 0.030287534, -0.0394834, -5.751591E-4, -0.0070105083, 2.994837E-4, -0.0116819525, 0.027346997, 0.009971095, 0.011802248, -0.017068483, -0.03590129, 0.015665045, 0.049106974, -0.009817385, 0.0040632877, -0.022080762, -0.008046379, 0.0013767062, -0.009155764, -0.013967552, 7.088199E-4, 0.016266517, -0.011508194, -0.013954186, 0.016039295, 0.011909177, -0.012310158, 0.0018010791, 0.020182779, -0.019113492, 0.034751806, -0.016400179, 0.0027751322, 0.0025295303, 0.04100713, 0.011668587, 0.006048151, -0.012056204, -0.012243329, 0.008447362, -4.3481524E-4, -0.0031209793, 0.028068766, -0.02491437, -0.010519104, 1.4932416E-5, -0.024633683, 0.030501392, -0.02539555, 0.008407264, 0.020944646, -0.0067231376, 0.028843999, -0.61633664, -0.011153993, -0.008975322, -0.019166958, 0.012577481, 0.026625229, -0.012129717, 0.019100126, 0.009503282, 0.019821895, -0.0027350339, 0.018672412, -0.031249892, -0.013232418, -0.023029754, -0.026879184, 0.020704055, -0.01158839, 0.019300617, -0.027480658, -0.026010389, 0.009155764, -0.0149031775, 0.019220421, 0.0041835825, 0.0024693832, 0.017870447, -0.012671043, -0.010325296, 0.01803084, -0.024513388, 0.020436734, 0.0057307063, 0.021211967, 0.043279365, -0.028309355, 0.02607722, 0.013887356, 0.012102985, 0.01851202, -0.021358995, -0.030661784, -0.0015813742, -0.013372762, -0.003471839, -0.001961472, 0.026545033, 0.006649624, -0.023577763, -0.014702687, 0.007966183, -0.0060715415, 0.021091672, 0.0030792104, 0.007003825, -0.02454012, 0.039804183, 0.014234874, 0.025970291, 0.0020633885, 0.0014978362, 0.018124403, -0.015865536, -0.03221225, -0.030341, 0.02911132, -0.050603975, -0.025756434, 0.015130402, 0.011401265, -0.0026514959, -0.011722052, -0.014675954, 0.01847192, -0.0117421, 0.004374049, 0.03469834, 0.0061183227, 0.020156046, 0.015210598, 0.025128229, 0.0061417134, 0.01075301, -0.0227357, 0.032479573, -0.0010241758, 0.017910546, -0.028416283, 0.0050256457, -0.0012004409, 0.006916946, 0.026852453, -0.013726963, -0.007424857, -0.011394582, 0.022708967, -0.014675954, -0.0013090404, 0.01198269, -0.015959099, -0.009556746, -0.0027634369, -0.0061951773, 0.012149766, 0.015451187, 0.009737188, -0.0035921338, -0.002867024, 0.04263779, -0.0037057453, 0.013513106, 0.014341802, -0.022749066, -0.006415718, 0.004611297, -0.020209512, 0.022174325, 0.022267887, 0.0272668, -0.011100529, 0.009496599, -5.864367E-4, 0.0151705, -0.0032797016, -0.019567939, 0.0068501155, 0.022201058, 0.012771288, -0.029726159, -0.03555377, 0.04918717, 0.04151504, 0.022120861, -0.004738275, 0.02161295, 0.024459925, -0.006138372, -0.00512255, 0.025876729, -0.039750718, -0.025408916, 0.006629575, -0.020209512, -0.027400462, -0.022187691, -0.0019213739, -0.022067396, 0.0018211282, -0.0048819603, 0.0028620115, -0.007291196, -0.011160675, -0.024901005, 0.034858733, -0.008253554, -0.022882726, 0.0077590086, -0.009997827, -0.007231049, -0.02341737, 0.015932366, 0.019474376, -0.014675954, -0.011488145, -0.026371274, -0.0051659895, 0.028148962, -0.0037124285, -0.024486657, -0.039804183, -0.0029388666, -0.010057975, -0.031169696, 0.0055769966, -0.007130803, 0.014475463, -0.02985982, 0.0099777775, 0.018084304, -0.005844318, -0.003658964, 0.013900722, -0.01939418, 0.0049287416, 0.06356907, 0.015451187, 0.004036556, 0.022775799, -0.010659448, 0.01796401, 0.003089235, 0.010251783, 0.003192822, 0.018792707, -0.0109936, -0.035874557, -5.61793E-4, -0.0043573417, 0.02464705, -0.0011311044, 0.03627554, -0.003949676, 0.012243329, -0.037130967, 0.020904547, -0.0124237705, 0.0019447645, 0.009489916, 0.034858733, 0.01561158, 0.015705142, -0.021626316, -0.011615123, -0.01387399, -0.0076587633, -0.0046513956, -0.0035887922, 0.028309355, -0.0040231897, -0.010479006, 0.0032195542, 0.0045277593, 0.011976006, -0.026598496, -0.011140627, 0.008220138, -1.537099E-4, 0.024112407, -0.005460043, -0.004975523, 0.0235243, 0.015264062, -0.0024593584, 0.0068133585, 0.0280153, 0.01424824, 0.012831436, -0.012002739, 0.018258063, 6.737339E-4, 0.028443016, 0.027400462, 0.03544684, -0.025622774, 0.005329724, -0.0066462825, 0.02873707, 0.0047048596, -0.002447663, 0.027908372, -0.008540925, -0.0077590086, -0.0027250093, 0.0030090385, 0.019420912, -0.011227506, 0.0071374862, -5.0874637E-4, -8.090655E-4, 0.0025295303, 0.0076854955, 0.021960467, -0.004494344, 0.004631346, 0.0341637, -0.012216596, -0.009844117, -0.014582392, -0.008139942, 0.005523532, 0.0103119295, -0.015424455, -0.0064658406, 0.005754097, 0.016146224, 0.0046580783, 0.004577882, 0.021586217, 0.009730506, 0.0102451, -0.032533035, -0.019100126, -0.01196264, 0.032666698, 0.010739644, 0.009108983, -0.010265148, 0.032693427, -0.01653384, 0.014916544, 0.001349974, 1.142382E-4, -0.0064792065, 9.899252E-4, -0.027320266, -0.00947655, 0.046407025, -0.035473574, -0.024139138, 4.6530663E-4, -0.012798021, 0.005356456, -0.02174661, 0.015678411, 0.008206773, 0.01479625, 0.0046948353, 0.006746528, -0.00719095, 0.006569428, 4.2332878E-4, -0.015264062, -0.022869362, 0.002776803, 0.0219872, -0.015477919, 0.008360483, -0.012697775, 0.013359396, -0.011434681, -0.016319983, -0.006686381, -0.04485656, 5.8100675E-4, 0.055709817, 0.004868594, 0.014234874, 0.044669434, 0.012443819, -1.7240153E-4, -0.0061216643, -0.0068567987, 0.0023490884, 0.017322438, -0.028523212, 0.004384074, -0.01598583, 0.01015822, -0.001433512, -0.0015011778, 0.01198269, -0.041942757, -0.0142749725, -0.027093042, 0.0028586702, -0.018832805, 9.14741E-5, 0.026571766, 0.022896092, -0.008560973, 0.014421999, 0.034431018, -0.0036088412, 0.008634487, -0.007023874, -0.012022788, 0.0045277593, -0.023310442, -0.02774798, 0.013406177, 0.009844117, -0.008627804, 0.044509042, 0.016881358, 0.022254521, 0.033629056, -0.017990742, -0.010184952, -0.014448731, -0.009917631, 0.004514393, 0.0076788124, 0.01598583, -0.029432105, 0.032907285, 0.012771288, -0.030955838, 0.011067113, 0.015945733, 0.019300617, -0.0355805, -0.019554574, -5.5970455E-4, -0.031009303, 2.8444687E-4, -0.019728333, 0.045257542, -0.0107195955, -0.0011394583, 0.017215509, -0.0027383754, 0.0016782783, -0.008467411, 0.0017860422, -0.025382183, 0.0066897226, -0.019728333, -0.0014176398, 4.5444668E-4, 0.0040031406, -0.0068835304, -0.025195058, 0.013439592, 0.0068434323, 0.031517215, -0.016801162, -0.012477235, -0.03378945, -6.282057E-4, 0.008360483, 0.040124968, 0.0024643708, -0.006957044, 0.0035319864, 0.01286485, -0.0052060876, 0.03916261, -0.01046564, -0.010051291, -0.005062402, 0.026651962, -0.0029539035, 0.0036923792, -3.5399225E-4, 0.020209512, -0.005844318, -0.0018896294, -0.0061617624, 0.017375903, -0.011935908, -0.020463467, 0.006352229, -0.017028384, 0.005977979, 0.0055803377, -0.011775515, -0.0013508094, -0.012604212, -0.04426845, 0.003902895, -0.011060431, -0.013900722, 0.014021017, -0.015651679, -0.006957044, -0.04202295, 0.021826807, -0.0048786188, -0.0073780757, 0.011180725, 0.001655723, -0.020343171, -0.018993199, -0.005102501, 0.03159741, 0.014315071, -0.032613233, 0.011835663, -0.027400462, -0.042450666, -0.010659448, 0.023203513, -0.005169331, -0.015531383, -0.0069704102, -0.0011035369, 0.0070773386, 0.021559484, -0.013954186, -0.021759976, 0.015397723, -0.013399494, 0.010953502, 0.01636008, -5.371493E-4, -9.3896704E-4, -0.014729419, -0.013098758, -0.010505738, -0.0147561515, -0.0040666293, -0.01888627, 0.0013625047, 0.014970008, 0.017816983, 0.0063355216, -0.010057975, 0.03678345, -0.0013516448, 0.009022104, -0.020784253, -0.022334717, -0.020650592, 0.008507509, 0.020730788, -1.2958831E-4, 0.020503566, -0.026264345, 1.15491275E-4, 0.020650592, 0.018004108, -0.032559767, -0.0121364, -0.007872621, -0.0027500708, -0.002255526, -0.0072043166, -0.013994285, -0.02242828, -0.0181645, 0.026504934, 0.012517333, 0.011341118, -0.011902493, 0.013673498, -0.018405091, 0.012550748, 0.0062219095, 0.016801162, 0.009897581, -0.0025646163, -0.027534122, -0.029886553, 0.030929107, -0.0017509563, -0.00947655, 0.008073112, -0.028576676, -0.0030040261, 0.0021268772, -0.009743871, -0.011822296, 0.012403721, -0.019648137, -0.013860623, -0.019407546, -0.02849648, -0.04301204, 0.0011787211, 0.0035486938, -0.0050557195, 0.0219471, -0.014863079, 0.021051574, 0.014916544, 0.0040465803, 0.04028536, 0.0079795495, 0.038307182, 0.02086445, 0.0049287416, -0.006385644, -0.029645963, -0.014301704, 0.0035019126, 0.004029873, 0.03282709, 0.019073395, -0.002491103, -0.019514475, -0.0035988167, 0.008781514, -0.025475746, 0.0028737069, 0.023764888, 0.009055519, -0.022455012, -0.01847192, -4.2980298E-4, 0.0028636823, -0.014435365, -0.010512421, 0.012704458, -0.016213054, -0.008380531, 0.048010956, -0.002532872, 0.0045277593, 0.030394463, -0.0066897226, 0.031142963, -0.001607271, -0.002649825, -0.021759976, 0.0079595, 0.021252066, -0.024486657, -0.0022705626, 0.03060832, 0.014087847, -0.009062202, -0.00450771, 0.027560854, 0.021800075, -0.012657677, -0.013573253, -0.019514475, -0.0127579225, -0.015451187, -0.034484483, -0.018498654, -0.0028486454, 0.002561275, 0.012517333, 0.022254521, -0.015598214, -0.014916544, -0.022307986, 0.0026247636, 0.0013767062, -0.037371557, -0.00932284, -0.0038694798, -0.010191635, -0.0098508, -0.007023874, 0.003284714, -0.015397723, 0.011481462, -0.017496197, -0.009623577, 0.011668587, -0.04151504, 0.0028987683, 0.006305448, 0.0054132617, -0.0340835, 0.0072444146, 0.014515562, -0.015143767, 0.0065426957, 0.012129717, -0.0211986, -0.0052829427, -0.007999598, 0.016640767, 0.011568341, -0.012283427, 0.008520875, 0.018779341, 0.010011193, -0.009937679, -0.015250696, 0.005633802, -0.026130684, 0.008674585, 0.05512171, -0.034992393, 0.0026047146, -0.0015997526, 0.021091672, 2.5144935E-4, 0.0049855476, -0.005092476, -0.003939652, -0.007478321, -0.011595073, -0.012590846, 0.0017325779, -0.014475463, -0.025301987, -0.008440679, -0.030260803, 0.0021753293, 0.016573938, 0.01083989, 3.4292345E-4, -0.0066563073, -0.021907004, -0.0204501, -0.0079795495, 0.017937278, -0.019126859, 3.0073678E-4, 0.015651679, 0.03603495, -0.0035286448, -0.002315673, -0.02297629, 0.01273119, -0.017669957, 8.9803344E-4, 0.0053397487, 0.013646767, 0.0061717867, 0.037505217, -0.009596844, 0.029432105, 0.010138171, 0.026438104, -0.0035052542, 0.0018378359, 0.006462499, 0.0076788124, -0.0018896294, -0.007879304, -0.039750718, -0.021318896, 0.0121364, 0.017121946, 0.005794195, 0.022307986, -0.002684911, -0.0063756197, 0.0129049495, -0.008340433, -0.0010016205, 0.021693146, 0.025181692, -0.034725074, -0.016627403, -0.009864166, 0.025783166, 0.0048919846, -0.0037592098, -0.0130519755, -0.009483233, 0.0058543426, -0.025796533, -0.039323002, -0.0109936, -0.0035988167, 0.020543663, -0.004597931, -0.010519104, 0.011748783, -0.0016874674, -0.033254806, 0.01083989, 0.02113177, -0.04234374, -0.010900037, -0.0049788645, -0.0051860386, -0.012256694, -0.016680866, 0.03517952, 0.025408916, -0.0044676117, 0.017669957, 0.0012280085, -0.027186604, 0.03820025, 0.004648054, -0.027453925, -0.03590129, 0.0131990025, 0.012236645, -0.013158904, 0.012062886, -0.025930192, -0.059024606, -0.0011703672, -0.006449133, -0.022655504, -0.021465922, 0.008407264, 0.008908492, 0.013700231, 0.010940135, 0.19471703, -0.010305246, -0.004501027, 0.05327719, -9.072226E-4, 0.017736787, 0.015665045, 0.009002054, 3.6610526E-4, 0.022535209, -9.164118E-4, 0.028710337, -0.02335054, -0.0047750315, 0.0027868275, -0.005961271, -0.05129901, -0.029699428, -0.009790652, 0.0025796532, -0.029752892, -0.015624946, 0.0072377315, -0.010552519, 0.019755065, -0.018859537, -0.005483434, -0.0037057453, 0.024500022, 0.0064858897, -0.0052628936, -0.014742785, 0.0028854022, 0.014168044, -0.011000283, -0.0074048075, 0.006155079, -0.010331979, 0.019140225, 0.0141279455, -0.0063756197, 0.0057708044, 0.01752293, -7.501712E-4, -0.020597128, 0.009650309, -0.023323808, -0.01554475, 1.5820007E-4, 0.0032780308, -0.007899352, 0.013553204, 2.577147E-4, 0.040044773, 0.0046012728, -0.010552519, 0.0016289909, -0.024433192, 0.0024226017, -0.0012981804, -0.013847258, 0.037745807, -0.012503967, 0.01901993, -1.4734014E-4, 0.008781514, -0.026865818, -0.016627403, -0.017857082, 0.007672129, -0.010211684, -0.028416283, -0.029752892, 0.019086761, -0.014502196, -0.0092760585, 0.012189864, 0.04376054, 5.8100675E-4, 0.028416283, -0.0017943961, 0.009797336, 0.016854625, -0.026678693, -0.0060214186, -0.031142963, -1.71775E-4, 0.00534309, 0.025823263, 0.011735417, 0.009550063, -0.024419826, 0.0062586665, 0.015905634, 0.011080479, 0.0010742986, -0.022067396, -0.009610211, -0.015584848, 0.012878217, -0.01365345, 0.055175174, -8.328738E-4, 0.015838804, -0.026478203, -0.011227506, -0.0075117364, 0.047904026, 0.02317678, -0.027146505, -0.011280971, -0.031062767, 0.0058944407, -0.011027015, 0.008567656, 0.010111439, -0.002093462, -0.02838955, 0.005376505, 0.00329808, 0.008560973, -0.012109667, 0.016333349, -0.020209512, 0.008186723, -0.015076937, -0.023457468, 0.0310895, 0.0036088412, -0.031303357, -0.0060414677, 0.004724909, 0.0012472222, -0.027694516, -0.0153843565, 0.0121364, 0.0022287937, -0.010512421, 0.010926769, -0.041916024, -0.020837717, 0.008293652, 0.012924998, -0.0028152303, 0.046407025, -0.061644357, -0.0056939498, -0.0027651077, 0.0036288905, -0.02137236, -0.011728734, 0.019875359, 0.010258465, -0.0052361614, 0.012376989, 0.011427998, -0.024553487, -0.032506302, -0.0037792588, 0.02297629, -0.0143819, 5.868544E-4, 0.022936191, 0.006923629, -0.02764105, 0.012196547, -0.16862646, 0.007104071, 0.008915175, -0.027146505, 0.011568341, -0.0034751806, 0.010726279, -0.007251098, -0.0015847157, 0.012376989, 0.0145690255, -0.003889529, -0.019354083, 0.003067515, 0.0018562143, -0.0016573938, -0.0044475626, 0.006305448, 0.028042033, -0.016279884, 0.028175695, -0.021479288, 0.01851202, 0.033121143, -0.005219454, 0.022174325, -0.024393095, 0.0112742875, 7.0547836E-4, -0.014876446, -0.004668103, -0.024847541, 0.019487742, -0.012009422, 0.025007933, -0.013005194, -0.0079595, -0.0011611781, -0.0023708083, 0.048518866, -0.0034150332, 0.022307986, 0.021586217, 0.016199687, -0.004521076, 0.009576796, -0.0025161644, -0.020209512, 0.014221508, -0.016867992, 0.033682518, -0.0500426, -0.020169413, -0.023216879, 0.011468096, 0.017001653, -0.010278515, 0.019273886, 0.009376304, -0.019795163, -0.020289708, -0.0015797034, -0.0018628972, -0.02205403, -0.0128849, -0.022989655, -0.009516648, 0.032907285, 0.006833408, 0.01418141, 0.0044074645, -0.014087847, -0.013058659, 0.03122316, 0.00864117, 0.0012656006, -0.017750153, 8.1491313E-4, 0.028924195, -0.009583479, -0.011595073, 0.05033665, -0.03282709, 0.0049254, -0.019608038, -0.0057875123, -0.037371557, 0.009897581, 0.0131990025, 0.004868594, -0.0027350339, -0.03084891, -0.010044608, 0.010539154, -0.008073112, 0.013025244, 0.010385443, -0.012256694, 0.0034116916, -0.0158789, 0.007879304, 0.0022170984, -0.026250979, 0.027039578, -6.127512E-4, 0.009369621, 0.0109936, 0.013740329, -0.004788398, -0.021653047, 0.020022387, 0.025048032, 0.029645963, 0.014822981, -0.0049086926, 0.016867992, 0.0021753293, -0.029726159, 0.010365394, -0.028309355, 0.0152373295, -0.0050557195, -0.0250213, 0.01783035, -0.008908492, -0.018044207, -0.063676, -0.018151134, 0.034992393, 0.019474376, -0.013285883, -0.002392528, -0.0013516448, 0.052020777, -0.005490117, 0.015972463, 0.0060982737, -0.0158789, -1.13924936E-4, 0.0044475626, 0.027480658, 0.008687952, 0.013272516, -0.039804183, -0.006449133, 0.009002054, -0.0054366523, -0.026197515, -0.02315005, -0.009804019, -0.025382183, -0.0272668, -0.04052595, 0.030528124, 0.0197417, 0.006950361, 3.5044187E-4, -0.0015646666, -0.002511152, -0.0057774875, -0.01789718, -0.006218568, -0.018525384, 3.6004875E-4, 0.030501392, -0.045792185, 8.738074E-4, 0.0117421, 0.023096584, -0.02924498, -0.0070572896, -0.02812223, 0.01037876, 0.0087213665, -0.011374533, -0.027480658, -0.0057373894, 0.012503967, 0.003876163, 0.006950361, 0.017923912, -0.0042905114, 0.009068885, -0.0096837245, -0.019073395, 0.013586619, 0.0111272605, 0.020276342, -0.025997024, 0.012216596, -0.0053130165, -0.019714966, -0.006693064, 0.027253434, 0.0042470717, -0.020810984, 0.01710858, 0.012403721, 0.0018612265, 0.033655785, -0.023297075, -0.0065928185, 0.0131990025, 0.0061751283, 0.016413545, 0.014769517, -0.019821895, -0.03320134, -0.011548292, -0.028202426, 0.0310895, 0.0076921782, 0.009503282, 0.013265833, 0.01380716, -0.055709817, -0.0038026494, 0.022040663, 0.023056487, -0.005349773, -0.03456468, 0.0059646126, 0.014836348, -0.012223279, 0.0027734614, 0.005600387, -0.02713314, -0.026839087, -0.08639833, 0.025168326, 0.04111406, -0.022922825, -0.0042303638, 0.02508813, 0.011187408, 0.005209429, -0.0035386693, -0.0149031775, -0.015010106, 0.0052261367, -0.0149031775, -0.025422283, -0.010479006, -0.020196145, 0.0012255023, 0.0037826004, 0.0026882526, 0.014435365, -0.010726279, 0.026157416, -0.009610211, 0.008935223, 0.001829482, 0.017643224, 0.0029739526, 0.011040381, -0.0053464314, 0.009209229, 3.2120358E-4, -0.018151134, 0.0051860386, 0.03098257, -0.010198318, -0.010679497, -0.005503483, 0.0070973877, -0.011234189, -0.056886032, -0.015491285, -0.0052227955, -0.0017893838, -0.014408633, -0.023631228, -0.0124906, 0.0041835825, 0.005934539, 0.010271831, -0.008915175, 0.015290794, 0.018217966, -1.9096264E-5, -0.058329567, 6.8542926E-4, 0.009316157, -0.002192037, -0.0011110553, -0.010953502, 0.02229462, 0.036756717, 0.021439191, 0.02999348, -0.038494308, 0.014716052, 0.01772342, -0.024419826, -0.015892267, 0.020770887, -0.0017576393, -4.0202658E-4, -0.01765659, 0.016934821, 0.008320384, 0.021519387, -0.022642137, 0.0076988614, 0.014863079, -0.020343171, 0.0257698, 0.013386128, 4.4692826E-4, -0.04448231, 8.504168E-4, 0.014595758, -0.018792707, -0.025422283, 0.008253554, -0.013980919, 0.002588007, -0.03878836, -0.004126777, -0.036088414, -0.013399494, 0.036596324, 0.0120896185, -0.014635856, -0.041809093, 0.004557833, 0.008226821, 0.0041134106, 0.014689321, -0.008494143, 0.016867992, -0.006148396, 0.010966868, -0.012223279, -0.04052595, 0.008039696, 0.005349773, 0.017268974, -0.016493741, 0.009035469, 0.02389855, -0.043413024, 0.018552117, -0.008547608, -0.01347969, -0.025288621, 0.009122348, 0.003236262, 0.028148962, -0.0092025455, -0.0022972948, 0.015397723, 0.010438908, -0.0025345427, -0.008139942, 0.009924314, 0.008627804, 6.719587E-5, 0.016266517, -0.022281254, -0.014782883, 0.0066730147, -0.008741415, 0.002609727, -4.8117884E-4, 0.0065727695, 0.07426193, 0.022134226, -0.0015771973, 0.010626033, 0.009262692, 0.0111272605, 0.012931681, 0.012677725, -0.032399375, -0.022789164, 0.014328437, 0.0067933095, -0.009162447, -0.0016682537, -0.039750718, 0.0051091835, 0.016988287, -0.0070773386, -2.1970492E-4, 0.0027634369, 0.0052261367, 0.0124972835, -0.0116084395, 0.009262692, -0.01077306, 1.3292982E-4, 0.03544684, -0.009075567, -0.0079060355, -0.028309355, 0.01728234, 0.018084304, -0.0325865, -0.02764105, 0.023510933, -0.012169815, -0.03916261, -2.725427E-4, 0.010144854, -7.150852E-4, 0.009289425, 0.04135465, -0.013833892, -0.0028068766, 0.004935425, 0.0107195955, -0.031677607, -0.0416487, -0.021907004 ], - "id" : "2fcf4b6b-9c54-4981-a8cf-b089419a434b", - "metadata" : { - "name" : "AquaChill 32oz Insulated Water Bottle" - }, - "text" : "price: 24.99\nname: AquaChill 32oz Insulated Water Bottle\nshortDescription: \ndescription: ## Overview\nStay hydrated and refreshed on your long bike rides with the AquaChill 32oz Insulated Water Bottle. This premium water bottle is designed to keep your water cold for extended periods, ensuring you have a constant supply of chilled hydration. With its larger capacity and advanced insulation, the AquaChill is the perfect companion for those hot and demanding rides. The bottle features a secure screw cap, a comfortable grip, and a leak-proof design for hassle-free use.\n\n## Product Details\n- Premium insulated water bottle designed for optimal temperature control and convenience\n- Advanced insulation technology keeps water cold for an extended period\n- Secure screw cap ensures a leak-free closure\n- Ergonomic design with a comfortable grip for easy handling\n- Generous 32oz (946ml) capacity for longer rides without refilling\n- BPA-free and made with high-quality materials for safety and durability\n\n## Features\n1. Enhanced Temperature Control:\n - Advanced insulation technology keeps your water cold for hours, even on the hottest days.\n2. Leak-Proof Design:\n - The secure screw cap provides a leak-free closure, preventing any spills or leaks during your ride.\n3. Comfortable Grip:\n - The bottle's ergonomic design and textured surface ensure a secure and comfortable grip, even when your hands are wet.\n4. Large Capacity:\n - With its generous 32oz (946ml) capacity, the AquaChill allows you to carry enough water for longer rides without the need for frequent refills.\n5. BPA-Free and Durable:\n - The bottle is made with high-quality, BPA-free materials that are built to withstand the demands of cycling.\n \n## Specifications\n- Size: 32oz (946ml)\n- Insulated: Yes\n- Type: Screw Cap\n- Tethered Cap: No\n- Bottle Height: 9.5\" (24cm)\n- Weight: 180g\ntags: [bottle]" - }, - "13a6f957-539e-4e90-8fcf-c17e4a5202df" : { - "embedding" : [ 0.021013511, -0.012917576, -0.03354425, -0.029150894, -0.008987041, -0.0031844934, 0.028846951, -0.04680722, -0.006358625, -0.024895692, 0.010251167, -0.007135752, -0.026208173, 0.002120693, 0.01306264, 0.018029345, 0.010665635, -0.0020464342, 0.01406427, 0.008683098, -0.0056367605, 0.0061064907, -0.02577989, -0.01663397, 0.014216241, -0.018664861, 0.03818629, -0.0065831286, 0.016689232, 7.071855E-4, 0.00477674, -0.0077574537, -0.022975326, -0.026415408, -0.0059096185, 0.011694897, 0.024301622, 0.02214639, 0.03959548, -0.0018271117, 0.0100715645, -0.011169904, 0.017863557, 0.007771269, -0.012731066, 2.4414738E-4, 0.03371004, -0.015086624, 0.0020395264, 0.008496587, -0.021814816, 0.026733166, -0.024356885, -0.009304799, 0.005926888, -0.027244342, 0.017794479, 0.019521428, 0.0134771075, -0.018374734, 0.0014661794, 0.007377525, -0.038020503, 0.014312951, -0.0035713299, -0.02236744, -0.03138902, 0.011031748, -0.014851759, 0.009000856, 0.035588957, 0.019714845, 0.050482165, -0.007363709, 0.018954989, -0.021566136, -0.007971595, -0.0070735817, 0.0011095646, -0.008938686, 0.014382029, -1.7506942E-4, 0.0014186883, 0.015155702, 0.01616424, 0.009905778, -0.019383272, 0.022450333, -0.01673068, 0.0045211515, -0.005464066, 0.016523445, 0.0077505456, 0.015597801, 0.007056312, 0.025600288, -0.037329722, 0.058025476, 0.0040445137, -0.006600398, 0.012012655, -0.020032605, -0.023873338, -0.013435661, -0.017587246, -0.026166726, -0.0118261445, 0.01769777, 0.0033364648, -0.0021120582, -0.023638474, 0.033875827, 0.006334448, -0.007570943, -0.010064657, 0.0011087011, 0.03326794, -0.0295101, 0.0038787269, -0.01628858, 0.01581885, 0.016647786, 0.0130557325, -0.025945676, 0.005094499, 0.025296343, -0.026456853, -9.4377744E-4, 0.022781907, -0.008600204, -0.020184577, -0.0049287113, 0.015031361, -0.0012788055, 0.01083833, 0.010375508, -0.012240612, 0.013953745, -0.03708104, -0.015680695, 0.0098367, 0.006631483, -0.013290597, -0.0025040756, -0.002251941, 0.013960653, -0.0130902715, 0.01071399, 7.499275E-4, 0.004231024, 0.012813959, -0.0119850235, 0.010216628, 0.021856263, -0.013546186, -0.00498052, -0.016081346, 0.06305435, -0.02340361, 0.0073844325, 0.012392584, 9.3255227E-4, 0.017145146, 0.015141886, 0.037219197, 0.012413307, 0.010624188, 0.0019808102, -0.012544556, -0.020156944, -0.009795253, -0.006600398, -0.022906248, 0.0114393085, -0.012454754, 0.020502334, -0.008095936, -0.014561632, -0.004141223, -0.006596944, 0.015735956, -0.028846951, 0.003402089, 0.03348899, -0.020198392, -0.021262193, 0.01697936, 0.0016388743, 0.01525241, -0.016551076, 0.025020033, 0.024453593, -0.003540245, 3.2056484E-4, -0.5897599, -0.020944433, -0.0012744882, -0.024798984, 0.0029099085, 0.020433256, 0.0068836175, 0.012226797, -0.013117902, 0.008089027, -0.009871239, -7.296358E-4, -0.0025368875, -0.010803791, -0.020115498, -0.027368683, -0.005356995, 0.0016250587, 0.022629935, 0.003933989, -0.031582437, -0.0026646818, -0.02064049, 0.02088917, -0.01406427, 0.010624188, 0.014243873, -0.019438535, -0.010230444, 0.013401122, -0.038766544, 0.036721837, 0.039899424, 0.0075916667, 0.04169545, -0.01992208, 0.01885828, 0.0029306319, 0.010693266, 0.023445055, -0.028211433, -0.015860297, -0.01947998, -0.02728579, -0.023334531, 5.7464215E-4, 0.019065514, -0.009733083, 0.020958249, -0.029620623, 0.010872869, -0.0055365977, 0.002894366, -0.015390567, 0.008047581, -0.020364178, 0.020875355, 0.008917963, -4.1813744E-4, 0.0034072697, -0.012503109, 0.002792476, -0.0059786965, -0.024122018, -0.019549059, 0.02039181, -0.024163466, -0.04075599, 0.025973309, -0.003467713, 0.014022823, 0.01171562, -0.019245116, 0.021193115, 0.0088627, 0.031195601, 0.039512586, 0.021718107, -0.007135752, 0.008413694, 0.009311708, -9.360062E-4, -0.00955348, -0.05440579, 0.020405626, -0.0030100716, 0.021870079, -0.0103340605, 0.052858446, 0.013290597, 0.021911524, 0.01873394, -0.0059821503, -0.011860684, 0.0037578403, 0.04362963, 0.012323506, 0.010693266, 0.0065278662, -0.02859827, -0.014368213, -0.016385289, 0.011128457, 0.015680695, 0.0035247023, 0.009815976, -0.0031015999, -0.030781133, 0.005712746, -0.00895941, -0.020654306, -0.008869609, -0.020170761, -0.0024919868, -0.008821254, -0.02493714, 0.025862783, 0.011038656, 0.023610843, -0.009304799, 0.0031568622, 0.0023192922, 0.020184577, 0.015901744, -8.9024205E-4, 0.011460031, 0.025172004, 0.008841977, -0.015542538, 4.25477E-4, 0.030339034, 0.0077505456, 0.044707246, 0.0028753695, 0.01794645, 0.032908734, 0.01732475, -0.013200796, 0.024177281, -0.043767788, -0.0036024149, 0.004279379, -0.004179216, -0.053051863, -0.012530739, -0.026304882, -0.021731922, -4.4382582E-4, -0.0067351, 0.008510403, 0.01650963, -0.020364178, -0.019272747, -0.01685502, 0.0046627615, -0.022657568, -0.036224477, -0.01171562, -8.988768E-4, -0.010216628, -0.008310077, 0.0034245392, -0.012330414, -7.4388314E-4, -0.009090658, 0.012703435, 0.029399574, 0.034842916, -0.005319002, -0.056091294, 0.0012054102, 0.009277169, -0.018112238, 0.039015226, -0.020847725, 0.01653726, -0.018443812, -0.028681165, 0.006676384, -0.009643282, 0.009940317, 0.038573127, -0.03959548, -3.4452626E-4, 0.0115636485, 0.015238595, 0.029261418, 0.0012917576, -0.012889945, 0.01848526, -0.020377995, 0.025075294, 0.01375342, 0.0026767706, -0.011418585, 0.002084427, 0.014810312, 0.009512033, 0.025600288, -0.0034590783, 0.007902517, -0.0130557325, 0.025614103, -0.014741234, 0.009581111, -0.036417894, 0.013497831, -0.0249924, 0.011605095, 0.020654306, 0.019714845, -0.030421928, -0.042717803, 0.017186593, -0.023348346, 0.011867591, -0.007950872, 0.053797904, -0.009332431, -0.03260479, -0.0031119615, 0.01287613, -0.002557611, -0.017987898, -0.014022823, 6.791226E-4, -0.0053880797, 0.004780194, 0.0064795115, -0.03942969, -0.0024436323, 0.019272747, 0.029675886, 0.003427993, 0.01230969, 0.012054102, 0.0069181565, -0.016703047, 0.044873036, 0.013760327, 0.018222762, 0.02227073, 0.009470587, -0.025821337, 0.014547816, 0.0130557325, 0.0016112431, 0.02001879, 0.03630737, 0.023334531, -0.01591556, 0.019687215, -0.012668896, 0.014837943, 0.0058785332, 0.007819624, 0.016578708, 3.229394E-4, 0.019217486, 0.006838717, 0.009000856, 0.023514133, 0.014796496, 0.043712527, -0.022284545, 0.0023400155, 0.012026471, -0.028487746, 0.00842751, -0.033212677, 0.020474704, -0.005356995, 0.00873836, 0.0053397254, 0.03185875, 0.014368213, -0.0016967271, 0.045867756, 0.018899726, 0.0534387, -0.013221519, -0.011280429, -7.4960364E-5, 0.026194358, -0.02308585, 0.010340969, -0.0057300157, -0.023652289, 0.011418585, 0.005678207, 8.50954E-4, 0.015114255, -0.006127214, 0.028239066, 0.016924096, -0.03959548, 0.028681165, -0.0068179932, -0.02007405, -0.0099472245, -0.011833052, 0.012537647, -0.023113482, -0.034594238, 0.009885054, -0.0077643613, 0.0021396894, -0.021386532, 0.028653532, -0.0018374734, -0.010962671, -0.044845402, -6.933699E-4, -0.030974552, 0.0016595977, -0.008752176, 0.010340969, -0.016412921, -0.01522478, -0.023293084, -0.014133348, -0.0070148655, 0.0066073057, -0.006365533, 0.0491835, 0.01487939, 0.012337321, 0.03138902, -0.03072587, -0.013083363, -0.021358902, -0.010520572, 0.006676384, 0.0067834547, -0.013794866, 0.0020602497, -0.025061479, 0.012510017, 0.014685972, -0.01794645, 0.01306264, -0.027023293, 0.011860684, -0.009311708, -0.0134771075, -0.008185737, -0.0022174022, 0.015556354, 0.02810091, -0.007177199, 0.033157416, 0.018443812, 0.010865961, -0.004738747, 0.018747754, -0.008600204, 0.0037267553, -0.024881877, -0.024674643, -0.001297802, -0.009394601, -0.0075571276, 0.03141665, 0.0014920837, 0.03824155, 0.03235611, 0.005985604, -0.017117515, 0.017628692, -0.012392584, 0.010271891, -0.006524412, -0.008330801, -0.030256141, 0.0075640352, 0.008724545, 0.0056056753, -0.005688569, 0.005177392, 0.017531984, -0.0099126855, -0.017407643, -0.02424636, -0.03423503, 0.019880634, -0.0342074, 0.02439833, -0.0034832554, -0.037661295, -0.007232461, -0.0053984416, 0.0017519895, -0.008890332, -0.02199442, -0.027244342, 0.012689619, -0.021690475, 0.0068870713, -0.008565665, -2.31627E-4, 0.018416181, -0.010852146, 0.021745738, 0.02493714, -0.013242243, 0.009829792, -0.020170761, 0.0010802064, -0.016205687, 0.015777403, 0.0028201072, -0.032383744, -0.0018841011, -0.00545025, -0.010527479, -0.0033917273, 0.015639247, -0.020143129, -0.013539278, 0.0063862563, 0.0050979527, 0.031692963, -0.027866043, 0.014824128, 0.029344313, -0.014713603, 0.023072034, -0.016426736, 0.008330801, 0.0067558233, 0.008496587, -0.0016518264, -0.021276008, -0.006869802, 0.0029824404, -0.010748529, -6.458788E-4, 0.02261612, -0.018651046, 0.003296745, -0.005115222, -0.02164903, 0.032190323, 0.002189771, -0.021317454, -0.04429278, 0.028487746, -0.016606338, -0.009235722, 0.02434307, 0.021842446, -0.018001713, -0.012040286, 0.021925341, 0.03821392, 0.033323202, -0.019590506, -0.023141112, -0.02975878, -0.03301926, -0.0099472245, 0.022174021, -2.7550228E-5, -0.011266613, -0.015777403, 0.013359675, -0.010347877, 0.008351523, -0.02837722, -0.026691718, -0.008759084, -0.028819319, -0.009456771, 0.03865602, 0.0136359865, -0.005902711, -0.032245588, -0.017006991, -0.02004642, -0.020764831, 0.010043934, -0.02706474, 0.019272747, 0.030891659, 0.03141665, 0.016122794, 0.006600398, 0.027050924, 0.009152828, 6.182476E-4, -0.014976099, -0.0032812024, -0.044209886, 0.02308585, 0.008607112, 0.013076455, -0.005384626, -0.014009008, -0.01259291, 0.021593766, -0.011729435, -0.020198392, -0.027866043, -0.030339034, -0.011784698, -0.015418198, -0.01885828, -0.0021673206, -0.026235804, -0.0046385843, 0.0414744, 0.016965544, 7.1107113E-4, 0.01885828, 0.0064173415, -0.035312645, 0.039761268, 1.9708803E-4, 0.026567379, 0.01171562, -0.013152441, -0.024605565, -0.050703213, 0.029979829, 0.007902517, 0.002424636, -0.0056609376, -0.030007461, -0.028902214, 0.012192258, -0.019355642, -0.018609598, -0.0014713603, 0.011694897, -0.015293858, -0.0016967271, -0.038269185, -0.03141665, -0.005546959, 0.0049218037, -7.40861E-4, 0.030781133, -0.0027890222, -0.008848885, 0.0192313, -0.02859827, 0.011991932, -0.012523832, 0.0097538065, 0.017932635, -0.011038656, -0.026857506, -0.034428447, -0.013021193, 0.018443812, -0.0012727611, 0.050979525, 0.00708049, -0.013933022, 0.019549059, -0.001467043, 0.0063966177, -0.04009284, 0.0067834547, 0.040452044, 0.032024536, -0.012033379, -0.0136705255, -0.026622642, -0.0072531844, 2.0982427E-4, 0.004065237, 0.032742947, -0.0052015693, 0.0013038462, 0.0084206015, -0.019714845, 0.005039236, 0.015169517, 0.011446216, 0.008220276, 0.010707082, -0.0026664087, 0.008558758, -0.00397889, 0.043905944, -0.023956232, 0.007170291, 0.033185046, 0.007646929, -0.017766848, -0.00826863, 0.04362963, 0.021165483, -0.009781437, -0.0017519895, -0.01183996, 0.005356995, -0.0068836175, -0.022768091, -0.015003731, -0.007709099, -0.0026370506, 0.021552319, 0.0103340605, 0.014382029, -0.027382499, -0.018236578, 0.002327927, -0.007474234, -0.03183112, -0.0061099445, 0.014685972, -0.030062722, -0.022215469, -0.010292614, 0.015625432, 0.018706309, 0.040424414, 0.0018737393, -2.9034325E-4, 0.025766075, -0.0342074, -0.014230058, 0.01393993, 0.020336548, -0.0069803265, 0.0124754775, -0.007640021, -0.030394297, 0.02859827, -0.021441795, -0.03768893, -0.010769252, 0.0030826034, -0.0140021, 0.019369457, -0.042054653, -0.001077616, -0.0047007543, -0.008641651, -0.014685972, -0.012800144, 0.005678207, -0.0092633525, 0.036196843, 0.035727113, -0.007094305, 0.027990384, 0.0059752422, 0.0038338262, 0.011536017, -0.01271725, -0.027866043, -0.012675803, 0.011888315, -0.0011061106, -0.008344616, -0.005830179, 0.0032224862, -0.035174493, -0.0113702305, -0.011646542, 0.018499075, 0.03415214, -0.011888315, -0.02308585, 0.013546186, -0.042524386, -0.0192313, -0.0075985743, 0.0031844934, 0.003730209, -0.021621397, 0.0151280705, 0.027050924, -0.011066287, -0.06211489, -0.01851289, -0.020902988, -0.032162692, -0.0035609682, -0.036279738, -0.0027233982, 0.0076676523, 0.019590506, 0.0019721754, 0.007971595, 0.017863557, 0.009581111, -0.014796496, -0.0011449669, 0.0073568015, 0.011280429, -0.0090699345, 0.0060512284, -0.04164019, -0.014837943, 0.04222044, 0.006362079, 0.011833052, 0.021759553, -0.020792462, -0.0044209887, 0.011162996, -0.008178829, -0.013919206, 0.01744909, 0.004904534, -0.02859827, -0.014547816, 0.010216628, 0.021054959, 0.0044555278, 0.008399879, 0.007923241, 0.0020067145, 0.009781437, -0.025448317, -0.012136996, -0.009677821, 0.003498798, 0.012979747, 0.010444585, 0.013338951, 0.037633665, 0.012136996, -0.03230085, -0.0015266227, 0.002524799, -0.0039478047, -0.0071495674, 0.0036784008, -0.0047698324, 0.0015723868, 0.0018357465, 0.005277555, 0.00961565, -0.0076952833, -7.0416334E-4, -0.013615264, -0.042358596, 0.0405902, 0.03868365, -0.03022851, -0.039982315, 0.0027285789, -0.014589262, 0.0023002957, -1.0361692E-4, 0.014547816, -0.020143129, 0.005484789, 0.0046489458, -0.029648256, -0.026954215, 0.032963995, 0.005843994, -0.012130087, -0.013338951, 0.19794977, -0.01685502, -0.018457627, 0.03655605, 0.023762815, 0.003200036, -0.00316377, -0.007923241, 0.006676384, -0.0027648448, 0.001882374, 0.009152828, -0.019687215, -0.0053293635, 0.030311404, 0.015542538, -0.039042857, -0.022505594, -0.018954989, 0.004873449, 0.008123566, 0.0050565056, -3.5424036E-4, -0.007543312, 0.009643282, 0.009760714, 0.009878146, -0.01011992, 0.021165483, -0.007916333, -0.016468182, -0.015639247, -0.015791219, 8.885151E-4, -0.0401481, 0.022560857, 0.006562405, -0.02377663, -0.0049736123, 0.04313227, 0.0043277335, -0.002927178, 0.013069548, -0.028045647, -0.00404106, -0.015680695, -0.022933878, 0.0021172392, 7.382706E-4, 0.0037958333, -0.014727418, -0.00228648, 0.041142825, 0.005515874, -0.0049114423, -0.015487276, -0.013262966, -0.01465834, 0.0055331434, -0.0027285789, -0.022339808, 0.035588957, -0.005322456, 0.037108675, -0.029675886, 0.015404383, -0.021096405, -0.01359454, 0.03796524, -0.006590036, -0.02834959, -0.0027855681, -0.024757536, -0.0019618138, -0.017269487, -0.012040286, 0.019659584, -0.012364953, 0.013663618, 0.028957475, 0.0181675, -0.012786328, 0.0124962, -0.011169904, 0.025075294, -0.00908375, 0.035063967, 0.0011225167, 0.011342599, 0.009187367, -0.0032518443, -0.005011605, -0.011473848, -0.0068732556, -0.004265563, -0.005619491, -0.030035092, -0.0068594404, -0.014340582, 0.029233787, -0.023887154, 0.044237517, 0.0065140505, -0.02164903, -0.04122572, 0.007301539, 0.0013012559, 0.04288359, 0.022519412, -0.0076676523, -0.0038787269, -0.047442734, 0.012378768, -0.009546572, 0.015846482, -0.015791219, 4.4857492E-4, -0.026456853, -0.006393164, -0.024978586, 0.017753033, -0.029178524, 0.011335691, -0.0075502195, -0.0035195213, -0.004407173, -0.009885054, 0.028045647, 0.00265432, -0.0457296, 0.03351662, 0.013649803, 0.014409659, 3.3006308E-4, -0.013808682, 8.954229E-4, 0.0055055125, -0.01851289, -0.021165483, 0.0109488545, 0.011460031, 0.01525241, -0.008234091, 0.0020360725, 0.028957475, -0.016785942, -0.003431447, -0.010375508, -0.008828161, -0.011017933, -0.019770108, -0.006154845, -0.0054467963, -0.028791688, 0.011356414, 0.0051290374, -0.029924568, -0.03371004, 0.002557611, -0.007246277, -0.026885137, -0.014920836, 0.011605095, -0.005277555, -0.03230085, -0.016703047, -0.17496063, 0.026677903, 0.030974552, -0.021538503, 0.0015965641, 0.022353623, 0.017766848, 9.567296E-4, -0.015280042, -0.0058163633, 0.00842751, -0.0054813353, -0.037854716, 0.002856373, 0.0032915643, -0.008151198, -0.0024142743, 0.03279821, 0.019894449, 0.008392971, 0.0031378658, -0.009360062, 0.033185046, -0.024895692, -0.0043311873, -0.014174795, -5.4398883E-4, 0.032162692, 0.008600204, -0.0031862203, 0.011694897, -0.01873394, 0.024453593, -0.014948468, 0.029095631, -0.025627919, 0.005177392, 0.034124505, -0.0023676467, 0.031333756, -0.0036335, 0.020308917, 0.007640021, 0.0066487524, 0.003671493, 0.0452875, 0.0039132657, 0.0048389104, 0.022699013, -0.003902904, 0.029896935, -0.025600288, -0.005957973, -0.014699787, 0.009567296, 0.025268713, -0.021814816, -0.011570556, 0.011971208, 0.008006134, -0.006628029, -0.027852228, 0.0012675803, -0.0080683045, -0.0067420076, -0.020958249, 0.030117985, 0.03929154, 0.0036438617, 0.0037612943, -0.026995663, -0.014920836, -0.014782681, -0.0062757316, 0.01149457, -0.005346633, -0.01628858, -0.0023987317, 0.036887623, 0.011846868, 0.027838413, 0.032687686, -0.0059752422, 0.03141665, -0.007771269, -0.026898952, -0.0037509326, 0.024191096, -0.021041144, -0.0038096488, 0.011515294, -0.006054682, 0.012434031, 0.014243873, -0.0028650078, 0.020032605, 0.0057818242, 0.0016233318, 0.014043546, -0.01885828, 0.005581498, 1.9816736E-4, -0.030836396, 0.0022001327, 0.0070735817, 0.016896466, 0.02859827, 0.002759664, 0.00132716, 0.015957005, -0.014741234, 0.008869609, 0.015376751, 0.014112624, -0.015169517, -0.003564422, -0.005657484, -0.015335305, 0.0032155784, -0.005084137, 0.026774613, -0.020143129, -0.0022847531, 0.0069872346, -0.0071081207, -0.022422701, -0.070183195, -0.029233787, 0.033654775, 0.023638474, -0.016247133, 0.0056712995, 0.004680031, 0.035036337, -0.011017933, 0.03650079, -1.652474E-4, -0.013711972, -0.018208947, 0.0337653, 0.0067074685, -0.0063448097, 0.012800144, -0.017297119, -0.011763974, 0.0077850847, -0.008296262, -0.019576691, -0.029233787, -0.0171037, -0.02399768, -0.010969578, -0.010486033, 0.010327153, 0.014534, -0.0016500995, -0.0045556906, -0.013408029, 0.014464922, 0.004952889, 0.014782681, 0.010251167, -0.012682711, -0.026677903, 0.023002956, -0.048934817, 0.009560388, 0.012765605, 0.020032605, -0.018499075, -0.009525849, -0.028764058, 0.004545329, 0.01525241, 0.007743638, -0.035975795, 0.009076842, 0.017241856, -0.009822885, -0.0033900002, 0.01616424, -0.003295018, -1.1192786E-4, 0.019176038, -0.012758696, 3.0415884E-4, -0.023099666, 0.01848526, -0.034787655, 0.043077007, 0.01794645, -0.023030588, -0.009684728, 0.011411677, 0.02474372, -0.028487746, -0.0046005915, 0.021870079, 0.0068490785, 0.014326766, -0.029814042, -0.03067061, 0.024605565, -0.014326766, 0.011687988, -0.0035955072, -0.02518582, -0.022215469, 0.029371943, -0.010361692, 8.513857E-4, 0.022284545, 9.7399903E-4, -0.003771656, 0.002763118, -0.03395872, 0.023527948, 0.036915254, 0.024785168, 0.0018599237, -0.028929844, -0.0035057059, -0.008234091, 0.010016303, -0.010921223, 0.009180459, -0.028625902, -0.006890525, -0.08908292, 0.03702578, 0.02227073, -0.025489762, 0.010161366, 0.013428753, -0.011211351, -0.003533337, 0.008683098, 0.013048824, 0.014534, 0.010893593, -0.009891962, -0.018250395, -0.012150811, 7.015729E-4, -0.0023469233, 0.005484789, 0.029620623, 0.001598291, -6.8559864E-4, -0.022464149, -0.0012244066, 0.034594238, -0.025710812, 0.015763588, 0.0027493024, 0.010188998, 0.004193031, 0.0068594404, 0.046613798, -0.0054088035, -0.0119504845, 0.03279821, 0.007273908, 0.0057196543, -0.016827388, 0.024771351, 0.009967947, -0.02859827, -0.025641734, -0.0024850792, -0.0075916667, -0.023624659, -0.008406786, -0.019728662, -0.0109143155, -0.014547816, 0.028708795, 0.026139095, -0.0017079522, -0.009152828, -0.0066729295, -0.019880634, -0.013414937, -0.019604322, 0.0016457821, -0.015266227, -0.022298362, 0.01387776, 0.022754276, 0.008869609, -0.005384626, -0.0062101074, 0.003301926, -0.011501478, -0.017407643, -0.01794645, -0.0036818546, -0.003992705, -0.021690475, -0.0041239536, 0.02637396, 0.014713603, 3.7194157E-4, -0.012924484, 0.0058267247, 7.127981E-4, -0.056588653, 0.008696914, 0.0046316762, -0.009484402, -0.016067531, -0.013297505, 0.021621397, 0.016495815, -0.027824597, 0.01628858, -0.019783923, 0.0022830262, -0.018499075, 0.021054959, 0.006154845, 0.019410903, 0.02832196, 0.016136609, -0.007474234, -0.008013042, 6.5019616E-4, 0.0114047695, 0.017020807, -0.007260092, -0.008006134, 0.0028028376, -0.026498301, 0.0036922162, -0.03116797, -0.02367992, -0.0070735817, 0.0014083267, -0.004445166, -0.016205687, -0.008282446, 0.013933022, -0.014382029, 0.016703047, -0.006831809, -0.0026059656, -0.016868835, 0.03260479, 0.02474372, 0.01024426, 0.007004504, -0.013304412, 0.05553867, -0.018706309, -0.0075502195, 0.014036639, 0.019189853, 0.004110138, 0.004945981, 0.012413307, -0.0073568015, -0.019176038, -0.0030048906, -0.0058060014, -0.017932635, 0.009346247, -0.02004642, 0.09471968, -0.008323893, -0.01979774, 0.0034141776, -0.014796496, 0.015901744, 0.01663397, 0.006427703, -0.011273521, -0.025545025, -0.0035782377, -6.411297E-4, 2.4069348E-4, 0.002994529, -0.032135062, 0.004061783, 0.0036265922, 0.02061286, -0.007943964, -0.015418198, 0.028225249, -0.015874112, -0.0037198474, 0.0015223053, -0.006831809, -0.012026471, 0.014561632, 0.013014285, -0.0038649112, -0.033875827, 0.02061286, 0.004914896, -0.022325993, -0.013007377, 0.03263242, -0.008904148, -0.013207704, -0.012461661, 0.0048527257, -0.0060754055, 0.018499075, 0.008966317, -0.020681938, -0.01769777, 0.010810698, -0.01177779, -0.017158963, -0.024564119, -0.01920367 ], - "id" : "13a6f957-539e-4e90-8fcf-c17e4a5202df", - "metadata" : { - "name" : "CommutePro RT BeamPro Bike Light Set" - }, - "text" : "price: 94.99\nname: CommutePro RT BeamPro Bike Light Set\nshortDescription: \ndescription: ## Overview\nStay visible and light up your path with the CommutePro RT BeamPro Bike Light Set. This set includes the CommutePro RT front light and the BeamPro rear light, providing you with the perfect combination of visibility and illumination. The CommutePro RT features a unique beam technology that keeps the light on the ground ahead of you without blinding oncoming riders, ensuring a safe and comfortable ride. With multiple modes, a rechargeable battery, and wireless connectivity, this light set is perfect for all your commuting needs.\n\n## Product Details\n- CommutePro RT front light with BeamPro rear light for maximum visibility and illumination\n- Unique beam technology keeps the light on the ground ahead of you, avoiding blinding oncoming riders\n- Multiple modes for different lighting needs: high beam, low beam, and flash\n- Rechargeable battery for convenience and sustainability\n- Wireless connectivity allows for easy pairing and control of both lights\n- Lightweight and compact design for easy installation and portability\n- Waterproof rating of IPX4 ensures durability and functionality in all weather conditions\n- Compatible with ANT+ and Bluetooth wireless protocols for seamless integration with other devices\n- Weight: 257g\n\n## Features\n1. High Beam: Illuminate the path ahead with a bright and powerful high beam setting, perfect for night rides or off-road adventures.\n2. Wireless Connectivity: Pair the front and rear lights wirelessly for synchronized control and easy power-up.\n3. Rechargeable Battery: The built-in Li-Ion battery can be easily recharged using the included USB cable, eliminating the need for disposable batteries.\n4. Chargeback Function: Use the light as a battery bank to charge your gadgets on the go, ensuring you never run out of power.\n5. Weather-Ready: Designed to withstand the elements, the CommutePro RT BeamPro Bike Light Set is waterproof and weather-resistant.\n6. Beam Technology: The unique beam technology of the CommutePro RT ensures that the light stays on the ground ahead of you, providing optimal visibility without disturbing oncoming riders.\n7. Multiple Lighting Modes: Choose from high beam, low beam, and flash modes to suit different riding conditions and preferences.\n8. Lightweight and Compact: The CommutePro RT BeamPro Bike Light Set is designed to be lightweight and compact, making it easy to install and carry.\n9. Easy Mounting: The set is compatible with various mounting options, including handlebars, helmets, and helmet mounts, for a seamless and secure attachment to your bike.\n\n## Specifications\n- Battery: Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh\n- Rechargeable: Yes\n- Charge Time: 4 hours / 2 hours\n- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm)\n- Waterproof Rating: IPX4\n- Wireless Compatibility: ANT+ / Bluetooth\n- Weight: 257g\ntags: [bikelight]" - }, - "4b20d58a-f509-4a9a-bf58-e8894928c303" : { - "embedding" : [ 0.04004601, 0.007836873, -0.025644217, -0.0010873148, 0.0075633344, 0.023155019, -5.8340596E-5, -0.018833114, -0.018997237, -0.022813097, 0.017273946, 0.012781078, -0.009737964, -0.019462252, 0.0042501017, 0.014880485, 0.011611702, -0.008760065, 0.006315316, -0.008705357, 0.014907839, -0.0057135317, -0.0012864849, -0.010449164, -0.0035047098, -0.012623793, 0.027381185, -0.005060459, -0.002598614, -0.014278701, 0.020597436, 0.014374439, -0.0061990623, -0.018080883, -0.013683754, -0.0076522343, 0.034383766, 0.014565916, 0.01791676, 0.025001403, 0.0067905886, -0.0036927674, -0.020898327, -0.007365019, -0.010100403, 0.026970878, 0.010025179, 0.007912096, 0.006417893, -7.078872E-5, 8.95838E-4, 0.039526287, -0.01538653, 0.0033457156, -0.008616457, -0.024823602, -4.8595792E-4, 0.029952446, 0.043793485, 0.003338877, 0.0057306276, 0.015892576, -0.030964538, -0.002443039, -0.021759974, -0.015988315, 0.0023695256, 0.006356347, -0.016343914, 0.009984149, 0.024016665, 0.025398033, 0.0071872193, 0.0014044483, 0.025247587, -0.02403034, -0.002940537, -0.0050057513, -6.77969E-5, 0.00820615, 0.023127666, 0.0048416285, 0.013977808, -0.008972057, 0.031648383, 0.0019626375, 0.016043022, -3.652164E-4, -0.017041437, 0.014196639, -0.019735789, 0.016043022, -0.001299307, 0.012911009, -0.008698518, -0.0045612515, -0.018833114, 0.011803178, -0.033781983, -0.005450251, 0.0037098634, -0.0010693639, -0.0012676792, -0.015865222, -0.011645894, -0.014935193, -0.031183368, -0.0033252002, 0.005282709, -0.023565326, -0.0066674966, 0.018518545, 0.012842624, 0.0052382587, -0.0011155235, -0.034657303, 0.040346902, 0.010791087, 0.02191042, -0.008438657, 0.022498528, 0.01840913, 0.02549377, -0.020706851, 0.017000407, 0.018559575, -0.0035559982, -0.011652732, -0.007912096, 0.011495448, 0.0074881115, 0.011481771, -0.009437072, 0.018559575, -0.009115664, 0.013369185, -0.008520719, 2.3293498E-4, -0.018067205, -0.013868392, 0.0060999044, 0.0044210632, -0.037173856, -0.010647479, -0.0070367735, -0.00279351, -0.015796838, 0.02576731, 0.006363185, -0.020515375, 0.021527465, -0.028475339, 0.016932022, 0.008520719, 0.021965127, -0.012370771, 0.008657488, 0.024933018, -0.041249577, -0.001525831, -0.008684842, 0.017301299, -0.002003668, 0.013034101, 0.023291787, -0.004646732, -0.009854218, -0.029870385, -0.0148668075, -0.00164123, -0.015318146, -0.0119399475, -0.0088899955, 0.0061990623, 0.0068897465, 0.018833114, -0.005874235, -0.026287032, -0.014784746, -0.016084053, 0.013369185, -0.0064418274, 0.015236084, 0.010319233, -0.009067795, 0.0034893232, 0.0062606083, -0.0029901157, 0.016001992, -0.014853131, 0.021500112, 0.00802835, 0.006000747, -0.00425694, -0.6013467, -0.029323308, -0.0150856385, 3.284597E-4, -0.0013129839, 0.026984556, 0.007679588, 0.008835288, -0.0062640277, -0.010893663, -0.019257098, 0.00705045, -0.0030875637, 0.0014112868, -0.044942345, -0.01773896, 0.008274534, -6.594838E-4, 0.0017711606, -0.03668149, -0.053121142, 0.0047287936, -0.0016882443, 0.019284451, 0.032605767, -0.0013976098, -7.575729E-5, -0.011543317, -0.0041099135, 0.016767899, -0.032304876, 0.0303354, -0.015578007, -0.008117249, 0.034629952, -0.04953779, 9.684966E-4, 0.03320755, 0.03720121, 0.019175036, -0.0022960124, -0.017260268, -0.0071461885, -0.026273355, -0.004899755, 0.0010086725, 0.045352653, -5.1117473E-4, 0.026095556, -0.03575146, 0.004629636, 0.009156696, 0.012227163, 0.019845204, -0.0065751774, -0.034438476, 0.029678907, 0.0149625465, 0.020994065, -0.028967708, -0.009156696, 0.0035183867, -0.0052450974, -0.017191883, 0.0056519858, 0.002523391, -0.03320755, -0.031292785, 0.0074744346, -0.006554662, 0.014265023, 0.022813097, 0.002111374, 0.0038774058, 0.028174447, 0.019393867, 0.025343325, 0.02203351, -0.0062742853, 0.024864633, 0.008288211, 0.004564671, 0.0055425703, -0.02576731, 0.021445405, -0.0051254244, -0.008349758, -0.014935193, 0.016371269, 0.009293464, 0.021294959, 0.0152087305, 9.753351E-4, 0.007002581, 0.004557832, 0.041003395, -0.012582763, 0.00997731, -0.006448666, -0.027682077, 0.0015403627, -0.0019216067, 0.0038774058, 0.01791676, 0.061436705, -0.004868982, -0.018901497, -0.023319142, 0.022334404, -0.03189457, 0.02133599, -0.009580679, -0.022074543, 0.0019797336, -0.0063358312, -0.021787327, 0.008931026, 0.015769484, 0.019722113, -0.016658483, 0.016658483, 0.01716453, 0.02976097, -0.0020224738, -0.039143335, 0.005060459, 0.0036312211, -0.0019216067, 0.008705357, -0.026355417, 0.014853131, 0.0018327067, 0.03542321, -0.0034551308, 0.031703092, 0.01006621, 0.029514784, 0.021226574, 0.008828449, -0.024413295, -0.04018278, -0.025958786, -0.013800008, -0.018614283, -0.012445994, -0.012924685, -0.017862052, 0.022676326, -0.001919897, -0.007597527, 0.002612291, -0.013588016, -0.022648973, 0.0025216814, -0.008199311, -0.032715183, -0.02244382, -0.04026484, -0.01938019, -0.017766314, 0.012425479, 0.005894751, -0.017725283, -0.005163036, 0.004766405, -0.0030311465, 0.034438476, 0.025302295, -0.0048142746, -0.037529457, -0.025958786, -0.011078302, 0.0034910329, 0.023879895, -0.02470051, 0.0066059506, -0.013157194, 0.0043253247, -0.0038842442, -0.010674833, 0.0046946015, 0.015372854, -0.05738834, 0.019530635, 0.01959902, 0.01042181, 0.025329648, 0.011091979, -0.029295955, 0.004270617, 0.005210905, 0.0058366237, -0.021883065, 0.0134991165, 0.0045133824, -8.4540434E-4, 0.023633711, -0.009095149, 0.0021609527, 0.015714776, 0.028311215, 6.646126E-4, 0.022690004, -0.013362347, 0.016617453, -0.017055115, 0.028147094, 1.1037698E-4, 0.02080259, -0.002509714, 0.009382364, -0.030581584, -0.01072954, 0.0033918752, -0.016918344, 0.01951696, 0.015605361, 0.033699922, 0.011324487, 0.008308726, -0.009334495, 0.019653728, 0.025110818, -0.019653728, -0.028447986, 0.017314976, 0.0035696751, 0.032742538, 0.00425694, -0.03490349, -0.014675331, 0.0047082785, 0.032304876, -0.01795779, 0.0043526785, 0.002718287, 0.022854127, -0.020255513, 0.03627118, -0.005392124, 0.03419229, 0.036380596, 0.01787573, -0.018381774, 0.02718971, 0.013116162, 0.017547483, 0.032086045, 0.040948685, 0.011481771, 0.019831529, 0.015578007, 2.3336239E-4, 0.014360762, 0.015290792, 0.0021934353, 0.008062542, 0.0041133324, 0.0065751774, 9.283207E-4, 0.006257189, 0.031675737, 0.0011428773, 0.028913, 0.015578007, -0.012822108, -0.009095149, -0.010722702, -0.0021301797, -0.018928852, 0.013376024, -0.015906254, 0.008787419, -0.0050365245, -0.0049236896, 0.012781078, 0.015892576, -0.009601195, 0.019489605, 0.022717357, -0.01388207, -0.05623948, 0.017342329, 0.03681826, -0.008657488, 6.248641E-4, 0.020378605, 0.018381774, -0.003928694, 0.025958786, -0.009334495, 0.03126543, -0.0015292502, 0.012384447, -0.012322902, -0.005197228, 0.023852542, -0.0060110046, -3.4405992E-4, -0.015605361, -0.020269189, -0.0030619195, -0.0026584505, -0.030991891, 0.054953847, -0.016508037, -0.010620126, -0.022594266, -0.0011027013, -0.008226665, 0.006773493, -0.017684253, -0.023428557, 0.0029302794, 0.01663113, 0.021322312, -0.009006249, -0.018313391, 0.008787419, -0.03769358, -0.019462252, 0.01072954, -0.034465827, -0.025069786, 0.029350663, 0.03320755, 0.015154023, 0.017273946, -0.030718353, 5.9515954E-5, -0.021240251, -0.0051185857, -0.0082813725, 0.028447986, 0.021185543, 0.018272359, 3.3529813E-4, 0.0013711108, 0.011543317, -0.015755808, 0.023661064, -0.041933425, 0.011570671, -0.008985734, 0.007029935, -0.011857886, 0.004718536, 0.030061862, 0.023401203, -1.085071E-4, 0.009443911, 0.0039013403, 0.01995462, -0.00935501, 0.004598863, 0.0014070127, 0.02288148, 0.012575924, -0.015331822, -0.014141931, -0.0010932984, -0.014552238, 0.03397346, 0.02630071, 0.016070377, 0.011003079, 0.013977808, 0.0069068423, 0.003641479, -0.001454882, 0.006599112, 0.017985145, 0.009300303, -0.030800415, 0.031675737, 0.009081473, -0.01117404, 6.18453E-4, 0.013970969, 0.001592506, -0.016932022, -0.018504867, -0.017000407, -0.048635114, 0.007064127, -0.016877314, 0.026560571, -0.016521715, -0.0048313704, 0.004855305, -0.006510212, 0.021500112, -0.012206648, 0.011358678, -0.022662649, -0.021787327, -0.020953035, 0.031128662, -0.009054119, -0.002709739, 0.031511616, -0.024946695, 0.008794257, 0.023661064, -0.011003079, 0.011912594, 0.004766405, -0.021486435, -0.004482609, 0.016836284, 0.03897921, -0.005402382, 0.01099624, -0.019311806, 0.012028848, -0.031374846, 0.018245006, -0.03126543, 0.0069957427, -0.005778497, 0.020829944, 0.045024406, 0.016316561, -0.031183368, 0.0057408856, -0.008527557, 0.022826772, 0.024454325, 0.014511208, -0.0067563965, 0.010456002, -0.001986572, 0.005135682, -0.04491499, -0.011803178, -0.008212988, -0.020939358, -0.0020224738, -0.025671571, 0.011009918, 0.012322902, 0.010531225, 0.01702776, -0.012288709, 0.027422216, -0.03597029, 0.04291816, 0.02080259, -0.003928694, 0.030882476, -0.0055357316, -0.006988904, 0.007002581, 0.0067632347, 0.05104225, 0.03810389, -0.0029525042, 0.0010274784, -0.023688419, -0.02337385, -0.023004573, -0.01028504, 0.010811602, 0.007884742, -0.0058708163, 0.0021079546, 0.004554413, 0.02918654, -0.02718971, -0.014689008, -0.011379194, 0.010886825, -0.009826864, 0.04625533, -0.011215071, 0.008698518, -0.02833857, -0.014292377, -0.018559575, -0.023715772, -0.014306054, -0.016836284, 0.010291879, 0.025357002, 0.009984149, 0.017356006, 0.008609619, 0.013136677, 0.010250849, -0.013841039, -0.007994157, -0.0015805386, -0.03219546, 0.01095521, 0.046720345, 0.019229744, -0.011639056, -0.0017369683, -0.002456716, 0.015304469, -0.026122909, -0.03142955, -0.007877904, -0.047158007, 0.0015232665, -0.036298536, -0.010599609, -0.022060866, -0.022826772, -0.015099315, 0.038623612, 0.01241864, 0.022703681, 0.01805353, 0.008636973, -0.031073954, 0.021759974, 0.012234001, 0.022717357, -3.169198E-4, -0.031456906, -0.025972463, -0.01667216, 0.008089895, -0.016302884, -0.013984647, 0.00873955, -0.024960373, -0.020064035, 0.0076043652, -0.0012223744, -0.009642226, 0.029104477, -0.0070983195, -0.013136677, -0.01817662, -0.010011503, -0.037173856, -0.021308634, 0.0136222085, -0.028639462, 0.033672567, -0.030663645, -0.022088218, 0.027093971, 0.010093564, 0.028311215, 0.015400208, 7.047886E-4, 0.012186132, -0.004297971, -0.025179202, -0.03769358, 0.007864227, 0.006356347, 0.024153434, 0.03610706, -0.02080259, 0.0037850866, 0.01152964, -0.007419727, -0.023428557, -0.022908835, -0.0042671976, 0.027394863, 0.0282018, -0.010312394, 0.007016258, -0.012787917, 0.01760219, -0.01122191, 0.012541732, 0.006089647, -0.021349667, -0.0020087971, 0.00572037, -0.008801095, 0.009197726, 0.0024891987, 0.0025080044, 9.727707E-4, -0.008760065, -0.008541234, -0.0076385573, 0.0013788041, 0.04775979, -0.015988315, -0.00878058, 0.017588515, 0.008534395, 0.0024310718, 0.0012386157, -0.013177709, 0.018217651, -0.022252342, 0.0065751774, -0.02305928, 0.0035457404, -0.009177211, 0.01272637, -0.0099636335, -0.019448575, 0.005539151, -0.011755309, -0.0017985145, -0.0035594173, -0.01951696, -0.027121324, -0.013936778, -0.036161765, -0.01951696, 0.0030123407, 0.016001992, -0.045270592, -0.012398125, -0.031867214, -0.0016378107, 0.03225017, 0.010346587, -0.010565418, -0.012466509, 0.009608033, -0.036490012, -0.0023353335, 0.02301825, -0.0072350884, 5.2570645E-4, 0.01894253, 0.0049442053, -0.01995462, -0.009348172, 0.0026926429, -0.012822108, -0.010592772, 0.008048865, -0.016535392, 0.017725283, -0.0017446616, 0.021322312, -0.006287962, 2.235321E-4, -8.3984813E-4, -0.018340744, -0.006674335, -0.0050707166, -0.010531225, -0.011064625, -0.023428557, 0.030007154, 0.0016771319, -0.010879987, 0.0057955934, -0.019968297, -0.010339748, 0.0269572, 0.012760563, -0.019530635, -0.011741633, -0.03618912, 0.0048621437, -0.010838956, 0.0024721026, -0.034438476, -0.01033291, 0.010346587, -0.0046672476, -0.018573252, 0.0066845925, -0.021609528, -0.026423803, 0.01813559, -0.0071393503, -0.008972057, -0.03019863, -0.0025165526, 0.043656714, 0.00767275, -0.025261264, 0.011454417, -0.0020241835, -0.016289206, -0.013977808, -3.69437E-5, 0.022430142, 0.007358181, 0.0278462, 0.004315067, -0.005665662, 0.024208141, 0.010743218, -0.0073855347, -0.008240342, -0.005405801, 0.031648383, 0.0145248845, -0.013382862, -0.046419453, -0.015933607, 0.020474343, 0.008137765, -0.009792672, 9.599485E-4, -0.010702187, -0.0067871697, 0.0053271586, -0.014948869, 0.025712602, 0.008561749, -0.008828449, -0.03742004, -0.017356006, 0.007365019, -0.00935501, 0.0017190174, -0.005894751, -0.0110372715, -0.018969882, 0.014771069, -0.028557401, -0.015619038, -0.0047766627, -0.017889407, 0.029104477, -0.0033645213, -0.01174847, 0.04368407, 0.005539151, -0.045790315, -0.0069512925, 0.013875231, -7.911241E-4, -0.007358181, 0.002962762, -0.013738462, -0.014374439, -0.008254019, 0.007180381, -0.005416059, -0.005819528, -0.0040552057, -0.0043937094, -0.030745707, 0.032003984, 0.030937184, -0.020214481, -0.014237669, 0.0016882443, -0.011933109, 0.011050948, 0.003867148, 0.0072487653, -0.038322717, 0.014647977, -0.009751641, -0.03405552, -0.019010913, 0.040100716, -0.004202232, -0.014333408, 0.006941035, 0.20132421, -0.005087813, 0.0031029503, 0.029569492, -0.0041577825, 0.0035525789, 0.014415469, 0.011003079, 0.0052929665, -0.011980979, -0.013088808, 0.023141341, -0.021732619, 3.1050874E-4, 0.036654133, -0.021883065, -0.031812508, -0.02345591, -8.509606E-4, 0.008862642, 8.283082E-4, 0.026068201, -0.03698238, -0.045024406, 0.011235586, 0.015318146, -0.024782572, -0.03728327, -0.0060999044, 0.011105656, 0.0049783974, -0.0144565, 0.0050570397, 0.031730443, -0.012186132, -0.019981975, 2.733246E-4, -4.996348E-4, -0.007344504, 0.018436482, 0.0153455, -6.611934E-4, 0.018586928, -0.016261853, -0.016125085, 0.0065683387, -0.0038637288, -0.012480186, -0.011358678, -0.014114577, -0.002417395, -0.008130927, 0.023305465, 0.03788506, -0.0010086725, -0.025780987, 0.02394828, -0.0064999545, 0.0016215694, -0.011686925, -0.027887233, 0.023141341, -0.0045202207, 0.0077274577, 0.0075223036, 0.028475339, -0.025384355, -0.041523118, 0.043465238, -0.0064555043, -0.00705045, -0.013772654, 0.006578597, 0.030089214, -0.043355823, -0.018860467, 0.0029166024, -0.012370771, 0.025302295, 0.009238757, 0.005645147, -0.006181966, 0.0059836507, 0.010168787, -0.0032516867, -0.037228566, 0.029350663, -0.0013523051, 0.009970472, 0.0062777046, -0.006240093, 1.5546806E-4, -0.010722702, -0.00430139, -0.002003668, -0.0024515872, -0.036024995, 0.024823602, -0.002000249, -0.016029345, -0.029569492, 0.054652955, -0.024591096, 0.0044860286, -0.0410581, -0.0061751273, -0.010025179, 0.01898356, 0.020036682, -0.037310626, -0.0018686086, -0.031812508, 0.010271364, 0.003077306, 0.01645333, -0.0075154654, 3.070895E-4, -0.021568496, 6.8769243E-4, -0.03720121, 0.02102142, -0.0026618699, 0.02470051, -0.019284451, 0.020255513, -0.001512154, -0.011987817, 0.020296544, -0.025315972, -0.029295955, 0.0106953485, 0.025616864, 5.124569E-4, 0.025630541, -0.023756804, -8.308726E-4, -0.002678966, -0.0064862776, 0.0155233, -0.0104765175, 0.0037645712, 0.013109324, 0.017055115, -0.006110162, 0.029706262, -0.016220823, 0.006421312, -0.007864227, -0.019298129, -0.0075291423, -0.015181377, -0.013683754, 0.0020942776, -0.011454417, -0.008623295, 0.023510618, -0.024891987, -0.012945201, -0.034520537, -1.4798851E-4, -0.018764729, -0.008903672, 0.021883065, -0.0013676916, -0.017697928, 0.0021045355, -0.17287622, 0.017424392, 0.039635703, -0.0069205193, 0.012958878, 0.0145248845, 0.016029345, 0.02452271, -0.02438594, 0.006390539, 0.03528644, -0.013772654, -0.02772311, -0.022252342, 0.0048587243, -0.012938363, -0.027531631, 0.005638309, 0.019981975, 0.003007212, 0.009676418, -0.022539558, -0.0065820157, 0.011167202, -0.014032516, 0.008507042, 0.023086634, 0.015947284, 0.015071961, -5.547699E-4, -0.003880825, -0.023934603, 0.044176437, -0.006257189, 0.00248407, -0.003427777, -0.013355508, 2.8449054E-5, -0.018327067, 0.03835007, 0.014483854, 0.0042501017, 0.020597436, -0.0074402425, 0.02013242, 0.03982718, 0.007077804, 0.006270866, -0.008636973, -0.020282866, 0.020433312, -0.014552238, 0.012999909, -0.00443474, -1.3954728E-4, 0.0017215818, -0.015195054, 0.014319731, 0.025329648, -0.005463928, -0.034219645, -0.007693265, 0.026150264, -0.0077890037, -0.0011847628, -0.029897738, -0.019899912, 0.03197663, -0.025603186, -4.7783725E-4, 0.010838956, 0.009587518, -0.0074744346, 0.0021096643, 0.02483728, 0.028530046, -0.038787734, 0.0051185857, 0.008110411, -0.006301639, 2.1252646E-4, 0.04412173, 0.0045407363, -0.002550745, -0.014538562, -0.025151849, -0.011652732, 0.009820025, 0.012869978, -0.01649436, -0.00248407, -0.031867214, -0.015222408, -0.0069307773, 0.009204565, 0.013724785, -0.0020720528, -0.009368688, 1.3911987E-4, -0.020816267, 5.222872E-4, -0.019270774, -0.025466418, 0.017424392, 0.032715183, -0.00949178, 0.01170744, -0.0018190298, -0.0024362006, 0.016357591, -0.0027507697, 0.009033603, 0.014565916, 0.017711606, -0.0036483174, 0.0134786, -0.02691617, -0.030718353, 0.024112403, -0.004106494, 0.02594511, 0.0051322626, -0.012705855, 0.0065170503, -0.0041099135, -0.0164123, -0.08337448, 0.009635387, 0.033152845, 0.040647794, -0.015619038, 0.002598614, 0.002208822, 0.028940354, -0.011762148, 0.025644217, -0.026806755, -0.028803585, -0.020200806, 0.039498933, 0.01574213, 0.016849961, 0.011700601, -0.032441646, -0.027176032, 0.01884679, -0.013758978, -0.036544718, -0.010640641, 0.0033474253, -0.011420225, -0.005946039, -0.003658575, 0.012247678, 0.019749466, 0.0038329556, 0.0021592432, -0.043656714, 0.0028977967, 0.012411801, -0.0127947545, -0.027531631, -0.02244382, -0.0022823354, 0.023866218, -0.028475339, 0.018381774, 0.011276618, -0.012288709, -0.039799824, -0.009033603, -0.009628549, -0.025384355, 0.023045603, -0.0061853854, -0.025739957, 0.016849961, -0.013998323, -0.029542139, 0.003644898, 0.024290202, -0.014429146, 0.0046193786, 0.0020600855, -0.01095521, 0.011556994, -0.003508129, 0.024167111, -0.003952629, 0.012213486, 0.0146343, -0.008178796, 0.008452334, 0.019899912, 0.028447986, 0.013211901, -0.016508037, 0.02199248, -0.008315565, 0.016111407, -0.0014907839, -0.007214573, -0.022785742, -0.013150355, 0.010100403, -0.006865812, -0.011201394, -0.014333408, 0.003952629, -0.023127666, 0.0055220546, 0.035094965, 0.006168289, -0.011235586, 0.013601693, -0.059850186, 0.016549068, 0.009587518, 0.055172678, -0.0060793892, -0.0022703682, 0.012753724, 0.0016224241, -0.011290294, -0.007823196, -0.013143516, -0.06406268, 0.007816358, -0.07916199, 0.048224807, 0.027435893, -0.0062503507, 7.688991E-4, 0.007946288, 0.016836284, -0.016207146, -0.0088421265, 0.013109324, -0.029131832, 0.010298718, -0.0034363251, 0.005491282, -0.020939358, 0.022197634, 0.019886237, -0.0069649694, 0.027750462, 0.011119333, -0.0035354828, 0.006000747, -0.02212925, 0.009307141, -0.012979393, -2.7952198E-4, 6.475165E-4, 0.0043048095, 0.007823196, 0.029651554, 0.025739957, -0.015632715, -0.010565418, 0.03419229, -0.0024242334, -0.020829944, 0.0059494586, -1.765177E-4, -0.027244417, -0.028557401, -0.021842035, -0.010161948, 0.0022874642, -0.017903084, -0.0014044483, 0.004554413, -0.0022019835, -0.0018429644, 0.015728453, 0.028913, -0.0056212125, 0.008000996, 0.008288211, -0.030636292, 1.477748E-4, 0.0029217312, -0.008404464, -0.012186132, 0.013663239, -0.0014309473, 0.034876134, -0.01987256, 0.005450251, -0.016357591, 0.0066401428, -0.014921515, -0.015181377, 0.0134991165, 0.008089895, 0.0077821654, -0.02199248, 0.007973642, 0.012569086, 0.017930437, 0.010811602, 0.00514252, 0.015249762, 0.0047219554, -0.018792083, 0.0073376657, 0.005628051, 0.01068851, 0.007214573, -0.003397004, -0.0015651521, -0.012384447, -0.01894253, 0.024974048, -0.011091979, 0.009450749, -0.035997644, 0.020501697, -0.019626375, -0.014306054, 0.023633711, 0.009539649, 0.0021968547, -0.0147437155, 0.04111281, 0.0025610025, -0.0058844932, -0.0051254244, -0.020816267, 0.004643313, -2.961907E-4, 0.012678501, -0.013608531, -0.030089214, 0.001530105, -0.004021013, 0.010011503, -0.017971467, 0.004021013, 0.022758389, -0.019886237, -0.010592772, -0.021924097, -0.013786332, -0.038541548, 0.0043731937, 0.010681671, 0.008548073, 5.325449E-4, 0.015933607, 0.015249762, -0.004865563, 0.00882161, -0.009006249, 0.03534115, -0.0074128886, 0.012028848, -0.024249172, -0.0031234657, -0.00785055, -0.033864044, 0.0026977716, 6.202695E-5, 0.012234001, 0.010079887, 0.11510493, -0.0061853854, -0.009177211, 0.0021626623, -0.013088808, 0.009690095, 0.010852633, -0.015673745, -0.0071393503, -0.037228566, -0.01174847, -0.008486526, -0.010093564, 0.012678501, -0.025589509, 0.027900908, 0.018833114, 0.03542321, -0.010743218, -0.02248485, 0.020515375, -0.0070846425, 0.007884742, -0.009601195, -0.021623204, -0.0012916138, 0.0066948505, 0.003383327, -0.001574555, -0.05716951, 0.0050365245, 0.0152087305, -0.02159585, -0.0016882443, 0.011830532, -0.012869978, -0.027969293, 0.007214573, 0.0065683387, -0.029815678, 0.01574213, 0.01286314, -0.037775643, -0.017930437, 0.011235586, -0.032386936, 5.7143864E-4, -0.038733028, -0.029049769 ], - "id" : "4b20d58a-f509-4a9a-bf58-e8894928c303", - "metadata" : { - "name" : "Avant SLR 6 Disc Pro" - }, - "text" : "- Size 54, 56, 58: Shimano Ultegra R8000, 52/36, 172.5mm length\n - Size 60, 62: Shimano Ultegra R8000, 52/36, 175mm length\n- Bottom bracket: Praxis, T47 threaded, internal bearing\n- Cassette: Shimano Ultegra R8000, 11-30, 11-speed\n- Chain: Shimano Ultegra HG701, 11-speed\n- Max chainring size: 1x: 50T, 2x: 53/39\n\nComponents\n- Saddle: Bontrager Aeolus Comp, steel rails, 145mm width\n- Seatpost: \n - Size 47, 50, 52, 54: Bontrager carbon seatmast cap, 20mm offset, short length\n - Size 56, 58, 60, 62: Bontrager carbon seatmast cap, 20mm offset, tall length\n- Handlebar: \n - Size 47, 50: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 38cm width\n - Size 52: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 40cm width\n - Size 54, 56, 58: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 42cm width\n - Size 60, 62: Bontrager Elite VR-C, alloy, 31.8mm, 100mm reach, 124mm drop, 44cm width\n- Handlebar tape: Bontrager Supertack Perf tape\n- Stem: \n - Size 47: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 70mm length\n - Size 50: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 80mm length\n - Size 52, 54: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 90mm length\n - Size 56: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 100mm length\n - Size 58, 60, 62: Bontrager Pro, 31.8mm, Blendr compatible, 7-degree, 110mm length\n- Brake: Shimano Ultegra hydraulic disc, flat mount\n- Brake rotor: Shimano RT800, centerlock, 160mm\n\nWeight\n- Weight: 56 - 8.03 kg / 17.71 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 275 pounds (125 kg).\n\n## Sizing\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| 47 | 152 - 158 cm 5'0\" - 5'2\" | 71 - 75 cm 28\" - 30\" |\n| 50 | 158 - 163 cm 5'2\" - 5'4\" | 74 - 77 cm 29\" - 30\" |\n| 52 | 163 - 168 cm 5'4\" - 5'6\" | 76 - 79 cm 30\" - 31\" |" - }, - "87560057-39e7-4180-8df7-f8bc3aa894f8" : { - "embedding" : [ 0.006734038, 0.0058856285, -0.036731113, -0.003303804, -0.018924508, 0.019070901, -0.010546887, -0.028213754, 0.028266987, -0.020681214, 0.0051270514, 0.004481595, -0.020335196, 0.009063003, -0.021785809, 0.015264706, 0.012556451, 0.014878763, -0.0066142622, -0.021013923, 0.011165726, 0.008663752, -0.0021676016, 5.8972737E-4, -0.002551881, 0.007033476, 0.038780604, -0.0056327693, 0.009761693, -0.003002702, 0.012669573, 0.021027232, -0.024514025, -0.006501141, -0.009043041, 0.014120186, 0.018392174, -0.02251777, 0.03398959, 0.012869198, 0.021892276, -6.0261984E-4, -0.0018365557, -0.014865454, -0.013068824, 0.024913277, 0.008763565, -0.0076855863, 0.005296733, 0.0025718433, -0.01015429, 0.022065286, -0.021506334, -0.0019729666, -0.008051567, -0.0062582633, 0.008331043, 0.016063208, 0.05011934, 0.010300682, -0.0055129942, -0.004977332, -0.0320998, 0.0029561226, -0.025938023, -0.025685163, -0.013867326, 0.020667905, 0.0062682442, 0.025738396, 0.013102095, 0.033670187, 0.007678932, -0.0020361813, 0.008537322, -0.016835093, 0.0026017872, -0.013008936, -0.0034734858, 0.0065843184, 0.028373454, -0.02587148, -0.011491781, -0.0017700138, 0.028027438, -4.1380728E-4, 0.003979204, -0.014612596, 0.0013399869, -0.003802868, -0.017726755, 0.015411098, 0.002022873, 0.0012343518, 7.9975015E-4, 7.939277E-4, -0.01702141, -0.0020361813, -0.0014539399, -0.022291528, 0.013381571, 4.8367624E-4, -0.004368474, -0.023302963, -0.019030975, -0.008943228, -0.005476396, -0.0047743795, 0.007000205, -0.0037928869, -0.017433971, -0.0013133702, -0.004328549, -0.013414841, 0.018458715, -0.008903302, 0.04508877, 0.013581196, 0.027495101, -0.018565182, 0.0113720065, 0.034415457, 1.9037214E-4, -0.020987308, -0.0067739626, 0.015118314, -0.0052534807, -0.012716152, -0.003699728, -0.012769385, 0.013381571, -0.013561234, 0.0014456222, 2.4578904E-4, -0.0433853, 0.029677676, 0.0012684545, 0.018338941, -0.043411918, -0.012356826, 0.017886456, 0.010899559, -0.005223537, -0.0074127647, -0.005443125, 7.910165E-4, -0.002150966, 0.029943842, 0.013381571, -0.014998538, 0.023702215, -0.012556451, 0.022331452, 0.02072114, -0.0153445555, -0.012629648, -0.009801618, 0.010214178, -0.023475973, -0.0057359096, -0.025844863, -0.0066941124, 0.004019129, -0.0072064847, 0.037636083, 0.013720934, 0.0059122453, -0.023409432, -0.00618174, -0.020494897, -0.0121705085, 0.029411508, -0.01751382, 0.002111041, 0.01002786, 0.046978563, 0.039179854, 0.005552919, -0.030609261, 4.3834458E-4, 0.014665829, 0.0028662912, 0.010626737, 0.014905379, -0.021067157, -0.0046013705, -0.013621122, -0.023475973, 0.018139314, -0.008430855, 0.01498523, 0.006684131, -0.01694156, 0.0039492603, -0.61410165, -0.016116442, -0.0071931765, -0.004930753, 0.0148920715, 0.008384276, 0.0013025572, 0.030449562, -0.0042087734, -0.0023688907, -0.010553541, 0.024301091, -0.0163693, -0.016023284, -0.012529835, -0.019124134, 0.009315862, -0.01158494, -0.010526924, -0.0091894325, -0.020627981, -0.01392056, -0.036172163, 0.0035367005, -0.003586607, -0.0074061104, 0.02710916, -0.0062283194, -0.0016668739, 0.0184321, -0.023342889, 0.04692533, -0.0010089411, -0.0017084626, 0.033803273, -0.034016207, -0.016981486, 0.031727165, 0.008450818, 0.019776244, -0.0044949036, -0.0024603857, 0.003410271, -0.004874192, 6.0553104E-4, 0.0029378238, 0.045541257, -0.00724641, 0.010899559, -0.04093656, 0.0127094975, 0.020694522, 0.008171342, -0.023702215, 0.010566849, -0.011265539, 0.016994795, -0.0025119558, -0.003410271, 1.5738713E-5, -0.006747346, 0.010373878, -0.025152829, -0.008537322, -0.017686829, 0.019337067, -0.038780604, -0.028692856, 0.022877095, -0.0158902, 0.023888532, 0.015983358, -0.015996667, 0.030183394, 0.030928662, 0.005246827, 0.041229345, -0.017806605, 0.01457267, 0.014053644, 0.013295067, 0.012476602, -0.0063381135, -0.026457049, 0.055043437, -0.0060453294, 0.009275937, -0.011558323, -0.0029028892, 0.006254936, 0.03561321, 0.014905379, 0.0051736305, -0.024048233, -7.4318954E-4, 0.024261167, -0.0037829054, 0.013787476, 0.012230396, -0.016821785, -0.02235807, 0.0054996856, 0.012290284, 0.016808476, 0.027974203, 0.024261167, -0.024540642, -0.0051436867, 0.005576209, -0.029704291, -0.0021459754, -0.022491153, -0.012037424, 0.0133483, -0.007259718, -0.023861915, 0.011578286, 0.019097518, 0.016382609, -0.0014431268, 0.015264706, -1.4264914E-4, 0.018897891, 4.5414828E-4, -0.025232678, 0.009495526, 0.0061018895, -0.014466203, -0.020095646, 0.0035433548, 0.0050338926, 0.0074526896, 0.029038873, -0.01809939, 0.03683758, 0.0052069016, 0.006185067, -0.0038195036, 0.020934073, -0.022690779, -0.04740443, -0.0045048846, 0.010633391, -0.032552283, -0.02104054, -0.016928252, 0.0030975242, 0.016116442, -0.0031075054, -0.015278014, -0.028825939, -0.0052834246, -0.016928252, 0.020907456, -0.0043817824, -0.024979819, -0.027601568, -0.0086504435, 6.903719E-4, -0.026536899, 0.0042786426, 0.034867942, -0.030582644, 0.006188394, 0.010380533, 0.0020045738, 0.012257013, 0.009515488, -0.0014472858, -0.04993302, -0.013681009, -0.001365772, -0.024021616, -0.0073661855, -0.039818656, -0.003762943, -0.021186933, -6.600122E-4, 0.0046446226, -0.023196496, -0.001512164, 0.009182778, -0.041069645, 5.2651257E-4, 0.030689111, 0.028346838, 0.027255552, 0.0023306292, -0.010526924, 0.021200242, -0.011511744, -0.003127468, 0.0062283194, -0.0047045103, 0.0033154488, 0.0030925334, 0.021705959, 0.004202119, 0.00974173, 0.027055925, 0.028293604, 0.013827401, 0.007885212, 0.0121572, 0.014559362, -0.014625903, 0.02547223, -0.011079222, 0.021519642, 0.030236628, 0.013481383, -0.03138115, 0.0030858794, -0.013388225, -0.0038893726, -0.0040357644, 0.0010297354, 0.027388634, -0.019257218, -0.0072530643, -0.016143057, 0.01760698, 0.015011846, 0.00958203, -0.0012019125, 0.022917021, 0.03297815, 0.044316888, -0.012423367, -0.017061336, -0.010613428, 0.0012060715, -0.0016344348, -0.010593466, 0.018086081, 0.009934702, 0.018072773, -0.0055495924, 0.06744684, -0.013514655, 0.04027114, 0.046845477, 0.020694522, -0.025405686, 0.022131827, 0.019696394, 0.03726345, 0.034734856, 0.032951534, 0.0088234525, -0.01597005, -0.012583069, 0.0116315195, 0.00843751, 0.018937817, -0.0053765834, -0.004368474, 0.03135453, -0.0036032423, 0.011804529, 0.025964638, 0.023342889, 0.019283835, 0.016329376, 0.031833634, -0.011179035, -0.041202728, -0.0032106454, -0.012995628, -0.02808067, -0.0027348709, 0.003032646, -0.015317939, 0.0020045738, 0.008617173, -0.011857762, 0.0046379687, -0.007865249, 0.007632353, 0.0383015, -0.012802657, -0.03324432, -0.002184237, 0.012942394, 0.0035466817, 0.0112855015, 0.017726755, 0.0019979198, -0.002793095, 0.031860247, -0.011684753, 0.0034002897, -0.00724641, 6.824701E-4, -0.03191348, -0.003586607, 0.022158444, -0.01400041, 0.024846734, -0.0020328541, -0.0094489455, -0.004128923, -0.010427112, -0.012396751, 0.03404282, -0.009082966, 9.906421E-4, -0.01711457, 0.017433971, -0.009601993, -0.00618174, -0.03404282, -0.010600121, -0.023928458, -0.0014023699, 0.004401745, -0.0021526297, -0.019723011, 0.024021616, -0.026177572, -0.026230806, -0.014319811, -0.027867736, -0.016728627, 0.03422914, 0.015038463, -8.792105E-6, 0.01117238, -0.023356197, 0.016089825, -0.0036664573, -0.012955703, 0.0014722389, 0.03710375, 0.0031075054, 0.013594504, -0.0130555155, 0.004834267, 0.0013666038, -0.017686829, -0.008370968, -0.011065913, -0.0023306292, 0.0021859005, -0.005479723, -0.008324388, 0.0037529615, 0.027974203, 0.020321889, 0.016662085, 0.011591595, 0.015504257, 0.006783944, -0.012909124, 0.0121572, -0.0134015335, 0.015783733, 4.3418573E-4, -0.020508206, 0.017367428, 0.002239134, -0.006763981, 0.024301091, -1.5429397E-4, 0.021839043, 0.016489075, -0.009409021, 0.0026733198, 0.015437715, 1.06570966E-4, 0.002187564, -2.8529827E-4, 0.025232678, -0.016475767, 0.01751382, -0.0012726133, -0.019869404, -0.0038893726, 0.018964434, 0.025512153, -0.0038793911, -0.012702843, -0.006953626, -0.032312732, 0.016928252, -0.025046362, 0.019257218, 0.0015421079, -0.013468076, 0.011132455, -0.00519692, 0.024008308, 0.0023505916, -0.010054477, -0.030742345, -0.010859634, -0.028746089, 0.034335606, 0.0022956945, 0.008830107, 0.028240371, -0.031061746, 0.01686171, 0.003057599, -0.022185061, 0.020108953, -0.009894776, -0.006893738, 0.011811183, 0.019935945, 0.021107081, -0.0083044255, 0.022291528, 0.006820542, 0.030183394, -0.0011362025, 0.017473895, -0.005865666, 0.0071599055, -0.020508206, 0.015171547, 0.0106467, -0.007885212, -0.014732371, 0.0055462653, -0.02768142, -0.009149508, 0.015570798, 0.01751382, -0.020361813, 0.0023855262, -0.011438548, 0.005552919, -0.021785809, -0.036810964, -0.027548335, -0.0189112, -9.648572E-4, -0.020667905, -0.0038527744, 0.014186727, 0.0048475754, 0.0021559566, -0.008264501, -0.0033620282, -0.0541917, 0.03284507, 0.020295272, -0.013028898, 0.040217906, 0.0071133263, 0.00999459, -0.008211267, 0.02366229, 0.042054463, 0.027628185, 0.003373673, 7.810352E-4, -0.026656674, -0.022078594, -0.023342889, -0.0077987076, 0.01908421, -0.005829068, -0.009402366, 0.011165726, 0.0010871278, 0.008836761, -0.021785809, -0.018818041, -0.019882713, 0.018139314, 0.0023189844, 0.016662085, -0.0057725073, 0.011052605, -0.01272946, -0.02398169, -0.035719678, -0.024514025, -0.005057182, -0.028187137, 0.012895815, 0.020601364, 0.0067240563, 0.003729672, 0.019523386, 0.007785399, -0.014106877, -0.00732626, -0.008537322, 0.020095646, -0.050145954, 0.0012667909, 0.023289656, -0.0066608414, -0.017008103, -0.01940361, -0.0052767703, 0.019523386, 7.9683895E-4, -0.018645033, -0.01908421, -0.039499257, -3.1836127E-4, -0.037183598, -0.0033420655, -6.0594693E-4, -0.024873352, -0.004794342, 0.035426892, -4.379287E-4, 0.009069657, 0.013195253, -0.010580158, -0.04282635, 0.039446022, 0.00358328, 0.014532745, 0.0015861919, -0.017633596, -0.017234346, -0.02162611, 0.016954869, -0.02816052, 0.0133483, 0.011611557, -0.030662496, -0.005789143, -0.0012310246, 0.003623205, -0.013208562, -0.0016568926, -0.025844863, 7.3611946E-4, -0.024247859, -0.008810144, -0.020827606, 5.535452E-4, 0.020321889, 0.0032422529, 0.015317939, -0.02488666, -0.0033304207, 0.015105005, -0.0051703034, 0.023289656, -0.002485339, 0.011265539, 0.022158444, 9.008106E-4, -0.01408026, -0.017034719, -0.009289245, 0.020335196, 0.012969011, 0.021878967, -0.013461421, -0.013068824, 0.009655226, -0.0014813885, -6.6999346E-4, -0.002859637, 0.005010603, 0.017487204, 0.03774255, -0.0049839863, 0.010473691, -0.014918688, 0.005077145, 4.4208756E-4, 0.018019538, -0.002823039, -0.02301018, 0.01457267, 0.005446452, -0.016781861, 0.008484089, 0.012476602, -0.0091694705, 0.0066308975, -0.01158494, -0.01792638, 0.008716986, -0.005935535, 0.05861008, -0.0088434145, 0.011724678, 0.032365967, 0.009834888, -0.012010808, -0.01687502, -0.0025951331, 0.018006232, -0.027055925, -0.0036697844, -0.020614672, -0.014319811, -0.007825324, 0.0039159893, -0.0065410663, -0.011032643, 0.011352044, -0.005928881, -0.01384071, -0.024580568, -0.005582863, -0.023356197, -0.030609261, -0.025884788, -0.0057824887, -0.015624031, -0.0016236217, -0.04455644, -0.0012975666, -0.01555749, 0.011252231, 0.03691743, 0.007153251, -0.031647313, -0.004764398, 0.009848197, -0.0049274256, 0.014532745, 0.021878967, -0.001236847, -0.004232063, 0.023369506, 0.008410892, -0.00974173, 0.0032006642, -0.0024770212, -0.006221665, -0.043997485, 0.018764809, -0.006933663, 0.00501393, -0.013261795, 0.011192343, -0.004834267, 0.005077145, -0.011924304, -0.020827606, 0.006361403, -0.010021206, 0.008770219, -0.0038793911, -0.023595748, 0.015836965, 0.010047823, -0.009289245, -0.0025901424, -0.025086286, -0.026004564, -0.006640879, 0.018591799, -0.013235179, 0.014599287, -0.023955075, -0.02644374, -0.024008308, 0.021679342, -0.023023488, 0.019683085, 0.017394045, -0.021666033, 0.006318151, 0.024500718, -0.0145460535, -0.020907456, 7.7313336E-4, -0.005150341, -0.039818656, -0.018445408, 0.008344351, 0.021839043, 0.011857762, -0.010373878, -0.009961318, -0.007605736, -0.052222062, -0.0327386, -0.012669573, 0.003483467, 0.010526924, 0.028054053, -0.0074393814, 0.0063447678, 0.040350992, 0.032525666, -0.0042586797, -0.006820542, 0.001086296, 0.013601159, -0.013241833, -0.020827606, -0.044902455, -0.018046156, 0.01150509, 0.007133289, 0.014106877, 0.007259718, -0.0056427508, -0.004970678, -0.0059654787, -0.024354326, 0.0138540175, 0.03284507, -0.009435638, -0.025938023, -0.023462664, -0.001365772, 0.006537739, -0.008038258, 4.1214374E-4, -0.030263243, -0.009495526, -0.012622993, -0.013002282, 0.0010180906, -0.013800784, -0.022837171, 0.03558659, -0.011085876, -0.023595748, 0.029491358, 8.9582E-4, -0.031008514, -0.018299015, 0.049161136, -0.01752713, -0.022384686, 0.0075458484, -0.03872737, -0.011897687, 2.8675387E-4, 0.021479717, 0.003267206, -0.0045248475, -0.010413803, -0.025046362, -0.0032588881, 0.049560387, 0.019643161, -0.031168213, -0.03151423, 0.026017873, -0.0068005794, 5.913909E-4, -0.005892283, -0.015610724, -0.04854895, 0.004824286, -0.012237051, -0.016768552, -0.0066674957, 0.017061336, 0.006431272, 0.005679349, -0.007965062, 0.19376993, -0.009289245, -0.0026333947, 0.027947586, 0.017833222, -0.0020694523, 0.021719268, -0.0027099177, -0.0014323138, -0.0064512347, -0.007386148, 0.026576824, -0.0055961716, -0.0024454137, 0.03806195, -0.026709909, -0.03963234, -0.020614672, -0.015224781, -0.006920355, -0.0047843605, 0.0032855049, -0.017660214, -0.020761065, 0.025418995, 0.0014215008, -0.03281845, -0.0029611134, 0.010673316, -0.0019596582, -0.002485339, -0.014479511, 0.030609261, 0.0078120157, -0.025112903, -0.010906213, 0.016382609, 0.0068338504, 0.018711574, 0.024979819, 0.011924304, -0.021107081, 0.031008514, -0.01241006, 0.007678932, -0.012975665, -0.022504462, 0.0037596158, -0.020188805, 0.0021077138, -0.020774372, 0.009668534, 0.0045647724, 0.043198984, -0.009528796, -0.030422945, 8.321893E-4, -0.013614467, 0.008331043, -0.0025901424, -0.016968178, 0.02324973, 0.01309544, 0.044769373, -0.013394879, 0.014426278, -0.030556029, -0.019190677, 0.02054813, -0.008510705, -0.012549797, -0.008038258, -0.002452068, -0.002808067, -0.023422739, -0.031594083, 0.005509667, 0.0053799106, 0.0039060079, -0.0031757108, 0.0061052167, -0.015198164, 0.007499269, 0.00937575, -0.022610929, -0.037210215, 0.016529001, 0.014412969, 0.013088786, -0.0106799705, 0.0010255766, 0.020242037, 0.0012900806, 0.0317804, 0.012796002, -0.0050372197, -0.029358275, 0.024141392, -0.015836965, 0.010081094, -0.024953203, 0.065796606, -0.0032455798, -0.0010496981, -0.023821991, 0.0014298185, -0.0077188574, 0.021173624, -0.006075273, -0.02064129, -7.789558E-4, -0.04200123, 0.0024936567, 0.0016036591, 0.02480681, -0.015570798, -0.008736948, 0.001046371, -0.012849236, -0.017394045, 0.007139943, -0.01817924, 0.01711457, 0.009874814, 0.02309003, -0.030822195, -0.017979614, 0.010773129, 0.0077920533, -0.01597005, 0.014825529, -0.0074726525, 0.018631725, -4.2961095E-4, -0.021506334, -0.011777911, -0.010121019, -0.012822619, 0.0075924275, -0.01039384, 0.0038228305, 0.010593466, 0.02350259, -0.0037596158, 0.055043437, -0.020002486, 0.017713446, -8.463294E-5, -0.015357864, -0.021266783, -0.017673522, -0.005852358, 1.5762106E-4, -0.0034036168, 0.0148920715, 0.029171957, -0.022983562, -0.0238353, -0.025245987, 0.02455395, -0.026137648, 0.0017816586, 0.018352248, -0.00615845, -0.019416919, 0.003395299, -0.16725965, 0.0135745425, 0.017660214, -0.0030659167, 0.028133905, -0.0015495939, 0.025924714, -0.015251397, -0.021266783, -0.0026799738, 0.030236628, 0.0038827183, -0.03138115, 0.0135745425, 0.01309544, -0.004205446, -0.007865249, -0.010553541, 0.033191085, 0.013068824, -0.011052605, -0.022797246, 0.011338735, -0.0015920143, -8.509042E-4, 0.030130161, 0.0064113094, 0.03454854, 0.0031058418, -3.747139E-4, -0.009695151, -0.033670187, 0.04218755, -0.0015853602, 0.013734243, -0.001457267, -0.0112855015, -8.226239E-4, -0.0051104156, 0.027308784, 0.0020345177, 0.0112855015, -0.004438343, -0.0059954226, 0.030422945, 0.024939895, -0.008484089, 0.002838011, -0.0059222267, -0.028054053, 0.049240988, -0.013361608, 0.0068039065, -0.0212934, 0.018538566, 0.006677477, -0.01792638, 0.010147636, 0.017633596, -0.023768757, -0.0040989793, 3.6660413E-4, 0.0052767703, -0.007918483, 0.016262833, -0.016582234, -0.003799541, 0.028506538, -0.015331248, -0.0020062374, -0.01002786, -0.009595338, 0.010420457, 0.010327299, 0.020428356, 0.008929919, -0.0058556846, -0.022131827, 0.032658752, 0.001218548, -0.001721771, 0.036039077, -0.012130584, -0.005755872, -0.022903712, -0.010839671, -0.006361403, -0.005908918, 0.0056693675, -0.020029103, 0.0019480133, -0.039100006, 0.005576209, 0.011771257, 0.012110621, 0.0018348922, -0.008703677, -0.018565182, 0.012436676, 0.0025718433, -9.0496946E-4, 0.015544182, -0.032392584, 0.016169675, 0.019283835, -0.00179164, 0.021413175, 0.0033470562, 0.00990143, 0.020521514, -0.021839043, 0.017633596, 0.008583901, 0.037369914, 0.001934705, 0.015078388, -0.02072114, -0.033670187, 0.0099679725, 0.014426278, 0.024327708, -0.012123929, -0.025418995, 0.0013100432, -0.012276975, -0.02898564, -0.090443715, -0.0046379687, 0.028320221, 0.015171547, -0.013667701, -0.010846325, -0.007825324, 0.023955075, -0.021559566, 0.026590133, -0.018285707, -0.042959433, 9.781655E-4, 0.021839043, 0.0032472434, 0.0032256173, 0.010280719, -0.03569306, -0.008623826, 0.018871276, -0.008297771, -0.009462254, 0.0016743599, -0.0037962138, -0.007971716, -0.019496769, -0.025112903, 0.034495305, 0.022331452, 0.0023223113, 0.0025834881, -0.025778322, 0.0059954226, -0.008929919, -0.014798912, -0.020920765, 0.0041987924, -9.914739E-4, 0.05057182, -0.013448113, -0.0052102287, 0.0026234135, 0.0019613218, -0.015930124, -0.027548335, -0.028879173, -0.017633596, 0.01760698, -0.01719442, -2.940319E-4, -0.011658136, -0.013008936, -0.013508, 0.030609261, 0.023369506, -0.004870865, 0.011711369, 0.009781655, -0.012815964, -0.002646703, -0.004578081, 0.0058889557, 0.008943228, -0.007565811, 0.017300887, -0.0029561226, -6.9536257E-4, 0.019536695, 0.015011846, -0.01744728, 0.009508833, 0.0028662912, -0.0027914315, 0.024021616, -0.0432256, -0.010014552, -0.022624237, -0.013321683, 0.018951125, -0.007399456, -0.024620494, -0.014852146, 0.022810554, -0.049587004, 0.022664161, 0.03646495, 0.005938862, -0.025977947, 0.014971921, -0.04405072, 0.018378865, 0.01759367, 0.05706631, 0.007851941, -0.016568927, -0.02898564, 0.021479717, -0.003589934, -0.019669777, -0.01646246, -0.046472844, 0.0013624448, -0.07000205, 0.035826143, 0.004468287, -0.021240165, -0.012616339, -0.014399662, 0.035320427, -0.028213754, 0.004188811, 0.005147014, 0.002367227, 0.011132455, -0.010260757, 0.0053100414, -0.012642955, -0.0069403173, 0.008264501, 5.3285483E-5, 0.011764603, 0.020987308, 0.016103134, 0.0012601367, -0.004950715, 0.028133905, -0.03127468, 0.012230396, -0.030103544, 0.018764809, 0.0017666867, -0.008570593, 0.020867532, -0.018618416, 0.020734448, 0.038993537, 0.0016086497, -0.035905994, 0.0012044079, 0.004950715, -0.015171547, -0.029757526, -0.021599492, -0.012556451, -0.0033819906, -0.018205857, -0.0026350582, 0.009063003, 0.01760698, 0.006048656, 0.013707626, 0.0024703671, 0.013381571, -0.005353294, 0.0070534386, -0.032046568, -0.0045947162, -0.016249526, -0.008923265, -0.007386148, 0.01646246, 0.0051303785, 0.043438535, -0.021985434, 0.010986064, -0.009442292, 0.018046156, -0.019909328, -0.016568927, 0.019443536, 0.006454562, -0.012097312, -0.029278424, -0.011099185, -0.0062682442, 0.014798912, -0.011411931, 0.0145460535, 0.021905584, 2.8696182E-4, -0.0052069016, 0.013734243, 0.0051603224, -0.011984191, -0.011125801, 0.0013275103, 0.0013566224, -0.00990143, -0.03005031, 0.018857967, -0.0058756475, 0.01654231, -0.038913686, 0.031301297, -6.504468E-4, -0.005356621, 0.03127468, 0.01264961, -0.024434175, -0.0155175645, 0.051716343, 0.028639622, 0.0021859005, -7.3154474E-4, -0.0118244905, -0.012210433, 0.001108754, 0.0158902, -0.014679138, -0.0134015335, -0.0030492814, 0.014865454, -0.006434599, -6.841336E-4, 0.0027115813, 0.019297143, -0.014426278, 0.029810758, 0.009854851, -0.024061542, -0.03428237, 0.042054463, 0.022584312, 0.011877724, -0.006680804, -0.004697856, 0.03364357, -0.00818465, -0.0015545845, -9.157825E-4, 0.0019097518, -0.010041169, 0.010041169, 0.0064778514, -0.014412969, -0.009775002, -0.013115403, -0.0018165931, -0.0073129516, 0.014293195, 0.018072773, 0.109767474, 0.010673316, -0.0115649775, 0.021479717, -0.0073928023, 0.009255975, 0.0042420444, -0.0119974995, 0.014745679, -0.021972127, -0.009482217, -3.5412752E-4, -0.029092107, 0.008244538, -0.030396327, 0.050811373, 0.017966306, 0.015730498, 9.7400666E-4, -0.031700548, 0.016901636, 0.007778745, 0.020920765, 0.004085671, -0.012583069, 0.03207318, 0.014532745, 0.019310452, -1.6677057E-4, -0.029225191, 0.021013923, 0.009036386, -0.040404227, -0.011698062, 0.011864416, -0.015331248, -0.0019962562, -0.010121019, 0.016914943, -0.017700138, 0.0031990006, 0.0054996856, -0.012922431, -0.011418586, 0.006720729, -0.01849864, -0.009076311, -0.043198984, -0.06696774 ], - "id" : "87560057-39e7-4180-8df7-f8bc3aa894f8", - "metadata" : { - "name" : "Axiom D8 E-Mountain Bike" - }, - "text" : "Stem\tAxiom D8 stem \nHeadset\tAxiom D8 headset \nBrake\tHydraulic disc brakes \nBrake rotor\t180mm \n\nAccessories \nE-bike system\tBafang M400 mid-motor \nBattery\tLithium-ion battery, 500Wh \nCharger\tLithium-ion charger \nController\tBafang M400 controller \nTool\tN/A \n \nWeight \nWeight\tM - 22 kg / 48.5 lbs \nWeight limit\tThis bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 136 kg (300 lbs). \n \n \n## Sizing & fit \n \n| Size | Rider Height | Inseam | \n|:----:|:------------------------:|:--------------------:| \n| S | 152 - 165 cm 5'0\" - 5'5\" | 70 - 76 cm 27\" - 30\" | \n| M | 165 - 178 cm 5'5\" - 5'10\" | 76 - 81 cm 30\" - 32\" | \n| L | 178 - 185 cm 5'10\" - 6'1\" | 81 - 86 cm 32\" - 34\" | \n| XL | 185 - 193 cm 6'1\" - 6'4\" | 86 - 91 cm 34\" - 36\" | \n \n \n## Geometry \n \nAll measurements provided in cm unless otherwise noted. \nSizing table \n| Frame size letter | S | M | L | XL | \n|---------------------------|-------|-------|-------|-------| \n| Actual frame size | 41.9 | 46.5 | 50.8 | 55.9 | \n| Wheel size | 29\" | 29\" | 29\" | 29\" | \n| A — Seat tube | 42.0 | 46.5 | 51.0 | 56.0 | \n| B — Seat tube angle | 74.0° | 74.0° | 74.0° | 74.0° | \n| C — Head tube length | 11.0 | 12.0 | 13.0 | 15.0 | \n| D — Head angle | 68.0° | 68.0° | 68.0° | 68.0° | \n| E — Effective top tube | 57.0 | 60.0 | 62.0 | 65.0 | \n| F — Bottom bracket height | 33.0 | 33.0 | 33.0 | 33.0 | \n| G — Bottom bracket drop | 3.0 | 3.0 | 3.0 | 3.0 | \n| H — Chainstay length | 46.0 | 46.0 | 46.0 | 46.0 | \n| I — Offset | 4.5 | 4.5 | 4.5 | 4.5 | \n| J — Trail | 10.9 | 10.9 | 10.9 | 10.9 | \n| K — Wheelbase | 113.0 | 116.0 | 117.5 | 120.5 | \n| L — Standover | 73.5 | 75.5 | 76.5 | 79." - }, - "4490f590-caa2-491b-8c2e-de83516f4b07" : { - "embedding" : [ 0.023516221, 0.0017391776, -0.008875212, -0.025671532, 0.0038129776, -0.0061604814, -0.006009472, 0.01409875, 0.014798883, -0.025355786, 0.021525647, 0.017009106, -0.014812611, 6.842596E-4, 2.4410263E-4, -0.009218413, 0.01582849, -0.0017288815, 0.013590811, -0.012787717, 0.007365121, 0.027689561, 0.009266462, 0.0071729277, -0.0054775085, -0.019150687, 0.019452706, -0.02841715, 0.022925913, -0.007488674, 0.020276392, 0.0051308745, -0.04675788, -0.0037031528, -0.019658627, -0.020537226, 0.013865373, -0.01639134, 0.0053676837, -0.002398984, 0.016295245, 0.0031814852, 0.015032261, 0.021292271, -0.005985448, 0.02935066, -0.024257539, 0.019823365, 0.024477188, 0.008374136, -0.0013324829, 0.021566832, -0.013968334, 0.009479247, 0.012952454, -0.02259644, -0.0070081907, 0.0037100168, 0.016363885, -0.012375874, -0.0063561066, 0.015210725, -0.024655653, -0.010357846, -0.033331808, -0.024628196, -0.015938314, 0.0046469592, -0.011806159, 0.00179838, 0.0011814738, 0.04058024, 0.03761497, 0.0033393584, 0.0079005165, 0.0011136915, -0.028389694, 0.013535898, 0.0019511051, 0.017654326, 0.034484968, -0.009417471, -0.029103555, 0.014112478, 0.014949892, 0.047526654, -0.0051480345, -5.083684E-4, -0.03475953, -0.0044170134, 0.007687731, 0.008250583, 0.013474122, 0.03042145, -0.0035246876, 0.0068022693, 0.011538461, 0.028472062, -0.020194024, -0.0042282525, -0.004526838, 0.004516542, 2.5761622E-4, -0.023255387, -0.06342378, 0.015004804, -0.005975152, -0.002841715, -0.003727177, -0.022239508, -0.035940144, 0.025314601, 0.021978674, -0.021539375, -0.00622569, -0.022953369, 0.025094952, -0.017791606, -0.0024247242, -0.036571637, 0.0031523132, 0.044561386, 0.010460806, -0.007783828, -0.015073445, -0.0060849767, -0.029295748, -0.010852057, 0.02554798, 0.014510593, 0.029048642, 0.014579234, 0.0097057605, 0.0133986175, -0.034649704, 0.017132659, -0.029185923, -0.0012921566, 0.010426486, 0.010405893, 0.012924998, 0.017970072, -0.021882579, 0.004602343, 4.2921738E-4, 8.1038644E-4, -0.01262298, 0.013570218, 0.012108177, 0.001968265, -0.0028914793, -0.031739347, 0.017462132, 0.034320228, 0.010659863, -0.0051651946, -0.029542854, 0.0019133528, -0.01575985, -0.013885965, -0.015883403, -0.00819567, 0.014908708, -0.01820345, -0.0040841075, 0.036873654, 0.008106438, 0.011359996, 0.0018206881, 0.01813481, -0.017777879, 0.026632497, -0.008964444, 0.011071706, 0.03201391, 0.041760854, 7.7306316E-4, 0.004945545, -0.004077243, -0.006122729, -7.4874406E-6, -0.006733629, -0.005824143, 0.028883904, -0.016281517, -0.015265638, 0.013151512, -0.022816088, 0.02855443, -0.0025997574, 0.013206424, 0.022061044, -0.009547887, 0.030366538, -0.60711116, -0.012780854, -0.011607101, -0.02337894, 0.016130507, 0.023502493, -0.0063801305, 0.018478012, 0.0020094495, 0.020331305, -0.0051754904, 0.017215027, -0.023626046, -0.016487438, -0.023722142, -0.022239508, 0.023488766, -0.00359676, 0.020633321, -0.02439482, -0.012931863, 0.010625543, -0.029597767, 0.02482039, 0.01748959, 0.0040944032, 0.0059442637, -0.0059099435, -0.013316249, 0.016707087, -0.038109183, 0.03338672, 0.005951128, 0.010028371, 0.04439665, -0.02402416, 0.025081223, 0.015114629, 0.010783416, 0.027744474, -0.024381092, -0.018656477, 8.4996194E-5, -0.003878186, 0.0021879147, -0.010330389, 0.010344117, 0.014524321, -0.017640598, -0.017530773, 0.0024950807, 0.0022222348, 0.012863222, 0.012369011, 0.00863497, -0.009136045, 0.026714867, 0.0045886147, 0.02100398, 0.0029738478, 0.0065585957, 0.01619915, -0.008696746, -0.021182446, -0.043188576, 0.034182947, -0.058371846, -0.03942708, 0.022184595, 0.01582849, 0.00690523, -0.015938314, -0.013227017, 0.037175674, -0.0047121677, 0.017160114, 0.024998855, 0.0032158054, 0.021209901, 0.025081223, 0.02733263, -0.0071180156, 0.00963712, -0.019535074, 0.028664256, -0.0069601424, 0.014647874, -0.01698165, 0.011229579, -0.005522125, 0.006726765, 0.013329977, -0.004763648, -0.022678807, -0.015567656, 0.023639774, -0.023090651, 0.005546149, 0.013666315, -0.01812108, -0.014579234, -0.01050199, 1.9626881E-4, -0.005518693, 0.013837917, 0.0060575204, -0.011627694, -0.0127396695, 0.047526654, -0.012705349, 0.009033084, 0.010426486, -0.018807486, -0.02431245, -0.006884638, -0.019397793, 0.019535074, 0.036351986, 0.0068091336, -0.015526472, 2.857159E-4, -0.008085846, 0.008696746, 0.0011239875, -0.011737518, 0.01216309, 0.019384066, 0.008504553, -0.03445751, -0.0466206, 0.0388505, 0.035747953, 0.021251086, -0.006266874, 0.023598589, 0.029954696, 1.4575373E-4, -0.0029635518, 0.026316753, -0.0326454, -0.04796595, 0.0127396695, -0.027895482, -0.03805427, -0.026810963, 0.0016739692, -0.0326454, 0.012959318, 0.0014912139, -1.6977788E-4, -0.014689058, -0.013474122, -0.01619915, 0.017873976, -0.00995973, -0.013583947, 0.02992724, -0.019164417, -0.017283667, -0.024216354, 0.004471926, 0.019617444, -0.006894934, -0.013631995, -0.017146386, 0.0035109594, 0.02726399, -3.5499988E-4, -0.016665904, -0.034073126, 0.0057280464, -0.011394316, -0.023996705, 0.014743971, -0.019905733, 0.02517732, -0.029021187, 0.01255434, 0.014441952, -0.007722052, 0.0017408936, 0.021964947, -0.023365213, 0.016597264, 0.04071752, 0.012787717, -0.007337665, 0.020839244, -0.0240928, 0.00595456, 0.004204228, -0.009438063, 0.0042728684, 0.01363886, -0.014263487, -0.020441128, -0.02488903, -0.0037100168, 0.023104379, 0.014867524, 0.024339907, -0.0035864639, 0.020345032, -0.03646181, 0.011064842, -0.015938314, 0.012629844, 0.0069189584, 0.029295748, 0.0062153935, 0.020592138, -0.033029787, -0.014043838, -0.0076945955, -0.0077701, -0.0071523357, 0.013048551, 0.03503409, -0.007015055, -0.0081888065, -0.0062359856, -0.004979865, 0.019589987, -0.009630256, -0.00892326, -0.00906054, 0.018066168, 0.028362237, 0.010241156, -0.012499427, 0.026495216, 0.015320551, 0.015265638, 0.008168215, 0.022266965, 0.014290944, 0.026357936, -0.012369011, 0.009904819, 0.006606644, 0.037505146, 0.013268201, 0.039591815, -0.013913421, -0.004276301, -0.023735872, 0.023076922, 0.011037386, 0.01618542, 0.03099803, -0.01168947, 0.008820299, -0.012314098, 0.005240699, 0.0016293529, -0.014112478, 0.004362101, 0.0075504505, -0.0018618725, 0.011449229, 0.009801857, 0.022212053, -0.010577494, 0.004955841, 0.02381824, -0.019027134, -0.018354459, -0.024449732, -0.007015055, -0.0036345122, -0.015883403, -0.00982245, -2.3294856E-4, 0.015210725, 4.043352E-4, 0.0048666084, 0.022074772, 0.018958494, -2.8957694E-4, 0.0020214615, -0.019933188, -0.016157964, -0.003418295, 0.033853475, 0.0044238777, 0.007852469, -0.013302521, 0.029185923, -0.010618679, 0.023529949, 0.0017168695, 0.001805244, -0.009239006, 0.013288793, -0.016446253, -8.489967E-4, 0.04791104, -0.047389373, -0.027003156, -0.0033839745, -0.016816912, -0.004492518, -0.024202626, 0.0175445, 0.031876627, -3.5156784E-4, 0.009266462, -0.005065666, 0.0034869353, -0.0018996247, 0.00809271, -0.022925913, -0.020852972, -0.0059408317, 0.0023543676, -0.012993638, -0.0050107534, -0.010556903, 0.011442364, -0.009843042, -0.015993226, -0.0050004576, -0.0330847, -0.003912506, 0.052551135, 0.004022331, 0.022472886, 0.039674185, 0.007969157, 0.0013144648, 0.004180204, -5.718608E-4, -0.0044513335, 0.0059374, -0.025849996, 0.0029463917, -0.016858097, -0.009341966, -0.01233469, 0.001346211, 0.006640964, -0.03267286, -0.018903581, -0.023488766, -0.0064899554, -0.011861071, 0.013824188, 0.016501166, 0.018958494, -0.0063938587, 0.028801536, 0.034073126, 6.469363E-4, 0.003286162, -0.017860247, -0.008683018, 0.00681943, -0.010344117, -0.034512423, 0.021868851, 0.0094586555, -0.016075596, 0.035089, 0.031409875, 0.014455681, 0.020894155, -0.013734956, -0.0110991625, -0.009184093, -0.015526472, 0.004962705, 0.016377613, 0.01978218, -0.031162769, 0.027236534, 0.0060712486, -0.03245321, 0.0054431884, 0.01619915, 0.0249714, -0.031849172, -0.027387543, -0.013474122, -0.02799158, 0.010749096, -0.00880657, 0.039070148, -0.004763648, -0.004815128, 0.018752573, -0.0036791286, 0.0024504643, -0.019013407, -0.009218413, -0.016514894, -0.003142017, -0.023941793, -0.0027850866, 5.0064636E-4, 0.008614377, -1.9862833E-4, -0.029021187, 0.017956344, -0.005254427, 0.0281975, -0.0130691435, -0.008552602, -0.034430053, -0.0075710425, 0.0055976296, 0.038521025, 0.01043335, 0.0038026813, 0.0077151875, 0.020949068, -0.013899693, 0.037312955, -0.0054397564, -0.017997527, -0.005539285, 0.01978218, 0.0029549717, 0.0062497137, -0.0036688326, 0.017873976, -0.006743925, -0.0037786572, -0.01245138, 0.009939139, -0.008566329, -0.00841532, 0.008538873, -0.0115933735, 0.011819887, 0.0032398296, -0.011565917, 0.00631149, -0.010968746, -0.022774905, -0.003420011, -0.003871322, -0.010591223, 0.0013007367, -0.03267286, -0.0039262343, -0.04316112, 0.02676978, -0.004616071, -0.0057349103, 0.015512744, -0.0010673591, -0.02676978, -0.035802864, -0.0038507297, 0.010920697, 0.030805837, -0.028856449, 0.018958494, -0.020152839, -0.027868027, -0.01827209, 0.014483137, -0.011565917, -0.020880427, 0.0024350202, 0.009904819, 0.003303322, 0.013865373, 0.005806983, -0.024339907, -0.009431199, -0.02790921, 0.0011505857, 0.026481489, -0.009259598, 5.9202395E-4, -0.0050450736, -0.031327505, -6.465073E-4, -0.021566832, 5.075104E-4, -0.011181531, 0.008888939, 0.01762687, 0.02266508, 0.015306822, -0.01748959, 0.037724797, -0.007522994, 0.011867936, -0.018999679, -0.004499382, -0.022555254, 0.015457831, 0.022349333, 0.01927424, 0.016377613, -0.03706585, -0.009911682, 0.008278039, 0.0058893515, -0.037779707, -0.01341921, -0.006448771, 0.00447879, -1.6109057E-4, 0.0012363862, -0.0032072254, -0.033771105, -0.016707087, 0.024875302, 0.01827209, 0.0054534846, 0.0035281195, 0.018670205, -0.010364709, 0.014304671, 0.0027439024, 0.017571958, 0.007879925, 0.016061867, -0.022115955, -0.035802864, 0.029103555, -0.013968334, -0.014373312, 0.0020798058, -0.015032261, -0.014977348, -0.0047224634, -0.0013299088, -0.017668054, 0.01639134, -0.023831967, -0.015402919, -0.013494714, -0.030037064, -0.033441633, -0.01133254, 0.009904819, -0.013659451, 0.015732393, -0.015279366, 0.0079005165, 0.019411521, -3.4835032E-4, 0.032041367, 0.0054740766, 0.040882256, 0.025273416, -0.006496819, -0.009575344, -0.026550129, -0.0029257995, 0.004653823, 0.0023114674, 0.03360637, 0.017777879, -0.005408868, -0.026152015, -0.003438887, 0.0036448084, -0.018738845, 0.0015375463, 0.025232233, 0.0044307415, -0.024230082, -0.030201802, -0.011600237, 0.007001327, -1.7224465E-4, -0.014538049, 0.018876126, -0.017256211, -0.016679632, 0.059525006, -0.007852469, 0.015224454, 0.034045666, -0.011229579, 0.02957031, -0.0063732667, -0.0055633094, -0.010604951, 0.009932274, 0.028746624, -0.020729419, 0.00938315, 0.0281975, -0.009039949, -0.015073445, 0.0018069601, 0.03805427, 0.017640598, -0.02029012, -0.0101587875, -0.013474122, 0.0034165788, -0.011696334, -0.033496544, -0.024779206, -0.004276301, 0.007179792, -5.396856E-4, 0.018381914, -0.024202626, -0.019795908, -0.02748364, 7.331659E-4, 7.8679126E-4, -0.03445751, -0.015279366, -0.016816912, -0.027785657, -0.0076740035, -0.006908662, 0.015869673, -0.005501533, 0.0057520703, -0.0220885, 0.0072484324, 0.004911225, -0.035747953, -0.008442776, -0.0028846152, 0.003442319, -0.043133665, 0.0014611838, -7.760662E-4, -0.023763327, 0.005669702, 0.013144648, -0.026714867, -0.008442776, -0.011174667, 0.01165515, 0.021566832, -0.022637622, 0.0048494483, 0.008731066, 0.006167345, -0.01619915, -0.0066615567, 0.012568068, -0.016432526, 0.0058756233, 0.05101359, -0.035500847, 7.46465E-4, -0.0016087608, 0.0013685192, 0.00629433, 0.005539285, 0.0012698484, 0.0027782226, 0.007756372, -3.7816603E-4, -0.018066168, 0.007797556, -0.010872649, -0.024696836, 0.008744795, -0.033990756, 0.002263419, 0.024751749, -6.855466E-4, 0.0029635518, 0.0020489176, -0.038575936, -0.029240835, -0.0019013407, 0.017970072, -0.019507619, 0.0013831053, 0.016597264, 0.021621745, 1.88225E-4, -0.022006132, -0.008559465, 0.0010364709, -0.017132659, 0.0020454857, 0.0011274195, 0.0050279135, 0.015979499, 0.040415503, -0.011311947, 0.043545507, 0.014085022, 0.026426576, -0.003888482, 0.012856358, 0.0155402, 0.0071111517, 0.009431199, -0.0014749118, -0.033057246, -0.03050382, 0.020139111, 0.020770602, 0.008236855, 0.020839244, -7.782112E-4, -0.014050702, 0.005806983, 0.0073719854, -0.0058962153, 0.027085526, 0.018574107, -0.035583213, -0.019329153, -0.004622935, 0.014181118, 0.0041905, -0.0013796733, -0.007852469, 0.0027953826, 0.008030933, -0.00841532, -0.035198826, -0.0030682285, -0.0134809865, 0.016144237, 0.004633231, -0.009341966, 0.026152015, 0.009746945, -0.02561662, 1.0778697E-4, 0.023612319, -0.044835947, -0.012732805, -0.004959273, -5.8505266E-5, -0.0090056285, -0.015073445, 0.032178648, 0.02324166, -0.008573193, 0.0131926965, 8.5157066E-5, -0.020345032, 0.0375326, 0.007625955, -0.03871322, -0.03379856, 0.0063766986, 0.013048551, -0.020317575, 0.011902256, -0.02568526, -0.051260695, 0.0065071154, -6.9455564E-4, -0.018985951, -0.026714867, -9.3608425E-4, 0.02107262, 0.021457007, 0.016171692, 0.18274836, -0.003572736, -3.6958596E-4, 0.05705395, 0.016995378, 0.019576259, 0.0056147897, -7.2758883E-4, -0.009438063, 0.013954605, 0.014716514, 0.024861574, -0.025479339, 1.8103921E-4, 0.008717339, -0.009053676, -0.039234888, -0.00982245, 0.0035864639, -0.013213288, -0.021772753, -0.009808722, 0.02568526, -0.006555164, 0.017283667, -0.009692033, -0.0015049421, -0.012506291, 0.012156225, 0.01747586, 0.007069967, -0.0038164095, 0.009087997, 0.022102227, -0.019191872, -0.010563767, 0.00744749, -0.007866196, 0.010268613, 0.020701962, -5.379696E-4, -0.008387864, 0.015416647, 0.01158651, -0.01784652, 0.011703198, -0.029487941, -0.022074772, -0.010090147, 0.0079005165, -0.013185832, 0.00906054, -0.0048563126, 0.034073126, -0.0025928933, -0.00514117, -0.01024802, -0.023694687, -6.5508735E-4, 0.011106026, -0.0018790326, 0.039976202, -0.013721228, 0.020715691, -0.008175079, 0.0067782453, -0.02517732, -0.004351805, -5.855889E-4, 0.006606644, -0.03393584, -0.019027134, -0.015787305, 0.01626779, -0.026316753, -0.02100398, 0.020331305, 0.04804832, 0.0015761566, 0.025795083, 0.0021055462, 0.0011385736, 0.009197822, -0.012039537, -0.0115110045, -0.038026813, -0.003607056, 0.018409371, 0.0108246, 0.0012578364, 0.017324852, -0.040086027, -0.0038267055, 0.0075367223, 0.0049524093, -0.0047327597, -0.030888207, 1.4843499E-4, -0.033057246, -0.0034251588, -0.019040864, 0.071166426, -0.0062531456, 0.013432938, -0.032288473, 0.0035761679, -0.014579234, 0.05754816, 0.003727177, -0.033633824, -0.01341921, -0.03676383, 0.0036242162, -0.028581887, 0.0018018121, 0.0037683612, 0.003437171, -0.024614468, 0.018752573, 0.011751247, -0.0022719991, -0.005288747, 0.019452706, -0.029487941, 0.013645723, -0.014510593, -0.024037888, 0.0330847, 0.013762412, -0.024861574, -0.006692445, 0.010234293, 0.015238182, -0.026152015, -0.024985127, 0.026412848, 0.0025568572, -0.010275477, 0.003140301, -0.03294742, -0.019727267, 0.011984624, 0.019013407, 0.0097057605, 0.033551455, -0.05963483, -0.005975152, 0.010783416, 0.007852469, -0.023145562, -0.01197776, 0.018917311, 0.01869766, -0.012382739, 0.027758202, 0.008236855, -0.021415824, -0.023035739, -0.005539285, 0.02733263, -0.022719992, -0.010893241, 0.023763327, -0.0057280464, -0.022143412, 0.0049524093, -0.1745115, -0.001049341, -0.005951128, -0.028444607, 0.0155402, -0.0069464142, 0.017928887, -0.0097881295, -0.016514894, 0.016789457, 0.010131332, -0.0023097515, -0.014716514, 0.009760673, 7.769242E-4, -0.0014440237, -0.008367272, -0.0035315517, 0.028938817, -0.0097057605, 0.014826339, -0.023928065, 0.015361735, 0.026275568, -0.001956253, 0.021415824, -0.013178968, 0.01072164, 0.00906054, -0.010021507, -0.0029292316, -0.029433029, 0.010996201, -0.022033587, 0.027167894, -0.014332128, -0.033112157, -1.640936E-4, -0.006448771, 0.04079989, -0.0066100764, 0.018066168, 0.0135633545, 0.01567748, -0.0059991763, 0.004887201, 0.0114698205, -0.016432526, 0.020303847, -0.019795908, 0.03920743, -0.042694364, -0.02171784, -0.008930123, 0.016075596, 0.006737061, -0.0033702466, 0.010186244, 0.020894155, -0.016748272, -0.015196998, -0.007509266, -0.001643081, -0.019040864, -0.012135633, -0.01856038, -0.01761314, 0.020811787, -0.007927973, 0.017215027, 0.019795908, 0.0015323983, -0.012945591, 0.021457007, 0.007927973, 0.005697158, -0.020701962, -0.00956848, 0.0233103, -0.0036722645, -0.0137280915, 0.051672537, -0.029597767, -0.008133895, -0.005384844, -0.0071248794, -0.020852972, 0.013625131, 0.009355695, -0.013371161, 0.007001327, -0.009190957, -0.014036974, 0.024806662, -0.015032261, 0.016652176, 0.0043723974, -0.014661602, 0.012616117, -0.0056044934, -0.0013650871, -0.009225277, -0.025657803, 0.009609664, 0.012018944, 0.011792431, 0.023214202, 0.005837871, -0.010694183, -0.015114629, 0.008532009, 0.025355786, 0.030778382, 0.019617444, 5.770089E-4, 0.015787305, 0.0031814852, -0.021278542, 0.024230082, -0.013982061, 0.015979499, -0.012698485, -0.01024802, 0.01733858, -0.017201299, -0.0192056, -0.066224314, -0.017654326, 0.02740127, 0.023104379, -6.319212E-4, 0.006115865, 0.005415732, 0.041760854, 4.7490618E-4, 0.025589162, 0.009321374, -0.0075573144, 0.012169953, 0.011840479, 0.03530865, 0.01971354, 0.003716881, -0.03690111, -0.01689928, 0.02266508, 0.0025723013, -0.004959273, -0.0310804, 0.0021879147, -0.016432526, -0.018903581, -0.032288473, 0.030613644, 0.024504643, 0.012677893, 0.0036722645, 9.04338E-4, 9.154921E-4, -0.017420948, -0.014689058, 6.147611E-4, -0.016885553, -0.0028056786, 0.005364252, -0.0543907, 0.0017477577, 0.023255387, 0.021896306, -0.03267286, -0.008552602, -0.03300233, 0.010673591, 0.0065963482, 0.005721182, -0.039756555, -0.01403011, 0.014647874, 0.006284034, -0.010735367, 0.022404246, 0.005247563, -0.0011136915, -0.026028462, -0.020701962, 1.9787758E-5, 0.021635473, 0.02381824, -0.017928887, 0.022253238, -0.008868347, -0.02344758, -0.0031694733, 0.0117169265, -0.004334645, -0.028019035, 0.0062085297, 0.016240332, -0.004166476, 0.038466115, -0.026605042, 2.541842E-4, 0.007955429, -0.013405481, 0.019219328, 0.017640598, -0.016459983, -0.02935066, -0.015114629, -0.021196174, 0.021690385, 0.014071294, 0.013446666, 0.009486112, 0.014524321, -0.052551135, 0.0030785245, 0.031409875, 0.037230585, -0.018217178, -0.02799158, 0.015622568, 0.008518281, -0.0049730013, 0.00478424, 0.009396879, -0.016638447, -0.039097607, -0.08533382, 0.029076098, 0.028389694, -0.009424335, -0.0026357935, 0.02388688, 0.0114355, 0.0021261382, -0.009204686, -0.01818972, -0.018162265, 2.7563435E-4, -0.015512744, -0.033029787, 0.0019716972, -0.031409875, 4.021902E-4, -0.0014199995, 0.009012492, 0.020688234, -0.016597264, 0.023831967, -0.008085846, 0.007474946, 0.005721182, 0.019164417, 0.0095822085, 0.014647874, 0.0036585364, 0.022925913, 0.016871825, -0.01769551, 3.330135E-5, 0.035940144, -0.025849996, -0.00909486, 0.0046847113, -4.4702098E-4, -0.021182446, -0.053100258, -0.0120464, -0.0011025374, 0.004475358, -0.0074612177, -0.009561616, -0.011675742, 0.008257447, 0.01158651, 0.017736694, 0.0060884086, 0.025122408, 0.014565505, 0.00267183, -0.049668238, -0.01252002, -0.0020266096, -0.012101313, -0.016308973, 0.0042591407, 0.017722966, 0.033304352, 0.02490276, 0.020468585, -0.048432708, 0.019658627, 0.004924953, -0.037148215, -0.0067748134, 0.012883814, -0.014908708, 8.648698E-4, -0.021017708, 0.032974876, 0.0018344163, 0.02093534, -0.016926738, 0.0048803366, -0.012211137, -0.022967098, 0.028073948, 0.01100993, -0.022719992, -0.033716194, 0.008099575, 0.019233057, 0.0030459203, -0.037148215, 0.017832791, -0.027854297, 0.004005171, -0.041019537, 0.0018618725, -0.032755226, -0.024641925, 0.04382007, 0.03366128, -0.02144328, -0.02668741, 0.0035452796, 0.009239006, 5.9631397E-4, 0.01791516, -0.0029189356, 0.0057143182, -0.009801857, 3.0652256E-4, -0.0052956115, -0.041431382, 0.003915938, 0.010913833, 0.010673591, -0.025342057, 0.0054225964, 0.020029286, -0.041623574, 0.015979499, -1.1379301E-4, -0.0046847113, -0.030668557, 0.011991488, 0.006980735, 0.025602892, -0.010927561, -0.014112478, 0.02222578, 0.0011926279, 0.0013985493, -0.019809637, 0.020688234, 0.0024504643, 0.0019716972, 0.016569806, -0.026001006, -0.018478012, -0.0025122408, -0.00895758, 0.00537798, 0.009877362, 0.004605775, 0.08138013, 0.014469408, -0.016652176, 0.005721182, 0.008895803, 0.008154486, 0.01216309, 0.010941289, -0.028224956, -0.030970575, 0.008607513, 0.0034320229, 0.0011754679, -0.0048769047, -0.033221982, 3.5392737E-4, 0.018889854, -0.008744795, -0.011538461, -0.0051377383, 0.019246785, 0.0054672128, -0.0041081314, 0.01068732, -0.0063766986, 0.0041561797, 0.028664256, 0.0029446757, -0.006496819, -0.020729419, 0.014167391, -0.0057829586, -0.013288793, -0.022541527, 0.02806022, -0.0039777146, -0.033990756, -0.002725026, 3.3312073E-4, -0.0052956115, -0.0072415685, 0.027936667, -0.014167391, -0.0026100534, 0.005738342, -1.808247E-4, -0.030064521, -0.03569304, -0.019548804 ], - "id" : "4490f590-caa2-491b-8c2e-de83516f4b07", - "metadata" : { - "name" : "Xcel Aqua Freeze 32oz Water Bottle" - }, - "text" : "price: 16.99\nname: Xcel Aqua Freeze 32oz Water Bottle\nshortDescription: \ndescription: ## Overview\nThe Xcel Aqua Freeze is a high-performance insulated water bottle designed to provide cyclists with long-lasting cold refreshment on their rides. With its large 32-ounce capacity, this premium bottle ensures you can stay hydrated for longer. The innovative insulation technology keeps your water cold for extended periods, while the easy-squeeze design and leak-free closure make it convenient to use while on the go.\n\n## Product Details\n- Premium insulated bottle that keeps water cold for longer and offers leak-free closure\n- Advanced insulation technology ensures your water stays cold for extended periods\n- Easy-squeeze design for effortless hydration\n- Secure threaded cap with a simple open-and-close mechanism to prevent leaks\n- Tacky-textured grip surface provides a secure hold even when wet\n- Designed for easy insertion and removal from bottle cages, ensuring a secure fit\n- Compatible with a variety of bottle cages\n- Made from high-quality materials that are free from harmful chemicals such as BPAs and phthalates\n- Dishwasher safe for easy cleaning and maintenance\n\n## Features\n1. Enhanced Insulation: The Aqua Freeze utilizes advanced insulation technology to keep your water cold for an extended period, ensuring you have refreshing hydration throughout your ride.\n2. Durable Graphics: The bottle graphics are designed to withstand scratches and fading, ensuring they look great for miles to come.\n3. Leak-Proof Cap: The secure threaded cap features a reliable open-and-close mechanism that prevents leaks, giving you peace of mind during your rides.\n4. Large Capacity: With a generous 32-ounce capacity, the Aqua Freeze allows you to carry more water, reducing the need for frequent refills.\n5. Easy Grip: The bottle's tacky-textured surface provides a firm and confident grip, even when your hands are wet.\n6. Easy Access: The Aqua Freeze is designed for easy insertion and removal from bottle cages, ensuring a secure fit and convenient access to your hydration while cycling.\n\n## Specifications\n- Size: 32oz (946ml)\n- Insulated: Yes\n- Type: Screw Cap\n- Tethered cap: No\n- Bottle height: 10.5\" (26.7cm)\n- Weight: 160g\ntags: [bottle]" - }, - "1249e420-6c87-48f8-aea5-1e3d7cc77940" : { - "embedding" : [ 0.027973954, 0.015753895, -0.034771867, -0.008254609, -0.011424271, 0.0013715532, -0.006814773, -0.0046533337, -0.008463671, -0.038602438, 0.009637121, 0.006851865, -0.005597488, -0.01110056, -0.01513345, 0.011667053, 0.012280754, -0.012085179, 0.0043498552, -0.00983944, 0.023280155, 0.0019995847, -0.020987209, -0.0109252175, -0.023266668, -0.0069530243, 0.034016542, -0.0030651304, -0.01591575, -0.02298342, 0.010574532, -4.0442694E-4, -0.014148831, -0.02545171, 0.011242184, -0.0100822225, 0.012166107, -0.01396, 0.033530977, 0.019840736, 0.027259093, 0.017251054, -0.011754725, 0.0045049665, -0.005675044, 0.027677217, 0.032937508, 0.0048151887, -0.004926464, 0.021513237, -0.003513604, 0.014931131, 0.0034057007, -0.0068215174, -0.010999401, -0.024952658, 0.004208232, 0.01545716, 0.022781102, 0.0045049665, -0.00457915, 0.011275904, -0.01935517, 0.0059009665, -0.023307132, -0.03390864, 0.006885585, 0.0070406958, 0.0026621788, 0.025937276, 0.020569082, 0.016617121, 0.02584286, -0.002820662, 0.020083517, -0.01935517, -0.0035810436, -0.0012594349, 0.0025728215, 0.012058203, 0.032694727, -0.017561276, -0.020029565, 0.00737115, 0.02299691, 0.006632686, -0.009711305, 0.011518686, 0.007742068, 0.009475266, -0.0069597685, 0.006632686, 5.5595534E-4, 0.013575595, 0.021877412, -0.0046432177, 9.062198E-4, -0.013602571, -0.011296135, -0.041731633, 0.0067169857, 0.00527715, -0.0077623, -0.016482241, -0.02980831, -0.028594397, -0.013251885, 0.006663034, -0.011350088, -0.016671073, -0.017372444, 0.0071485993, -0.012968638, 0.04181256, -0.009306667, -0.019665392, 0.038629413, -0.0028510098, 0.023428522, -0.031157102, 0.022551809, 0.013265372, 0.013690242, -0.032047305, -0.0018309855, 0.025316833, -0.0017770339, -0.011633334, -0.007897179, -0.0023856764, 0.02429175, -0.003995797, 0.016077604, 0.0141892955, 0.0017264541, 0.013946513, -0.0027616522, 0.0029083334, -0.040571675, -0.00909086, 0.008834589, 0.013501411, -0.009623633, 0.021782996, -0.019705856, -0.012793295, -0.015416697, 0.0058739907, 0.010648715, -0.04240603, 0.016644098, 0.0026453189, 0.030536657, 0.027474899, 0.012516793, 0.01882914, 0.009947344, 0.0023823045, -0.012516793, -0.017453372, -0.008234377, 0.011255672, 0.0116603095, -0.023563402, 0.041246068, 0.049015112, 0.011039865, -0.027785122, 0.0060527055, -0.027785122, -0.0010267681, 0.016630609, -0.027758146, 7.0895895E-4, -0.0011304566, 0.012577488, 0.006551759, -0.011579382, -0.005813295, 0.010702667, -0.0021715555, -0.008618783, 0.008497392, 0.0099743195, -0.0044375267, -0.006302232, -0.0013589083, -0.023064349, -0.003672087, -0.01077685, 0.013049565, 0.0047949567, -0.0020383624, -0.019854223, -0.60684866, -0.045049664, 0.0035742996, -0.00844344, -0.009063885, 0.019409122, 0.011275904, 0.010689179, -0.012489817, 0.0074723093, -0.026935382, 0.028540445, -0.013933024, -0.0150525225, -0.027380483, -0.017197102, 0.017493837, 0.0029454252, -0.007890435, -4.6111838E-4, -0.02519544, -0.004767981, -0.012617952, 0.013251885, 0.003678831, 7.350918E-4, 0.015308793, -0.02085233, 0.012199827, 0.0029285653, -0.038224775, 0.050633665, 0.018168233, -0.017723132, 0.039708447, -0.043404136, -3.5932672E-4, 0.0075127734, 0.024359189, 0.028459517, -0.020285837, -0.008241121, -0.010041758, -0.014782764, -0.005782947, 0.0020501644, 0.033854686, -0.017952425, 0.011478223, -0.0333961, 0.00277514, 0.018977508, 0.015092986, -0.0055131884, 0.007067672, -0.013602571, 0.033746783, -0.011127536, 0.008875053, -0.0053547057, -0.00594143, 0.023563402, -0.013838609, -0.0027515364, -0.008355768, 0.008949237, -0.034771867, -0.014202783, 0.009461778, -0.0145130055, -0.0017331982, 0.013919537, 0.0025509035, 0.012537025, 0.010628483, 0.03962752, 0.027488388, -0.009380851, -0.0018714493, 0.028648349, 0.0139734885, 0.019233778, -0.0037732464, -0.01656317, 0.026449818, -0.007229527, -0.0037462707, -0.0123954015, 0.011943556, -2.9083336E-4, 0.025208928, -0.008376, 0.014715324, -0.0041509084, 0.0035810436, 0.015012058, 0.011154513, 0.015416697, -0.012496561, -0.026045179, -0.004194744, 0.015902262, 0.021796484, -0.0038103382, 0.033099364, 0.013440715, 0.005597488, 0.010716155, 0.00526029, -0.024332214, -0.009502242, -0.01487718, -0.04513059, 0.0058099227, -0.014890667, -0.026867943, 0.0023114928, 0.016603634, 0.00801857, -0.019179827, 0.023428522, 0.0037058068, 0.034663964, 6.2508095E-4, -0.0025087537, -0.0022305653, 0.025128001, 0.010783595, -0.011289392, -0.005968406, 0.021985315, 0.022228098, 0.0501481, -0.014539981, 0.028459517, -0.001406959, 0.004565662, 0.024952658, -0.0033702948, -0.03215521, -0.031211054, -0.01016315, -0.010136174, -0.03202033, -0.02376572, -0.013811633, -0.029214842, 0.026260987, 0.00779602, 0.013137237, -0.023347596, -0.022309026, -0.030024117, 0.00599201, 0.0068350052, -0.027434437, -0.027866049, -0.03436723, -0.0072497586, -0.023199229, 0.016657585, 0.01292143, -0.005688532, -0.0211086, -0.004211604, 0.015605527, 0.0020484782, 0.019503538, -0.003350063, -0.035877876, -0.0073509184, -0.0065585026, -0.02207973, 0.01448603, -0.0211086, 0.02104116, -0.037955016, 0.01305631, -6.8746257E-4, -0.018222185, -0.010325005, 0.005735739, -0.040113084, 0.024332214, 0.0013715532, 0.015187401, 0.0027077005, 0.014283711, -0.02298342, 0.011275904, -0.005398541, 6.301389E-4, -0.017520811, -0.0040699807, 0.0059380583, 0.008281585, 0.004764609, -0.014121856, 0.003661971, 0.01870775, 0.0060054976, -0.0039890534, 0.027191654, -0.0067540775, 0.016401315, -0.014823227, 0.032182183, -0.01746686, 0.012860735, 0.013420484, 0.013804889, -0.043323208, 0.006497807, -0.002296319, -0.01851892, -0.0065618744, 0.0020535362, 0.040247962, 0.008686222, -0.01734547, -0.021769509, 0.012118899, 0.03844058, -0.0039216136, -0.0037530146, 0.015214377, 0.0036754592, 0.03792804, 0.012462841, -0.003840686, 0.0074588214, 0.0118761165, 0.018869605, -0.021540213, 8.725E-4, -0.0016800894, 0.020987209, -0.023388058, 0.03714574, -0.004781469, 0.018478455, 0.0047275173, 0.0069193044, -0.01746686, 0.020744426, -0.0031578601, 0.02129743, 0.024561508, 0.040167034, 0.010048503, 8.252923E-4, 0.012044716, 7.2834786E-4, 0.015403208, 0.010304773, 0.007944386, 0.013393507, 0.004053121, -0.009171788, 0.0061909566, 0.026341913, 0.03059061, 0.027124213, 0.0076139327, 0.01649573, -0.01416232, -0.024750339, -0.015119961, 0.002994319, -0.047963057, 0.0025778792, -0.019719344, -0.0033905266, -0.012874222, -0.0076746284, -7.672574E-6, 0.017911961, 0.018694261, 0.026773527, 0.020285837, -0.0057121357, -0.021324407, 0.005799807, 0.01870775, -0.012631441, -0.008605295, 0.0024210822, 0.0045184544, -0.004066609, 0.013919537, 0.017331982, -0.00462973, -0.004366715, 0.00886831, -0.019004485, 0.0041070725, 0.02298342, -0.006710242, -0.006079681, -0.007910667, -0.019368658, 0.0028931596, -0.0060493336, -0.020838842, 0.030995248, -0.021917876, 0.005641324, -0.0027903141, 0.0239006, 0.0016143358, 0.007667884, -0.023037372, -0.01188286, -0.0045049665, -0.007323942, -0.007836483, 0.009643865, -0.020218397, 0.009043653, -0.025033586, -0.02662516, -0.011390551, -0.007937643, -0.0148367155, 0.019651905, 0.027812097, -0.011842396, -0.012840503, -0.019395633, 9.163358E-4, -0.009279692, -0.015497624, -0.004329623, 0.012570744, -0.0065348987, 0.013744194, -0.004909604, 0.0020923142, -0.017291518, -0.010412676, -0.0048219324, -0.036066707, 0.013069797, 0.011700774, -0.024264773, -0.024197334, -0.0014980024, 0.006609082, 0.005331102, -0.018734725, 2.375139E-4, 0.004882628, 0.02025886, -0.022875518, 0.010264309, -0.007890435, 0.01545716, -0.0060459618, -0.029295769, 0.026247498, 0.012631441, -0.023293644, 0.03895312, 0.006669778, -0.015902262, 0.003355121, 0.017008271, 0.014958107, 0.0028931596, 0.0074992855, -0.006521411, -0.0065753628, 0.014310687, -0.03288356, 0.0019119132, 5.3572346E-4, -0.014364638, 0.016765488, -0.0014878865, 0.0126112085, -0.011741237, -0.013042822, -0.017372444, -0.029970165, -0.0043161353, -0.032910533, 0.009913623, 0.00782974, 8.105399E-4, -0.0025407874, -0.020771401, -0.0050175074, 0.008416464, -0.024790803, -0.01681944, -0.0119637875, -0.0033095991, 0.02240344, -0.004734261, -0.010655459, 0.03687598, -0.041596755, 0.016644098, -0.0076543964, -0.03148081, 0.010992657, -0.017129663, -0.0016311957, -0.023860136, 0.006022358, 0.034663964, -0.006093169, 0.013278861, -6.99686E-5, 0.005263662, -0.016940832, 0.01324514, -0.039519615, 0.0056480677, -0.011700774, 0.02298342, 8.7418605E-4, 0.0090234205, -0.01467486, 0.011653566, -0.009819208, 0.01298887, 0.021014184, 0.023010397, 0.006538271, 0.02740746, -0.013919537, -0.016657585, -0.021675093, -0.026328426, -0.0072699906, -0.008922261, 7.359348E-4, -0.013622803, 0.01467486, 0.02007003, 0.015551575, 0.0032893673, -0.025397759, 0.009401082, -0.05411355, 0.038656387, 0.004906232, -0.0072767343, 0.036606222, -0.0012442609, -0.0016168648, -0.01642829, 0.014850204, 0.025141489, 0.030806417, 0.0028931596, 0.012004252, -0.034798842, -0.021486262, -0.008456928, -5.605918E-4, 0.008969469, -0.012948406, -0.026341913, 0.0072699906, 0.013548619, 0.010109198, -0.013096773, -0.016468754, -0.014688348, 0.014823227, 0.0010301401, 0.03474489, -0.029727383, 0.015565064, -0.023199229, -0.024831267, -0.010156406, -0.014634397, -0.01292143, -0.0033922128, -0.0060830535, 0.017844522, 0.008571575, 0.021594165, 6.4320536E-4, 0.024736851, -0.0034208745, 0.011936812, -0.03765828, -0.013575595, -0.05395169, 0.0020349903, 0.038467556, 0.003661971, -0.00597515, -0.028351614, -0.0076071885, 0.019071924, -0.023023885, -0.010608251, -0.008564832, -0.050256003, 4.569034E-4, -0.022848543, 0.007890435, -0.016387826, -0.033504, -0.011161257, 0.036282513, -0.0033011693, 0.011862628, 0.00352372, 0.0012821957, -0.0147423, 0.025532639, -0.011323111, 0.042837646, -0.012199827, -0.026557721, -0.020811865, -0.013029334, 0.009360619, -0.007937643, 0.01617202, 0.01062174, -0.009812464, 0.0059245704, -0.009225739, 0.015254841, -0.02934972, 0.014459054, -6.558503E-4, -0.00951573, -0.023698281, -0.025883324, -0.022376465, -0.006312348, -0.00951573, -0.009886648, 0.016347364, -0.023806185, -0.018923556, 0.008146706, -0.010392445, 0.03558114, -0.0058706184, -0.0054626088, 0.015767382, -0.028162783, 0.005253546, -0.0063157203, 0.019584464, 0.007822995, 0.021742532, 0.019274242, -0.01644178, -0.0060897972, 0.0024497441, -0.006885585, -0.0131507255, -0.027420947, 0.013042822, 0.023266668, 0.0027211886, -0.023995016, 0.0050512273, -0.016792465, -0.00423858, -0.0038878939, -0.007870203, -0.001228244, -0.025869837, -0.00354058, 0.033611905, -0.009825952, 0.0044510146, 0.001937203, -0.008989701, 0.0137779135, -0.012213315, -0.013406996, -0.0074723093, -0.0052569183, 0.07531656, -0.016536193, -0.00420486, 0.019692367, 0.020892793, -0.027474899, -0.020380251, -0.0048219324, 0.026746552, -0.015349257, 0.0065348987, -0.0065551307, 0.005836899, -0.012327962, -0.010466629, 0.005813295, -0.004208232, 0.0012939976, -0.0020872562, 0.009569681, -0.031615693, -0.029889237, 0.0047612367, -0.019651905, -0.030078068, -2.2339373E-4, -0.0086997105, -0.002083884, -0.048286766, -0.0041037006, -0.016468754, 0.033423074, 0.041920464, 0.008335536, -0.025707982, 0.021526726, 0.022025779, -0.02168858, 0.029187866, -0.0069597685, -0.0030937924, -0.040625624, 0.020056542, 0.022282049, -0.010480116, 0.0048556523, -0.004380203, -0.0062280484, -0.028864156, 0.022282049, 0.0014895726, -0.0034866282, -0.008416464, 0.009367363, 0.0034293046, 0.007782532, -0.0025154976, -0.02533032, 0.022430416, 0.00708116, 6.0147705E-4, 0.011565894, -0.011653566, 0.012233546, -0.0203263, -0.011667053, 0.013433971, -0.01045314, -0.006079681, 0.017911961, 0.022551809, -0.019881198, 0.011680542, -0.04000518, -0.020663498, -0.016671073, 0.04040982, -0.024966145, -0.019530512, 0.029673431, -0.0085041355, 0.0039991695, 0.022902494, -0.015996678, -0.032317065, 0.026773527, -0.020434204, -0.014000464, -0.013427228, -0.0045993817, 0.04086841, 0.028486494, -0.014135344, -0.0044375267, 0.0114445025, -0.042810667, -0.009529218, -0.0046128696, 0.01961144, 0.017574765, 0.0076881163, -0.011410783, 0.024723364, 0.012584233, 0.021607652, -0.02545171, 0.003194952, 0.009165044, 0.029376697, -0.0028493237, -0.0034293046, -0.035446264, -0.009657353, 0.016185507, 0.015888773, 0.014499517, 0.005020879, -0.0023350967, -0.0041171885, 0.025910301, -0.004444271, 0.035554167, -0.005101807, -0.005927942, -0.039330784, -0.0068114013, 0.010830802, 0.006352812, -0.0018512175, 0.0114445025, -0.031076174, 0.007971362, -7.87779E-4, 0.008126474, -0.0058908504, -0.0039452175, -0.015888773, 0.022187633, -0.019786783, -0.011316367, 0.044510145, -0.005641324, -0.018100793, -0.001418761, 0.017493837, -0.013393507, -0.0310492, -3.5537516E-5, -0.03806292, -0.012617952, -0.007930899, 0.006126889, -5.433104E-4, 0.012833759, -0.017804058, -0.0054288893, -0.013508155, 0.033018436, 0.010257565, -0.01714315, -0.023873623, 0.018667286, -0.014647884, 0.021418823, -0.004707285, -0.006032474, -0.02897206, 0.010014783, 0.010055247, -0.018033354, -0.010810571, 0.029538551, -0.0044881064, -0.00318315, 0.013852097, 0.2008082, 0.0046499614, 0.0076274206, 0.041407924, 0.0013656522, 0.017439885, 0.021229992, 0.011599614, 0.013278861, -0.01045314, 0.020016078, 0.03312634, -0.02046118, 0.0010090653, 0.025343807, -0.008591807, -0.052899636, -0.0019152851, -0.014647884, 5.3024397E-4, 0.009994552, 0.012570744, -0.024129895, -0.043242283, 0.031453837, 0.01292143, -0.014620909, -0.026274474, 0.009232484, 0.01513345, -0.010028271, -0.014405102, -0.012078435, 0.023010397, -0.049015112, -0.008773894, 5.1633455E-4, 3.5553324E-4, 0.002284517, 0.0429995, 0.0032826234, -0.021796484, 0.03895312, -0.022187633, -0.014256734, -0.007836483, -0.005078203, 0.010992657, -0.024777316, -0.0018191836, -0.018761702, -0.0018124396, 0.019368658, 0.03520348, -0.00740487, -0.016981294, 0.04084143, -0.0061066574, 0.0072565028, -0.0029049614, -0.020825353, 0.04032889, -0.008193913, 0.026733063, -0.0170892, 0.001583988, -0.034448154, -0.017385934, 0.015119961, -0.002970715, -0.015443672, -0.0023384688, 0.002090628, 0.010035015, -0.024574997, -0.032964483, 0.0055705123, -0.008402976, 0.011174744, 0.017035248, -0.0064640874, -0.015173914, 0.0051726187, 0.014175807, -0.0032758794, -0.034529082, 8.451027E-4, 0.0016387827, 0.008106242, -0.020043055, 0.009320155, 0.008652503, 1.7808273E-4, 0.001750058, -0.01396, -0.0077083483, -0.025815886, 0.035958804, -0.020312812, -0.00708116, -0.022309026, 0.04521152, -0.010567788, -0.0062010726, -0.0246829, -0.010351981, -0.0014836716, 0.022039266, 0.0163069, -0.042810667, -0.0078095077, -0.04370087, 0.009677585, -0.0042689275, 0.006663034, -0.011060097, 0.0026958988, 0.00563458, -0.018168233, -0.008780638, 0.028081857, -0.017318493, 0.026679112, -0.014324174, 0.009245971, -0.025128001, -0.020474667, -0.008011826, 0.008490647, -0.025640542, 0.005135527, -0.017035248, 0.011255672, -0.0020569083, -0.025397759, -0.007836483, -0.007344174, 0.0074453335, 0.023927575, 0.0028746137, 0.017035248, 0.019044947, -0.0029791452, -0.00805229, 0.013117005, -0.03188545, -0.0042554396, -0.0012215, -0.017588252, 0.0076341643, -0.02773117, -0.0053917975, 0.005105179, -0.0028762997, 0.014040928, 0.01824916, -7.792437E-5, -0.04909604, 0.003678831, 3.8208757E-4, -0.021809971, -0.013353044, 0.0033601788, -0.007202551, -0.013737449, -0.031588715, -0.17037944, 0.008436696, 0.0437818, 0.01506601, -8.370942E-4, -0.0031865218, 0.034502108, 0.024440117, -0.022497855, -0.0067675654, 0.026935382, -5.433104E-4, -0.01584831, -0.019436097, -0.0016522706, -0.0066158264, -0.014148831, 0.0041239327, 0.03676808, 0.026207035, 0.005597488, -0.023995016, 0.0037462707, -0.0051861065, -0.0047747246, 0.023064349, 0.0057188794, 0.04933882, 0.020933257, 0.0019017971, -0.011525431, -0.031130128, 0.029457625, -0.031723596, 0.012024484, -0.010331749, -0.011889604, 0.010763363, -0.012375169, 0.03833268, 0.004707285, -0.0016581715, 0.02168858, 0.012233546, 0.00354058, 0.015025547, -0.009205508, -0.0020501644, 0.01416232, -0.015888773, 0.048745353, -0.025154976, 0.022322513, -0.00772858, 0.024386166, 0.014067904, 0.008605295, 0.0029184495, 0.016805952, -0.019314706, -0.023995016, -0.016482241, 0.023617353, -0.0115726385, 0.0016699735, -0.025613567, -0.02357689, 0.013609314, -0.029916214, -0.0010023213, -0.027515363, -0.0026689228, 0.0115726385, -0.0025660773, 0.018910069, 0.015187401, -0.01947656, -0.0073981257, 0.03962752, 0.008166937, -0.01441859, 0.035769973, 0.014553469, 0.0069395364, -0.012220059, 0.0011338285, -0.006861981, 0.0085446, 0.005472725, -0.022389952, 0.029835286, -0.03590485, -0.009212252, -0.0058841063, 0.01487718, 0.009421314, -0.0010090653, -0.019503538, 0.020299325, -0.011694029, 0.002621715, -0.016805952, -0.028135808, -0.008861566, 0.053601008, 0.014364638, 0.017655691, 0.021310918, 0.01062174, 0.030941296, -9.5089857E-4, 0.019665392, 0.015511111, 0.010048503, 2.893581E-4, 0.0072565028, -0.024116406, -0.029026011, 0.023617353, -0.004380203, 0.04917697, 0.002282831, -0.023590378, 0.028135808, 9.2307973E-4, -0.02039374, -0.08357117, -0.008841334, 0.033342145, 0.017062223, -0.024777316, -3.3024338E-4, 0.0039991695, 0.016846417, -0.015241353, 0.027420947, -0.016401315, -0.009151556, -0.006818145, 0.02260576, 0.0024615459, 0.0036552271, 0.024925683, -0.023698281, -0.028027905, 0.021971827, -0.011194976, -0.014769276, 0.0055165607, 0.013744194, -0.017493837, -0.0048286766, -0.005216454, 0.022309026, 0.027650243, 0.0072767343, -0.00912458, -0.023158764, -0.004741005, 0.0014457367, -0.028540445, -5.3614494E-4, -0.020312812, -0.0018545894, 0.01467486, -0.03409747, 0.008106242, -0.005789691, 6.99686E-4, -0.011289392, -0.024318725, -0.023482474, 3.7177406E-6, 0.062799774, -0.0013176015, -0.027205141, -9.652295E-4, -0.020434204, -0.0060999133, -1.4636504E-4, 0.018141257, -5.053756E-4, 0.005644696, 0.004029517, -0.012631441, 0.017305005, -0.0069934884, 0.018222185, -0.0041846284, 0.020744426, 0.0016050629, -0.0012678648, 0.011282648, 0.019894687, 0.024440117, -0.005455865, -0.013204677, 0.0052468022, -0.01688688, 0.04291857, -0.032424968, 0.014378126, -0.022848543, -0.01052058, 0.020366764, -0.011114049, -0.027677217, -3.774511E-4, 0.0019085411, -0.032748677, 0.0266926, 0.0437818, 0.013083286, -0.014647884, 0.009428059, -0.026652137, 0.008308561, 0.015861798, 0.049527653, -0.0027565942, -0.009428059, -0.010008039, 0.020366764, 0.026301451, -0.025505662, -0.008780638, -0.042379055, -0.001597476, -0.08470416, 0.039843325, 0.014310687, -0.009461778, -0.007323942, 0.0057121357, 0.03442118, -0.0093268985, 0.014067904, 0.021985315, -0.010156406, 0.0050343676, -0.0024952658, 0.010952193, -0.017844522, 0.006683266, 0.008376, 0.005995382, 0.0051692463, 0.037172716, 0.008241121, 0.020434204, -0.0054997005, 0.029187866, -0.012820271, 0.013299093, 0.0060257297, -0.0048893723, 0.00919202, 0.013744194, 0.033261217, -0.003304541, 0.0050343676, 0.021526726, -0.016360851, 0.011168, -4.1896862E-4, 0.012354937, -0.03857546, -0.021782996, -0.024534533, -0.010136174, 0.004248696, -0.010156406, -0.008821102, 0.0035372078, 0.016118068, -0.0065854783, 0.015753895, 0.030833393, -0.009562938, 0.01448603, -7.1588734E-6, -0.021014184, 0.0078095077, -0.001406959, -0.0028661836, -0.022336, 0.019193314, -0.022349488, 0.058591537, 0.002446372, -0.004730889, -0.023549914, -0.015632503, -0.010291286, -0.008234377, 0.009589913, 0.014566957, -0.0109049855, -0.047045875, -0.011370319, 0.003510232, 0.01811428, 0.013730706, 0.011579382, 0.006170725, -0.0044712466, -0.027299557, 0.0072834785, 0.032748677, -0.013164213, -0.010722899, 0.0032455316, -0.0032708214, -0.01363629, -0.03469094, 0.0042520678, -4.6954834E-4, 0.028081857, -0.039789375, 0.026544234, 0.0064269956, -0.011498455, 0.013494668, -0.004552174, -0.033423074, 0.0050309952, 0.04189349, 0.01773662, -0.0071688313, -0.013285604, 0.001401901, 0.011586126, -0.0020198165, 0.026962359, -0.0053007537, -0.0125033045, 0.012800039, -0.0018040098, -0.009751769, -0.030293876, -0.0071688313, 0.016225971, -0.014553469, 0.005412029, -0.0052333144, -0.024844754, -0.0054760966, 0.020299325, 0.030051094, -0.0023789324, -0.012712368, 0.009063885, 0.02272715, 8.214988E-4, 0.012752831, -0.011694029, -0.0021766135, -0.019179827, -0.015619015, -0.018883092, 0.01402744, -0.0057323673, -0.026544234, -1.7070652E-4, 0.0043565994, 0.028027905, 0.0058200387, 0.104666285, 0.016185507, -0.022416929, -0.005081575, -3.4541727E-4, 0.013825121, 0.009879904, -0.027785122, -0.018141257, -0.033207268, 0.0097585125, 3.2687138E-4, -0.048097935, -2.5985326E-4, -0.019948639, 0.026476793, 0.013811633, 0.015254841, 0.0032455316, -0.021310918, 0.017898474, -0.0050613433, 0.023752233, -0.01331258, 0.009394338, 0.0148367155, 0.0302669, 0.01707571, -0.012139131, -0.028270688, 0.028162783, 0.012564001, -0.019517025, -0.0085041355, -0.0033635509, -0.04027494, -0.02090628, 0.018141257, 0.035257433, -0.016023653, 0.007721836, 0.011673798, -0.020434204, -0.0044779903, -0.0048421645, -5.8419566E-4, -0.0016016909, -0.022659712, -0.06911212 ], - "id" : "1249e420-6c87-48f8-aea5-1e3d7cc77940", - "metadata" : { - "name" : "FastRider X1" - }, - "text" : "| Wheel size | 27.5\" | 27.5\" | 27.5\" |\n| A — Seat tube | 44.6 | 49.1 | 53.4 |\n| B — Seat tube angle | 73.0° | 73.0° | 73.0° |\n| C — Head tube length | 16.5 | 19.5 | 23.0 |\n| D — Head angle | 69.5° | 70.0° | 70.5° |\n| E — Effective top tube | 59.5 | 60.7 | 62.2 |\n| F — Bottom bracket height | 29.5 | 29.5 | 29.5 |\n| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 |\n| H — Chainstay length | 48.7 | 48.7 | 48.7 |\n| I — Offset | 4.4 | 4.4 | 4.4 |\n| J — Trail | 8.6 | 8.1 | 7.9 |\n| K — Wheelbase | 114.6 | 115.0 | 116.4 |\n| L — Standover | 79.5 | 83.7 | 87.9 |\n| M — Frame reach | 40.5 | 40.8 | 41.2 |\n| N — Frame stack | 62.3 | 65.2 | 68.8 |\ntags: [bicycle, mountain bike, professional]" - }, - "3188d0ab-2c6a-46c0-b172-19c03d3a14ec" : { - "embedding" : [ 0.015250965, 0.011937679, -0.032077678, -0.01802259, -0.0034821162, -5.0956727E-4, 0.014434954, -0.03663608, -0.005121173, -0.031571187, 0.0063064992, 0.00446344, -0.04305162, 0.012992865, -0.008378183, 0.017741205, 0.010024274, -5.658439E-4, 0.009123848, 0.010164965, 0.0032112848, -6.278361E-4, -0.025029028, -0.015518279, 0.0052759335, -0.015630832, 0.018303972, -0.013021004, 0.02066759, -0.004688546, 0.018233627, 0.0015819008, -0.012204993, -0.025873179, -0.0056030415, 0.0072807884, 0.02301714, 0.010713662, 0.022313682, -0.007315961, 0.026618844, -0.005902011, 0.021976022, -0.010150896, -0.023298522, 0.0042699887, 0.025577726, 5.504557E-4, 0.004329783, 0.02816645, -0.024888337, 0.029207569, -0.015616763, -0.012802932, 0.0022422718, -0.025802832, 0.024536608, 0.013147626, 0.019992271, -0.015391657, -0.0043121963, 0.0034223222, -0.0446555, 0.01983751, -0.013858119, -0.013182799, -0.024958683, 0.005564351, -0.01316873, 0.002054097, 0.025971662, 0.022412166, 0.05382859, -0.013042107, 0.02635153, -0.013590804, -0.008357079, -0.011733676, 0.0054975227, 1.0282575E-4, 0.021736845, -0.0033678042, -4.8714454E-4, 0.01931695, 0.010544833, -0.0032218366, 6.7224185E-4, 0.035116613, -0.018866738, -0.0046322695, -0.019443573, 0.010326761, 0.015124342, 0.017192509, 0.013801842, 0.016700089, -0.042460714, 0.04884811, -0.0114382235, -0.010966907, 0.0040378477, -0.0055924896, -0.024789853, -0.02366432, -0.008758049, -0.037930444, 0.004526751, 0.016024768, 0.0071823043, 0.011719607, -0.028898047, 0.032752994, 0.006654711, -0.015855938, -5.1220524E-4, -0.018557217, 0.018303972, -0.020189239, -0.004466957, -0.02851818, 0.027153471, 0.031908847, -3.523884E-4, -0.019739026, 0.029545227, 0.04749747, -0.004586545, 0.0036052212, 0.01900743, -0.0034152877, -0.009398196, 0.012500445, 0.014357573, 0.010284553, 0.007118993, 0.0029281431, -0.018402455, 0.02066759, -0.029854748, 0.007878727, 0.016868917, 0.02032993, -0.006665263, 0.0063698106, -0.007885762, 0.018585356, -0.016629742, 0.029939163, 0.006035668, 0.005427177, 0.011346774, -0.025071235, 0.0133516295, 0.012373823, 0.011388982, 0.010143861, -0.011044287, 0.055038538, -0.019415434, -0.0033484593, 0.0048468243, -0.016868917, 0.01399881, 0.007203408, 0.03286555, 0.016249875, 0.0071400967, -0.004238333, -0.014885167, -0.02199009, -0.009243435, 0.0013154661, -0.025085306, 0.017136233, -0.020555036, 0.015250965, 0.0058562863, -0.008582185, -0.007927969, -0.02917943, 0.011958783, -0.01949985, 0.0116844345, 0.027448924, -0.020076687, -0.023903497, 0.015236896, -0.008469632, 0.009264539, -0.005258347, 0.020470623, 0.027899137, -0.014533438, -0.0054131076, -0.59833306, -0.033428315, 0.0013682254, -0.028039828, -0.004319231, 0.0043719904, 0.009320816, -0.0010718938, -0.008617358, 0.0073089264, -0.010882492, 0.008335975, -0.015307242, -0.0052020703, -0.011487466, -0.02550738, 0.0042664716, -0.022721687, 0.029545227, -0.0027610718, -0.028377488, -0.006802437, -0.008188249, 0.022060437, -0.012008024, 0.0052759335, 0.028982462, -0.01934509, -0.023523629, 0.007892797, -0.036298424, 0.027420785, 0.013464183, -0.006872783, 0.042629544, -0.02500089, 0.009187159, 0.010446348, 0.016418705, 0.034441292, -0.02834935, -0.011663331, -0.010354899, -0.017065886, -0.01767086, 0.0037670166, 0.039562467, -0.006559744, 0.009567026, -0.023467353, 0.029826611, 0.009306747, 0.0073440997, -0.0052020703, 8.9954666E-4, -0.026421875, 0.022960862, 2.6951227E-4, -0.004927722, -0.0031444563, -7.153287E-4, 0.0071400967, -0.004906618, -0.026590705, -0.010228276, 0.031092836, -0.0403222, -0.035426136, 0.033034377, 0.00733003, 0.009862479, 0.01041821, -0.02432557, 0.02466323, 0.010523729, 0.027772514, 0.054419495, 0.013372733, 0.0048995838, 0.017924104, 0.0063346373, -0.008167145, 6.458622E-4, -0.037452094, 0.020301793, 0.003626325, 0.012078371, -0.02550738, 0.034919646, 0.023368869, 0.024705438, 0.0048292377, -0.027350439, -0.009700683, -0.009363024, 0.04116635, -0.0032499752, 0.004016744, -0.011156841, -0.03179629, -0.009018329, -0.01565897, 0.023579905, 0.0034363915, 0.0019608887, -0.0018624045, -0.013618943, -0.03179629, 0.0073792725, -0.015433864, -0.011234221, 8.7976194E-4, -0.028138312, -0.0074425833, -0.014519369, -0.026928365, 0.020273654, 0.017445754, 0.027040917, -0.01966868, 0.0056417314, -0.0024691368, 0.015616763, 0.0026291735, -0.0047061327, 0.013949568, 0.020611314, -0.0018078865, -0.008399286, -0.0046041314, 0.031908847, 0.0065773306, 0.0258169, 4.6911841E-4, 0.010115723, 0.023425145, 0.010122757, -0.023242246, 0.021553947, -0.035257306, -0.0069079557, 0.0038303277, -0.004213712, -0.035904486, -0.018458733, -0.021286633, -0.010840285, 0.00470965, -0.0069466457, 0.00708382, 0.005237243, -0.01700961, -0.029714057, -0.018472802, 4.3240673E-4, -0.010980977, -0.033484593, -0.012359753, -0.008863568, -0.015799662, -0.0032482164, 0.0053955214, -0.018289903, -0.00934192, 0.0021437877, 0.012212028, 0.01484296, 0.03801486, -0.010896562, -0.053265825, -0.014589715, 0.013907361, -0.017051818, 0.042094916, -0.004998068, 0.011086495, -0.027814722, -0.023045277, -0.0030389377, -0.009609234, 0.009651441, 0.038268104, -0.041785393, -0.0010701352, 0.002537724, 0.0090042595, 0.036101453, -0.0018237144, -0.013485286, 0.014533438, -0.011114634, 0.021708708, 0.007315961, -0.004329783, -0.020259585, 2.8402108E-4, 0.015293173, -0.00975696, 0.012254235, -0.006689884, 0.020217378, -0.013429009, 0.008898742, -0.019162191, -0.0029949716, -0.040265925, 0.020892696, -0.0094193, 0.006011047, 0.030445654, 0.019753095, -0.029291984, -0.038493212, 0.0025465172, -0.009953928, 0.006594917, 0.0072456156, 0.04181353, -0.011543742, -0.033090655, -0.016278014, 0.010931734, 0.012472307, -0.025901316, -0.009946893, 0.011965817, -0.0052759335, 0.019823441, -0.004431784, -0.01934509, 0.005237243, 0.024114534, 0.015279103, 0.011396016, 0.028250866, 0.0054693846, 0.0077310014, -0.029432675, 0.06336748, 0.007920935, 0.022707619, 0.038549487, 0.030811451, -0.018880807, 3.0688348E-4, 0.011670365, 0.009707717, 0.03683305, 0.03050193, 0.016320221, -0.006862231, 0.015391657, 0.006756712, 0.007984246, 0.006355741, 0.013049142, 0.012331615, 0.002622139, 0.01316873, 0.008399286, -0.005159863, 0.018754184, 0.013049142, 0.021230357, -0.031599324, 0.016320221, 0.0060778754, -0.017867828, 0.011346774, -0.027744375, 0.0066511934, 0.00915902, 0.016798573, -0.010558901, 0.0346664, 0.011058357, 4.4471724E-4, 0.029291984, 0.027561476, 0.04350183, -0.022890517, -0.024058256, 0.003784603, 0.017698998, -0.015560486, 0.0023425145, -0.0095248185, -0.0036298423, 0.011818091, 0.010347865, -0.004660408, 0.012866243, 0.005219657, 0.028222727, 0.01109353, -0.036889326, 0.016489051, -3.8800095E-5, -0.0042629545, -0.009982066, -0.026126422, 0.015785594, -0.017628653, -0.027786583, 0.01249341, -0.01850094, -0.017305061, -0.03216209, 0.008455562, -0.0034838747, -0.011649261, -0.029657781, -0.00983434, -0.025225997, 3.5766434E-4, -0.0013383285, 0.010164965, -0.015110274, -0.011923609, -0.018092934, -0.010650351, -0.004554889, 0.00260807, -0.0123949265, 0.047553748, 0.017079955, 0.00725265, 0.034385018, -0.039703157, -0.018149212, -0.015926285, 0.00206289, 0.017220646, 0.0067320913, -0.00917309, 0.0042031603, -0.01584187, 0.0031198354, 0.021202218, -0.022580996, 0.013766669, -0.012050232, 0.018289903, -0.0018905428, -0.005205588, -0.0022510649, -0.007618448, 0.0038021894, 0.009313782, 0.003003765, 0.03418805, 0.017347269, 0.017417615, 0.0026643465, 0.017037747, -0.0078083817, 0.0058844243, -0.012204993, -0.021202218, 0.015884077, -0.0033765975, -0.0090605365, 0.009595164, 0.013984741, 0.0403222, 0.01782562, 0.00264676, -0.010938769, 0.014702268, 0.0012328099, -0.01075587, -0.0048327553, -0.012268304, -0.027294163, 0.01201506, 0.020484691, -0.024635091, -0.0061974633, 0.008181214, 0.011888437, -0.0078576235, -0.02867294, -0.014617853, -0.03531358, 0.004368473, -0.027589615, 0.02217299, 0.004452888, -0.020920835, -0.0061236, 0.0043860595, 0.006109531, -0.0231719, -0.013450113, -0.022637272, -0.008258594, -0.007878727, 0.01425909, -0.0061904285, -0.00691499, 0.017122163, -0.023579905, 0.025408896, 0.028208658, -0.0026748984, 0.0070732683, -0.013253145, -0.007337065, -0.0015942112, -0.0065069846, 0.0244944, -0.028279003, -0.011740711, 0.0032570097, -0.0049523427, -0.0081319725, 0.015391657, -0.009567026, -0.01885267, 0.002884177, 0.006862231, 0.03582007, -0.010256414, 1.6679644E-5, 0.037789755, -0.015898146, 0.0074074105, -0.004027296, 0.0072596846, 0.008751015, 0.010903596, 0.001246879, -0.013675219, 0.0073863068, 0.0024304467, -0.009166055, -0.008779153, 0.01534945, -0.007337065, -0.0069290595, -0.014730406, -0.024578815, 0.026070146, -0.01100208, -0.016362429, -0.03582007, 0.025999801, -0.010376003, -0.0033660457, 0.011993956, 0.018711977, -0.015377588, -0.009545922, 0.024564747, 0.035932623, 0.031430494, -0.013893291, -0.019527989, -0.030107994, -0.040406615, -0.034441292, 0.025591794, -0.0046920637, -0.01851501, -0.024761714, 0.008772119, -0.0152650345, 0.010544833, 0.0029211086, -0.017136233, -0.0064085005, -0.042291883, -0.017459823, 0.040040817, -0.0017867829, -0.017065886, -0.035735656, -0.013942534, -0.009721787, -0.011993956, -3.69755E-4, -0.029095015, 0.030276824, 0.022116713, 0.04403646, -0.003665015, 0.01565897, 0.0231719, 0.0013207421, 0.0036333594, -0.024592884, -0.003235906, -0.034863368, 0.0248602, 0.0027610718, 0.014301297, -0.014688199, -0.020526899, -0.01133974, 0.020104824, -0.008624393, -0.0069818185, -0.015743386, -0.036101453, -0.008673634, -0.0173332, -0.0010903596, -0.002384722, -0.033034377, -0.0068692653, 0.03764906, 0.013175765, 0.0076958286, 0.011881403, 0.021441394, -0.025887247, 0.04319231, 0.01568711, 0.02549331, 0.01819142, -0.0058105616, -0.022665411, -0.04065986, 0.019570196, 0.0081319725, 0.0053920043, 0.003462771, -0.021582086, -0.01931695, 0.008286733, -0.013386802, -0.024592884, 0.008279698, 0.013098384, -0.0034997026, 0.010150896, -0.037452094, -0.024803922, 5.768354E-4, 0.00391826, -0.002117408, 0.025634002, -0.0012486376, 0.0025904833, 0.008870603, -0.022566926, -0.004758892, -0.003200733, 0.004097642, 0.029995441, -0.00849777, -0.024241155, -0.02784286, -0.027266024, 0.005789458, 0.006426087, 0.051774494, -0.009679579, 7.9358835E-4, 0.035904486, -0.0029158327, -5.900252E-4, -0.04566848, 0.0070486474, 0.04367066, 0.03686119, -0.026562566, -0.028377488, -0.024789853, -0.006158773, 0.0013444837, 0.016320221, 0.045105714, 0.004101159, 0.0030002475, 0.01416764, -0.022960862, -0.0062818783, 0.03483523, 0.008772119, 0.014645992, -0.009897651, -0.003492668, -9.153745E-4, 0.0060567716, 0.053265825, -0.0065421574, 0.005687456, 0.023917565, 0.0037634992, -0.025619933, -0.012514514, 0.023706527, 0.02200416, -0.014477162, 0.008307837, -0.009320816, 6.4366387E-4, -2.9545228E-4, -0.027294163, -0.017881898, -0.010319726, 8.9734833E-4, 0.010305657, -0.0027980034, 0.013675219, -0.029291984, -0.02183533, -0.0018395422, -0.023579905, -0.037733477, -0.004896066, 0.02736451, -0.033569008, -0.015560486, -0.021933815, 0.014533438, 0.020625383, 0.004336817, -0.005247795, 0.0029422122, 0.033287622, -0.022820171, -0.004431784, 0.016629742, 0.026956502, -0.007970177, 0.011958783, -0.009644407, -0.037958585, 0.023579905, -0.02283424, -0.05000178, -0.01226127, -0.0054799365, -0.0035700484, 0.012317546, -0.027083125, -0.010172, 0.0041715046, -0.010685524, -0.024775784, -0.0031831465, -9.793451E-5, -0.004122263, 0.012894382, 0.032302782, -0.013970672, 0.03435688, -0.0056276624, -0.008110869, 0.012162785, -0.006144704, -0.028532248, -0.008821361, -0.010988011, -0.0034592538, -0.011663331, -0.016320221, -0.011726642, -0.03801486, -0.0034504605, -0.00934192, 0.02403012, 0.029882887, -0.024564747, -0.012549687, 0.027870998, -0.038887147, -0.018529078, -0.019457642, -0.0045232335, 0.010840285, -0.028630733, 0.0071612005, 0.03266858, -0.02248251, -0.05819003, -0.00766769, -0.019105913, -0.036185868, -0.017642722, -0.035791934, -0.0010006687, -0.016573466, 0.022735756, -0.008146041, 0.01382998, 0.010622213, 0.01581373, -0.00399564, 0.0023688942, -0.006545675, 0.006556227, -0.0010437556, 0.0041574356, -0.052449815, -0.011550777, 0.033765975, 0.0111920135, 0.015476071, 0.012380857, -0.027716238, -4.941791E-4, 0.028616663, -0.0012328099, -0.0030213513, 0.010284553, -0.0047061327, -0.027702168, -0.012767759, 0.014301297, 0.02000634, 0.01616546, 0.0028261417, -0.0054904884, 0.004477509, 0.011206083, -0.019598335, -0.0061693247, -0.015870009, 0.013372733, 0.009672545, 0.009630337, 0.010087585, 0.039281085, 0.016151391, -0.03083959, 0.0010094619, 0.014519369, -0.009468542, -0.017206578, 0.011100564, -0.004185574, 0.0011862058, 0.0074988604, 0.006004012, 0.007864658, -0.008385217, -0.011346774, -0.010826215, -0.04420529, 0.051915187, 0.01885267, -0.039393637, -0.041644704, 0.008258594, -0.017459823, 0.0028314176, 0.010973942, 0.015771523, -0.012936589, 0.009595164, 0.008891706, -0.021764984, -0.038268104, 0.0201611, 0.009651441, -0.0028314176, -0.010776973, 0.19809371, -0.006936094, -0.01534945, 0.05118359, 0.0135415625, 0.015532348, -0.004600614, 7.1752694E-4, 0.004196126, 0.004417715, 0.005367383, 0.015293173, -0.007998316, -0.0056030415, 0.026140492, 0.016432775, -0.029038738, -0.026787674, -0.013907361, -2.8028397E-4, 0.0140058445, 0.0061798766, -0.009440403, -0.022060437, 0.0066617453, 5.5809483E-5, 0.017642722, -0.0039041908, 0.020414345, 0.005198553, -0.010889526, 0.002171926, -0.011747745, -0.0012873277, -0.032556027, 0.01000317, 0.02168057, -0.0017551272, -0.00343815, 0.04496502, 0.008765085, -0.016095115, 0.019091845, -0.029742196, -0.005096552, -0.0131054185, -0.017234717, -0.0024744128, -0.010657386, -0.0025289308, -0.015940353, 0.0032869065, 0.041250765, 0.00199782, 0.008603289, -0.020709798, -0.0069536804, -0.0060532545, 0.017952243, -0.014406816, -0.022707619, 0.03812741, -0.010706628, 0.032921825, -0.0073722377, 0.02152581, -0.018951153, -0.017895967, 0.029882887, -0.0021490636, -0.025704348, 0.003487392, -0.006753195, -7.962263E-4, -0.026070146, -0.026618844, 0.009074606, -0.0061236, 0.025704348, 0.03117725, 0.02968592, -0.0055960068, 6.379483E-4, -0.0013251386, 0.026281184, -0.014983651, 0.030614484, -0.0016258669, 0.0016654363, -0.004357921, 0.0035594965, 0.0028595559, -0.011522639, -0.016882988, -0.020625383, -0.01765679, -0.024072327, 0.011628157, -0.007435549, 0.01819142, -0.016700089, 0.047778852, 0.018247696, -0.032921825, -0.044993162, 0.01833211, 0.0065667788, 0.041081935, 0.0133234905, -0.006999405, -0.0070416126, -0.032978103, 0.004547855, -0.011072426, 0.016109183, -0.0060180817, -2.827021E-4, -0.007871693, -0.008547013, -0.024803922, 0.01833211, -0.0186557, 0.021596154, -0.019696819, -0.0077098976, 0.0017744723, -0.00842039, 0.019935993, -0.01899336, -0.0393655, 0.03700188, 0.0190215, 0.03131794, 0.005377935, -0.011332706, 1.4481338E-5, -0.0012503962, -0.02101932, -0.022566926, 0.0024409986, 0.004234816, 0.026745467, -0.009792132, -0.0054588327, 0.031261664, -0.021807192, 0.009517784, -0.0071260277, -0.008610323, -0.022806102, -0.008026454, -0.0015352967, -0.00111586, -0.03686119, 0.009208263, 0.0051809666, -0.04398018, -0.025957594, 0.019331021, -0.013822946, -0.029095015, -0.014688199, 0.00391826, 0.014294263, -0.025085306, 0.008216388, -0.1800852, 0.019570196, 0.029995441, -0.0015994872, 0.0027909689, 0.01831804, 0.0060813925, 6.533364E-4, -0.018050727, -0.0046146833, 0.005743733, -0.0018500941, -0.03514475, -0.00608491, 0.015616763, -0.0072807884, -0.005951253, 0.031064697, 0.01816328, 0.0037072226, 0.017065886, -0.0076325173, 0.014702268, -0.02149767, -0.0036861189, -0.0027768996, -6.3640946E-5, 0.020934904, 0.011107598, 0.001642574, 0.0035753243, -0.02782879, 0.024705438, -0.0086666, 0.030220548, -0.02452254, -0.003413529, 0.02232775, -0.007129545, 0.025887247, -3.330433E-4, 0.020639451, 0.018557217, 7.724846E-4, 0.012620033, 0.045893587, 0.012324581, 0.003408253, 0.0069185076, -0.0033009758, 0.04184167, -0.017473891, 9.2328835E-4, -0.006440156, -3.1457754E-4, 0.02200416, -0.020723866, -0.0080756955, 0.0016003666, 0.0013673462, -0.0013066728, -0.029939163, 0.0015819008, -0.009018329, 0.0027294164, -0.020217378, 0.02350956, 0.02868701, 0.006021599, 0.0072948574, -0.021961953, -0.010973942, -0.0027575546, -0.0053814524, 0.023805013, -0.0019415435, -0.023087485, 0.0024234122, 0.013703358, 0.019654611, 0.016320221, 0.04364252, -0.014547507, 0.020878628, -0.011149806, -0.020231446, 0.0121487165, 0.01717844, -0.02433964, -0.007787278, 0.010031308, -0.021131873, 0.016137322, 0.008800257, -0.009285643, 0.00883543, 0.011367878, 0.0043895766, 0.019063706, -0.008687704, 0.009391162, 7.232425E-4, -0.016446844, -0.0040554344, 0.001088601, 0.0054095904, 0.020597244, 0.0025588279, 0.0026819329, 0.016306153, -0.01951392, 0.005807044, 0.027111264, 0.023298522, -0.024142671, 0.007885762, -0.0097710285, -0.01799445, 0.012092439, 0.0035155304, 0.020034479, -0.021933815, 0.0049593775, -0.0025658624, -0.0030618, -0.030051718, -0.076311104, -0.022060437, 0.0173332, 0.036298424, -0.012071336, -3.096863E-5, -0.005346279, 0.03368156, -0.020822352, 0.04949529, 0.0029668333, -0.014188744, -0.018036658, 0.025605865, 0.008933914, -0.0017006092, 0.006774299, -0.020344, -0.022932725, 0.011374912, -0.007301892, -0.026632912, -0.009939859, -0.014385712, -0.03812741, -0.0012697413, -0.012197958, 0.0048995838, 0.026379667, 0.0020998216, 0.011107598, -0.016897056, 0.021891607, 0.01785376, 1.7641403E-4, -0.010608144, -0.020752005, -0.018008519, 0.017192509, -0.06370514, -0.0054131076, 0.014913306, 0.015560486, -0.010150896, -0.03252789, -0.018908946, 0.0065386402, 0.006183394, 0.016587535, -0.028926184, -0.005698008, -0.0036403942, -0.011642227, 0.0018342662, 0.015743386, -4.0448824E-4, -0.0054975227, 0.01399881, -0.007998316, 0.0047272365, -0.018121073, 0.0042418507, -0.034103636, 0.040434755, 0.00892688, -0.004976964, -0.010713662, 0.006183394, 0.024564747, -0.007935004, -0.012423065, 0.02283424, -0.003932329, 0.009644407, -0.023734666, -0.01466006, 0.021638362, -0.017769344, -0.0023108588, -0.0048538586, -0.03050193, -0.018149212, 0.011283463, -0.011600019, 0.006440156, 0.022369958, -0.0029949716, -0.009623303, 0.008462598, -0.02232775, 0.027575545, 0.030755175, 0.030530069, 0.012268304, -0.020611314, -0.0046146833, -0.0020417862, 0.011642227, 0.003487392, 1.05408755E-4, -0.03365342, -0.015574556, -0.08987377, 0.031289805, 0.020808281, -0.0040589515, -0.00625374, 0.024016049, -0.017248785, 0.0028665906, 0.009208263, 0.008068661, 0.011972852, 0.0097428905, -0.0052513126, -0.017079955, -0.012985831, 0.0062818783, 0.009714752, -0.0028630733, 0.025268205, -0.004456405, 0.0010710146, -0.022566926, -0.0022475477, 0.035229165, -0.027491132, 0.017544238, 0.0018782323, 0.0053357272, 0.0041433666, 0.004744823, 0.030586345, -0.0044106804, -0.0069677494, 0.030079857, 0.0053955214, -0.0018782323, -0.034863368, 0.02301714, 0.0025992766, -0.032077678, -0.010411176, -0.008610323, 0.005694491, -0.018880807, -0.015447933, -0.010882492, -0.020822352, -0.0016962127, 0.02152581, 0.032049537, -0.0018043693, -0.0021824779, -0.008736946, -0.033540867, -0.002068166, -0.014814821, -0.0066863666, -0.010995045, -0.018740116, -0.010143861, 0.027308231, 0.0173332, 0.003661498, -9.122969E-6, 0.005212622, -0.011698503, -0.020625383, -0.006302982, -0.007020509, -0.009651441, -0.02484613, -0.0147444755, 0.017755276, 0.016306153, 0.0016540051, -0.021764984, 0.00233548, -0.0070310608, -0.049523428, 0.017797483, 0.009609234, -0.005645249, -0.007906865, 0.0024427571, 0.015630832, 0.0052266913, -0.04232002, 0.0037916375, -0.016460912, 0.010094619, -0.01617953, 0.012936589, 0.0062502227, -0.004797582, 0.008019419, 0.024944615, -0.0017859035, -0.007024026, -0.008997225, 0.009433369, 0.019485781, -6.726815E-5, -0.0062818783, -0.0026010352, -0.019767165, -0.0011123427, -0.033118792, -0.012401961, 0.001473744, 0.015785594, 0.0056206277, -0.015616763, 0.003162043, 0.016700089, -0.0076325173, -0.002993213, -7.4830325E-4, -0.0024691368, -0.021539878, 0.014828891, 0.014983651, 0.009700683, 0.0013673462, 0.0052829683, 0.052984443, -0.010319726, -0.012127613, 0.01158595, 0.029939163, -0.009151986, 0.006922025, 0.016784504, -0.0065421574, -0.015180619, -0.024621023, -0.011023183, -0.006865748, 0.011255325, -0.01785376, 0.11396016, 0.0031479737, -0.024972752, 0.011473397, -0.017600514, 0.014631922, 0.021483602, -0.015039928, -0.022580996, -0.0062361537, 1.6201513E-4, 0.006549192, -0.010931734, 0.010094619, -0.038493212, -0.011698503, 0.0038021894, 0.026759535, -0.009862479, -0.027772514, 0.038155552, -0.014575645, -0.003448702, 0.005050827, -0.023537697, -0.0010129792, 0.029995441, 0.019612404, -0.0025148618, -0.01785376, 0.019584265, 0.015743386, -0.02550738, -0.021047458, 0.020287722, -0.009581096, -0.007266719, -0.015644902, 0.023861289, -0.008976121, 0.0173332, 0.018557217, -0.018008519, -0.008701773, 0.010094619, -0.009848409, -0.029770333, -0.02498682, -0.03753651 ], - "id" : "3188d0ab-2c6a-46c0-b172-19c03d3a14ec", - "metadata" : { - "name" : "Commute Pro Plus Light System" - }, - "text" : "price: 172.99\nname: Commute Pro Plus Light System\nshortDescription: \ndescription: ## Overview\nThe Commute Pro Plus Light System is a high-quality bike accessory designed to enhance visibility and safety during your rides. This set combines the power of the Commute Pro Plus front light with the functionality of the Rear Flare RT light. With features like daytime running lights, wireless connectivity, and chargeback capability, this light system provides an optimal lighting solution for both day and night rides.\n\n## Product Details\n- Commute Pro Plus front light with focused beam and Kindbeam technology to direct light on the ground without blinding oncoming riders\n- Rear Flare RT light for enhanced visibility in any riding conditions\n- Daytime visibility with specific flash patterns designed to be seen up to 2km away\n- Commute Pro Plus modes: high beam 1000LM - 1.5hrs, low beam 500LM - 3hrs, day flash 300LM - 12hrs\n- Rear Flare RT flash modes: 90LM - 6hrs, 45LM - 12hrs, 5LM - 15hrs, steady modes: 25LM - 4.5hrs, 5LM - 13.5hrs\n- Blendr-compatible for easy and integrated mounting on compatible Blendr stems, helmets, and helmet mounts\n- USB-rechargeable with included USB-C and micro USB cable\n\n## Features\n1. High Beam: Illuminate your path with a powerful 1000 lumen high beam setting, perfect for off-road cycling.\n2. Wireless Connectivity: Wirelessly connect the front and rear lights for easy power-up with a single button.\n3. Fuel Gauge: Dual fuel gauge displays the remaining battery life of both lights, keeping you informed.\n4. Chargeback with USB-C: The USB-C charging port allows you to charge your phone or cycling computer on the go.\n5. Weather-Ready: Designed to withstand various weather conditions, ensuring durability and reliability.\n6. Kindbeam: Innovative Kindbeam technology keeps the light focused on the ground, preventing it from blinding other riders.\n7. Flash, Focus, Range: The light system features specific flash, focus, and range settings to maximize visibility during the day.\n8. Seamless Mounting: The Blendr mount offers a clean and seamless mounting option for Blendr compatible stems, providing proper light orientation when using a cycling computer above.\n9. Compatibility: Check our compatibility chart to ensure proper compatibility with your bike and accessories.\n\n## Specifications\n- Battery: Li-Ion 21700 3.6Vdc 4800mAh 17.28Wh\n- Rechargeable: Yes\n- Charge Time: 4 hours for front light, 2 hours for rear light\n- Dimensions: 117.4 L x 31.2 W x 40.3 H (mm)\n- Waterproof Rating: IPX4\n- Wireless Compatibility: ANT+ / Bluetooth\n- Weight: 257g\ntags: [bikelight]" - }, - "cea33d20-db4e-49b6-abde-2bdabeedb7f3" : { - "embedding" : [ 0.022674989, -5.183386E-4, -0.03955947, -0.010390448, -0.008049891, 0.0101875095, -0.009592224, -0.03893712, -7.6440145E-4, -0.01089103, 0.004965227, -7.123985E-4, -0.024379672, -0.007941658, -0.004004652, 0.018507985, 0.0170333, -0.014976857, 0.0015304941, -0.039207708, 0.0069404948, -0.0023896003, -0.0057059526, 0.013380408, -0.015044503, -0.012331893, 0.025191426, -0.016722128, 0.013475113, -0.016546248, 0.017777408, 0.034526594, -0.007948423, 0.014286866, -0.0063012387, 0.005367722, 0.016194487, -8.6333393E-4, 0.026990812, 7.229682E-4, 0.037963018, 0.0012531449, -0.019576795, 0.008043127, -0.02038855, 0.012311599, -0.0034009102, 0.0017207488, 0.024366142, 0.008408416, -0.026043767, 0.023500271, -0.020320904, -7.9949293E-4, -0.0020598252, -0.03284897, 0.017371532, 0.013732168, 0.041291207, 0.010830148, -7.1662635E-4, 0.019928556, -0.039180648, -0.0043969997, -0.046297025, -0.019603854, -0.011980133, 0.02282381, 0.006203152, 0.0056484533, 0.02125442, 0.011926016, 0.014814506, 0.026422584, -0.0032825293, -0.016546248, -0.0019549737, -0.0015820743, 0.0065718233, 0.0039302413, 0.026801404, -0.0036562742, -0.008246065, -0.0016835436, 0.038855948, 0.02336498, -0.0074478406, -0.016302722, -0.020591488, 0.0013892828, 0.021376183, 0.021944411, 0.004698025, 0.0063655027, 0.008922527, 0.0048603755, -0.027139634, 0.011114262, -0.020713251, -0.031847805, 0.02264793, 0.018927392, 0.007603427, -0.02002326, -0.05882509, -0.02107854, -0.010383683, 0.01229807, 0.013637464, 0.0045627328, -0.027870214, 0.035338346, 0.007407253, 0.008733118, 0.0153150875, -0.012852768, 0.04069592, 0.02018561, 0.024663785, -0.0139621645, 0.021186773, 0.03495953, 0.0124468915, -0.010113099, -0.010836913, 0.0015254206, -0.012088367, -7.3987976E-5, 0.023432625, -0.0068728486, 0.007075787, 0.008821058, 0.011303672, 0.02930431, -0.022932043, 0.014557451, -0.012866298, 0.020848542, -0.03127958, -0.02034796, 0.0028073152, 0.012575419, -0.022715576, 0.0021968086, -0.019089743, 0.0031421636, -0.022877928, 0.00137068, 0.014963328, 4.380088E-4, 0.023405567, -0.016519189, 0.016235076, 0.024704373, 0.003784802, -0.014016282, 0.0024893782, 0.0131842345, -0.01844034, -0.011127791, -0.018724455, 0.015626261, -7.229682E-4, -0.0113374945, 0.02299969, 0.018332105, 7.4579875E-4, -2.2386647E-4, -0.02090266, -0.02477202, -0.013711874, 0.024379672, -0.018670337, 0.019685028, 0.00335694, 0.016302722, 0.011723077, -0.0044511165, -0.02654435, 0.0069168187, 0.03723244, 1.1890924E-4, 0.0061591817, 0.014516863, -0.0049753743, 0.02090266, 0.0050768433, -0.025949063, 0.0061591817, -0.012183071, 0.011391611, 0.003409366, 0.0064974125, -0.0026449643, -0.60351187, -0.027071988, -0.012061308, -0.017317414, 0.019915026, 0.025245542, 0.0098628085, 0.021213831, -0.0063215327, 0.002245852, -0.03401248, -0.010918088, -0.009186347, -0.02421732, -0.034391303, -0.035365406, 0.01581567, -0.0108775, 0.0020547519, -0.0048603755, -0.026571406, 0.0032182655, -0.012961002, -0.011790724, 0.0023557772, -0.012616007, -0.0037780374, -0.006132123, -0.0062234458, 0.013664522, -0.035230115, 0.052276943, -0.008949585, -0.0030204004, 0.044835865, -0.033633664, 0.015247442, 0.024920842, 0.034147777, 0.039397117, 0.00425156, 7.445304E-4, -0.011080439, -0.012595713, -3.7289938E-4, 0.007671073, 0.024717903, 0.0018061522, -0.0040790625, -0.032767795, 0.0153150875, -0.009761339, 6.7688426E-4, 0.005560513, 0.01756094, -0.008036362, 0.038504187, -0.0034076746, -0.012304834, 0.0073666656, 0.0030626794, 0.0074951933, -0.011797488, -0.027477866, -0.015490968, 0.025570244, -0.038017135, -0.02316204, 0.03490541, -0.02299969, 0.014138045, 0.03455365, -0.0012937326, 0.01509862, 0.0033484844, 0.017628586, 0.036041867, 0.018142696, -0.023662623, 0.026381997, 0.011012793, -0.0018146079, 0.005655218, -0.02933137, 0.03880183, 4.5618872E-4, 0.021213831, -0.0055165435, 0.013610405, 0.008800764, 0.019739145, 0.0020953394, -0.018115638, 0.0051005194, -0.00842871, 0.040181812, 0.004884052, 0.02705846, 0.017939758, -0.027518453, -0.014516863, -0.0061388877, 0.004434205, 0.011317201, 0.017682703, -0.0024758491, -0.005770216, -0.03620422, 0.015869787, -0.020050319, -3.134976E-4, -0.028681967, -0.02562436, 0.015599201, -0.025949063, -0.019969143, 0.0130624715, 0.013360114, 0.0055503664, -0.034256008, 0.01386746, -0.019698558, 0.030007832, -0.012494244, -0.004393617, 0.0043158242, -2.4352613E-4, 0.007765778, -0.026354939, -0.01616743, 0.0064297663, -0.0010020086, 0.038423013, -0.018575633, 0.037340675, 0.0014814506, 0.015193325, -3.2047363E-4, -0.0062809447, -0.042887658, -0.027924329, 0.009801927, -0.0046709664, -0.04616173, -0.026124943, -0.02124089, -0.005249341, 0.021538533, -0.020442666, -0.010742208, 5.5702374E-5, -0.008658707, -0.012561889, -0.013278939, -0.004227884, -0.018846218, -3.3104332E-4, -0.028330207, -0.0337419, -0.017669173, 0.026246706, -0.024866724, 0.004610085, -0.020956777, 0.013069236, -0.0051884595, -0.0053508105, 0.030927818, -0.010918088, -0.03793596, -0.0025045986, 0.0060137426, -0.01950915, 0.028032564, -0.009003703, 0.015761552, -0.028330207, -0.0119124865, 0.021457357, -0.0042447955, -0.0033975278, 0.03525717, -0.047460537, 0.015910374, 0.008435475, 0.011202202, 0.010546034, 0.0379089, -0.014652155, 0.016032137, -0.00474876, 0.009883102, -0.033850133, 0.013157176, -0.013894519, -0.016546248, 0.013738933, 0.0035412759, 0.01930621, 0.016938595, 0.016424485, -0.0057160994, 0.013786285, 0.0034059836, 0.010410742, -0.015382734, 0.009091643, 0.0019735764, 0.021403242, 0.008570767, 0.015869787, -0.029656071, -0.010424271, -4.8092184E-6, -0.007096081, -0.005103902, 0.022377346, 0.042644132, -0.020848542, -0.012622771, -0.028249031, 0.018372694, 0.0243932, -0.00842871, -0.005621395, 0.014097457, 0.015017445, 0.045025274, -0.00482317, -0.029060785, 0.0039539174, 0.035554815, 0.022417933, -0.0052087535, 0.02843844, 0.01792623, 0.014800977, -0.014530392, 0.019536208, -0.007833424, 0.03463483, 0.03035959, 0.024514964, -0.021741472, 0.007941658, 0.0058919797, 0.007386959, 0.031306636, 0.011378082, 0.008577531, -0.018535044, 0.0062538865, 0.005154636, 0.0087534115, 0.019698558, -0.0015144282, 0.024109088, 0.011141321, -9.2506106E-4, -0.0049347864, 0.014138045, 0.017371532, 0.03845007, 0.02914196, 0.011844841, -0.008564002, -0.04126415, -0.013461583, 0.0039572995, -0.0484617, 0.015003916, -0.031333696, 0.017182121, -0.006125359, 0.024352614, 0.014313925, -0.008239301, -0.0022847487, 0.009673399, 0.04023593, -0.008814293, -0.02247205, 0.010133393, 0.0018839452, -0.0020276932, -0.00601036, 0.0036461274, 0.013705109, 0.012379245, 0.03736773, 0.018047992, 0.0170333, -0.018047992, -0.010512211, -0.0057397755, 0.007427547, 0.036826562, -0.02701787, -3.838919E-4, -0.019955613, -0.02332439, 0.0014121133, 0.0011406832, -0.034364242, 0.04305001, -0.022147348, 0.0067544677, -0.01687095, 0.015842728, -0.0053508105, 0.02018561, -0.02632788, -0.0062978566, -0.03217251, -0.0026584936, 0.010613681, -0.0076372502, -0.034824237, 0.019752676, -0.01457098, -0.010640739, -0.00640609, -0.008239301, -0.031063111, 0.04020887, 0.014990387, -0.0051884595, 0.021552064, -0.03579834, -0.0133465845, -0.030116064, -0.004870523, 0.0179127, 0.027694333, -0.008793999, 0.011844841, 9.6311205E-4, 0.0023608506, -0.016180959, -0.0036393628, 0.019725617, -0.026693169, -0.004542439, -0.0016015226, -0.028817259, -0.008787234, 0.017750349, 0.005435368, 0.006382414, -0.024717903, 0.016884478, 0.0026162148, 0.009490754, -0.02684199, -0.01810211, 0.0036900972, 0.027153164, -0.0028123886, -0.024203792, 0.008144597, 0.006105065, 0.012494244, 0.012041015, 0.011317201, -0.004772436, 0.012216894, -0.002254308, -0.0036596565, -0.018291518, -0.017993875, -0.0053102225, 0.0029662836, 0.013826872, -0.026409056, 0.016113313, 0.00834077, -0.01720918, -0.005580807, -0.006030654, 0.012839239, -0.024190262, -0.021633238, -0.017371532, -0.027613157, -0.0070351996, -0.006084771, 0.005019344, -0.0057397755, 0.008807529, -0.015490968, 0.013590111, 0.009605753, 0.003367087, -0.008496356, -0.035717167, -9.918617E-4, -0.003916712, 0.021024423, 0.008841352, 0.0042414134, 0.006622558, -0.033498373, 0.016559778, 0.014232749, -0.01913033, 0.017466236, -0.007292255, -0.020320904, -0.025922004, 0.006554912, 0.029358428, -0.0071569625, 0.020956777, 0.0063350615, 0.01563979, -0.0075763687, 0.028059622, -0.006084771, 0.008300182, 0.0014932887, 0.023121454, 0.028600791, 0.015139208, 0.0027531981, -0.0016488748, -0.01599155, -0.018210342, 0.016194487, 0.011919252, 0.014760389, -0.0035074528, -0.0016311178, 0.0028529763, -0.011885428, -0.021349125, 0.016546248, -0.013826872, -0.003059297, -0.040181812, 0.01096544, 0.0075763687, 0.013089529, -0.009889867, -0.016194487, -0.0011347642, -0.046351142, 0.012798651, -0.0052222824, -0.023906149, 0.029764306, 0.016045665, 0.003964064, 0.017872112, 0.021511475, 0.054712202, 0.031468987, -0.0017774025, -0.0022526167, -1.1890924E-4, -0.027247868, -0.011181909, -0.0050700787, 0.016640952, -0.017412119, -0.025489068, 0.008766941, 0.025245542, 0.0057397755, 0.005327134, -0.0170333, -0.01915739, 0.013678051, -0.02141677, 0.028059622, -0.015883315, -0.017966816, -0.014882153, -0.02386556, -0.00513096, -0.017439177, 0.0016996094, -0.012507773, 0.010640739, 0.028573733, 0.01150661, -0.0038456835, -0.0024132764, 0.007819895, 0.008090479, 0.004390235, -0.014882153, -0.0062538865, -0.042887658, 0.018223872, 0.05268282, 1.1573833E-4, -0.0091254655, -0.033823073, 0.0032977497, 0.0170333, -0.012954237, -0.03127958, -0.008543708, -0.02654435, 0.018697396, -0.033281904, 0.008482827, -0.004657437, -0.05579454, -0.0067578503, 0.030332532, -0.00983575, 0.032145448, 0.004491704, 0.011526903, -0.016600365, 0.04773112, 0.007955187, 0.017398588, 0.021944411, -0.011269848, -0.023243217, -0.008658707, 0.029764306, -0.006314768, 0.014665685, 0.031496048, -0.017155062, 0.0013985841, -0.0042752367, 0.01001163, -0.02600318, 0.011756901, -0.0048569934, -0.009193111, -0.007738719, -0.02000973, -0.05108637, 6.8227484E-5, 0.010248391, -0.03141487, 0.008408416, -0.011838076, -0.005773599, 0.02455555, 0.004796112, 0.025232013, -0.0017587999, 0.013475113, 0.017533882, -0.022255583, -0.0058277156, -0.045593504, -0.004508616, 0.0026365086, 0.0267067, 0.027112575, -0.0013935106, 0.006510942, 0.0042211195, -0.0076372502, -0.034797177, -0.020510312, -0.0074748993, 0.002299969, 0.035230115, -0.004721701, -0.013732168, -0.0076981317, 0.004129797, -0.008462533, 0.003245324, 0.01492274, -0.008300182, 0.01704683, 0.014828036, -0.029953714, 0.020862073, 0.011398376, -0.01669507, 0.006558294, -0.0024014383, -0.010397213, 0.008557238, 0.0151527375, 0.049138162, -0.009544872, 0.014868624, 0.038395952, -4.2194285E-4, 0.004434205, 0.0027853302, 0.031036053, 0.029574895, -0.017587999, 0.005655218, -0.024663785, 0.006842408, -0.0049449336, -0.0018450486, -0.014828036, -0.017790936, -0.014503334, -0.017615058, -0.015720965, -0.0017266679, -0.026733758, -0.01421922, -0.011466022, -0.02651729, -0.014692743, 0.0077319546, 0.00788754, -0.02511025, -0.004796112, 0.0023608506, 0.009281051, 0.016099783, 0.033254847, 0.007535781, -0.0035581873, 0.013705109, -0.023310862, -0.0107219145, 0.030116064, -9.462005E-4, -0.010613681, 0.029466663, 0.00513096, -0.014516863, 0.030089006, 0.0061693285, -0.022796752, -0.050464027, 0.0020835013, -0.025705537, 0.0038524482, -0.0022154113, -6.6208665E-4, -0.01115485, 0.00579051, -0.0072990195, -0.00869253, 0.0010654269, -0.0032419416, -0.0067375563, 0.003896418, -0.036285393, 0.012440126, -0.019116802, 0.010302508, -0.010708385, -0.0049483157, -0.012047779, 0.015490968, 0.00939605, -0.0017182122, -0.014354512, -0.029656071, -0.0041467086, -0.035067763, 0.011107498, -0.0049314043, -0.009761339, 0.013170705, -0.010072512, -0.009145759, 0.013657757, -0.007880776, -0.013096294, 0.008347535, -0.0125686545, -0.014787448, -0.012927179, -8.0625754E-4, 0.034716003, 0.019969143, -0.017533882, 0.009565165, 0.0018027698, -0.057147466, 0.00601036, -0.014016282, 0.03176663, 0.03109017, 0.031036053, 0.0063655027, -0.008990173, 0.013488642, 0.025664948, -0.0017190577, -0.0031928981, -0.0032825293, 0.033227786, 0.009423109, 0.01896798, -0.060989767, -0.009761339, 0.04405117, 0.024961429, 0.016925067, -0.0015423321, -0.015382734, 0.005888597, -7.3226955E-4, -0.01377952, 0.016275663, 0.024366142, -2.9764304E-4, -0.044673517, -0.0035074528, -0.026923167, 0.010079276, 0.019170918, 0.0076981317, -0.02686905, -0.0015761552, 0.0010874118, 0.005489485, 0.0059562433, 0.00413318, -0.004444352, 0.020875601, 0.0052662524, -0.020929718, 0.05335928, 0.009896631, -0.012433362, 0.0035277465, 0.029466663, -0.0141245155, -0.018535044, -3.1518878E-4, -0.013684816, 0.0042853835, -0.0070351996, 0.021660296, 0.014110986, 0.0013698345, 0.0094501665, 0.015260971, -0.034120716, 0.043969996, -0.007163727, -0.0066327048, -0.02688258, 0.0053305165, -0.0014603112, 0.013414231, -0.011378082, 0.0071569625, -0.024284966, -0.0027244487, -0.01845387, -0.027315514, -0.028411383, 0.034688946, -0.0025232013, -0.015653318, -0.014841565, 0.19720206, 0.01861622, -0.018250931, 0.029277252, 0.016302722, -0.0020378402, 0.01096544, 0.0012083293, 0.0058615385, -0.005800657, 0.009585459, 0.029764306, -0.014882153, -0.008787234, 0.02212029, -0.0034144393, -0.045322917, -0.009064584, 0.005820951, -0.027410218, 0.0015643172, -0.0033434108, -0.0037374496, -0.04372647, 8.3838945E-4, -0.004907728, -0.004028328, -0.03317367, 0.018562103, 0.0054421327, 0.011459257, -0.009565165, 0.0057127173, 0.020402078, -0.04426764, -0.011723077, 0.016762715, 0.0016632497, 0.0017520352, 0.025664948, -0.001073037, -0.0062674154, 0.010573093, -0.013434525, -0.022336759, -0.008009304, -0.017520351, 0.0070825517, -0.012744534, -0.011844841, -0.028465498, 0.010951911, -0.012595713, 0.025326718, 0.011702783, -0.0151121495, 0.011039851, 0.004160238, -7.9949293E-4, 0.008915762, -0.022715576, 0.032957204, -0.005733011, 0.02547554, -0.007177256, 0.005489485, -0.030251358, -0.017290356, 0.018047992, 0.021443829, -0.013542758, -0.01212219, 0.006128741, -0.00318106, -0.02159265, -0.015260971, 0.0052662524, 0.010119864, 0.0016480293, 0.024744961, 0.01528803, -0.003147237, 0.0087534115, 0.0112157315, 0.0010366772, -0.028817259, 0.013563053, 0.005486103, -0.004170385, -0.017682703, -0.009071348, -0.0111751435, -0.008388123, -0.024663785, -0.018210342, -0.012176307, -0.0010155378, 0.025908474, -0.020835014, 0.0060577127, -0.038883004, 0.056498062, -0.035338346, 0.008449004, -0.031523105, -0.004292148, -0.0058243335, 0.038774773, 0.005036256, -0.034120716, -0.01282571, -0.020997364, -0.01577508, -0.016221546, 0.027504923, -0.0112969065, -0.008137831, -0.029547837, 0.0051106666, -0.014611568, 0.01720918, -0.001221013, 0.009267522, -0.0016328089, 0.03127958, -0.021403242, -0.019116802, 0.011121026, 0.006460207, -0.032767795, 0.008814293, 0.012068072, 0.007481664, -0.0075763687, -0.023148512, -0.010119864, 0.0036934796, -0.019698558, -0.0026906256, -0.005059932, -0.010086041, 0.031928983, 0.016302722, -6.092381E-4, 0.015139208, -0.029980773, -0.0063857962, -0.006108447, -0.016397426, -0.0012091749, -0.028249031, 0.011445728, 0.016343309, -0.026557878, 0.013738933, -0.0062538865, -0.024014382, -0.029791363, 0.007271961, 0.008841352, -0.010613681, -0.024068499, 0.0028106975, -4.2463813E-5, -0.0231891, -0.0064297663, -0.17068475, 0.01210866, 0.020104434, 1.12038935E-4, 2.959519E-4, 0.0033924542, 0.028005505, 0.004180532, -0.012676888, 0.0074207825, 0.008313712, -0.008009304, -0.019008568, -0.0243932, 0.013732168, -8.768632E-4, -0.03701597, 0.012967766, 0.016911536, 0.0058547743, -0.0153556755, -0.02019914, 0.021024423, -0.022214996, -0.005939332, 0.005820951, 0.0066360873, 0.042075902, 0.017276825, -0.008415181, 0.0029747393, -0.029872539, 0.039045356, -0.022269111, 0.02302675, -0.010058982, -0.010924852, -0.0030542235, -0.009186347, 0.029926656, -0.0018112255, 0.004633761, 0.025705537, -0.008564002, 0.010316038, 0.027978446, -0.013542758, -0.0086316485, 5.2763993E-4, -0.011432199, 0.052493412, -0.012128954, 0.024947898, -0.020469725, 0.033850133, 0.0027498158, 0.00671388, 0.0020496782, 0.023040278, -0.0031641487, -0.020375019, -0.0029629013, 0.011729842, -0.007177256, -0.01687095, -0.03742185, -0.008929292, 0.019414444, -0.032145448, 0.01202072, -0.0012184762, 0.013894519, -0.024122616, 0.012643065, 0.029196078, 0.005178313, -0.020469725, -0.014029811, 0.0112969065, 0.003443189, 0.002729522, 0.042102963, 8.878557E-4, 0.012683652, -0.016830362, -0.030711351, -0.008611355, 0.025218483, 0.0058716857, -0.0028698877, -0.011790724, -0.0143951, -3.6359805E-4, 0.003916712, -0.010119864, 0.019238565, -0.0016640952, 0.0024048206, 0.012616007, -0.0041399444, 0.009531342, -0.018737983, -0.036041867, -0.010857207, 0.027315514, 0.0071907854, 0.02074031, 0.023107924, 0.03019724, 0.0035412759, -0.031847805, 0.028600791, 0.008929292, 0.036068927, 0.0030001067, 0.010809855, -0.022025585, -0.022066174, 0.017642116, -0.006832261, 0.023743797, -0.0062877093, -0.0154368505, 0.0064027077, -0.0067950557, -0.039748877, -0.06531912, -0.013975694, 0.040262986, 0.009781633, -0.026422584, -0.009531342, 0.0030677528, 0.029250193, -0.022093233, 0.022174407, -6.0078234E-4, -0.021552064, -0.012670123, 0.016113313, 0.016248604, 0.0094501665, 0.011391611, -0.022350287, -0.0326325, 0.017587999, -0.026422584, -0.0048130234, 0.003926859, -0.0020124728, -0.029006667, -0.0059731547, -0.00798901, 0.015139208, 0.012413068, 0.010498682, 3.7776146E-4, -0.0141245155, -0.0071569625, -0.008022833, -0.014273337, -0.009003703, -0.010701621, -0.025164368, 1.8560412E-4, -0.025935533, 6.756159E-4, 0.021010894, 0.0025790094, -0.0364748, -0.029764306, -0.013508935, 0.0018856364, 0.025042605, 0.0027345954, -0.015477438, -0.020618545, -0.006734174, -0.007819895, -0.01097897, 0.016410956, -0.022512637, 0.011648667, -0.013103059, -0.0037273027, -0.01202072, 0.012501008, 0.014530392, 0.004035093, 0.016586835, 0.0041974434, -0.025380835, 0.01806152, 0.021890294, 0.03701597, -0.0029442986, -0.01789917, 0.0143951, -0.022269111, 0.026828462, -0.024298497, 0.0054015447, -0.024853194, -0.0057093347, 0.025800241, 0.012250718, -0.018250931, -0.018196814, 0.0021714414, -0.053846333, 0.008259594, 0.031306636, 0.0055266903, -0.004325971, -0.005063314, -0.051898126, 0.012013956, 0.028681967, 0.044889983, 0.0025113632, -0.013542758, -0.022688517, 0.009828986, 0.007711661, -0.03563599, -0.0071840207, -0.03422895, -0.0066191754, -0.08182478, 0.025434952, 0.023175571, -0.019712087, -0.004035093, 0.014300396, 0.03073841, -0.027423749, 0.029006667, -9.986262E-4, -0.0015693906, 0.0015152737, 0.008388123, 0.010972206, -0.008219007, -0.011520139, 0.01827799, -0.0032977497, 0.016059196, 0.010525741, 0.0070487284, 0.009991336, -0.0059697726, 0.013610405, -0.0138809895, 0.007867247, -0.017817995, 0.0179127, 0.0070893164, 0.0053981626, 0.030332532, -0.033985425, 0.0015981402, 0.05444162, -0.014476276, -0.0028867994, 7.9822453E-4, 0.007515487, -0.0074410765, -0.0028800347, -0.026463173, -0.032821912, -0.003015327, -0.0073328423, -0.012927179, -0.002078428, 0.010295744, 0.010194275, -0.005983302, 0.025719065, -0.004752142, 0.0027582718, -0.0140027525, -0.03512188, 0.014205691, -0.019211506, 0.00444097, -0.022526167, -0.0019634294, -2.1625627E-4, 0.05914979, -0.0041534733, 0.016938595, -0.017073888, -0.019955613, -0.024474377, -0.033498373, 0.005435368, 6.0754694E-4, -0.017574469, -0.028140798, 0.016180959, 0.021470888, 0.023852032, -0.0024386437, 0.0034364243, 0.006176093, -0.028411383, -0.007860483, 0.003622451, 0.0042549428, -0.009632812, -0.013393938, -5.5723515E-4, 0.00973428, -0.012595713, -0.028736083, 0.012697182, -0.015937433, 0.025042605, -0.039586525, 0.014963328, -0.010525741, -0.012291305, 0.033227786, -0.019860908, -0.011263084, -0.010207804, 0.029601954, 0.006247122, 0.005178313, 0.0021866618, 0.013123353, 0.002949372, 6.443295E-4, 4.891662E-4, -0.027586099, -0.026179058, -0.0010984043, -0.0027345954, -0.024988487, -0.010153687, -8.988482E-4, 0.02634141, -0.010248391, 0.01168249, -0.0027667275, 5.382097E-4, -0.022688517, 0.021362653, 0.03477012, 0.004995668, 0.009105171, 7.183175E-4, 0.011236025, 0.0035142174, -0.002607759, 0.00172244, 0.017709762, -0.022417933, 0.012961002, -0.00728549, 0.0050261086, -0.0124468915, -0.016289193, -0.008421945, 0.007928128, 0.008300182, -0.015545085, 0.10774679, 0.026814932, 0.018196814, 0.013752461, -0.005455662, 0.007170492, 0.0027667275, -0.004687878, -0.030549001, -0.03233486, 0.017709762, 0.0047622886, -0.004599938, 0.013745697, -0.041426502, 0.02386556, 0.018832687, 0.017019771, -6.8195775E-4, -0.026260234, 0.008178419, -0.030954877, 0.010884265, -0.019942084, 0.011783959, -0.0011085513, 0.025218483, 0.0319831, 0.0069032894, -0.03333602, 0.014070399, 0.003717156, -0.0080972435, -0.020212669, -0.002861432, -0.011858369, -0.01666801, 0.008469298, 0.007914599, 0.0010358316, 0.012318363, 0.020767367, -0.0036055397, -0.012352186, 0.0070825517, -0.0030965025, -0.011986897, -0.027450807, -0.042725306 ], - "id" : "cea33d20-db4e-49b6-abde-2bdabeedb7f3", - "metadata" : { - "name" : "Velo 99 XR1 AXS" - }, - "text" : "price: 1099.99\nname: Velo 99 XR1 AXS\nshortDescription: Velo 99 XR1 AXS is a next-generation bike designed for fast-paced adventure seekers and speed enthusiasts. Built for high-performance racing, the bike boasts state-of-the-art technology and premium components. It is the ultimate bike for riders who want to push their limits and get their adrenaline pumping.\ndescription: ## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep up with your speed, agility, and endurance. You are an adventurer who loves to explore new terrains and challenge yourself on the toughest courses. You want a bike that is lightweight, durable, and packed with the latest technology.\n\nThe tech you get\nA lightweight, full carbon frame with advanced aerodynamics and integrated cable routing for a clean look. A high-performance SRAM XX1 Eagle AXS wireless electronic drivetrain, featuring a 12-speed cassette and a 32T chainring. A RockShox SID Ultimate fork with a remote lockout, 120mm travel, and Charger Race Day damper. A high-end SRAM G2 Ultimate hydraulic disc brake with carbon levers. A FOX Transfer SL dropper post for quick and easy height adjustments. DT Swiss XRC 1501 carbon wheels for superior speed and handling.\n\nThe final word\nVelo 99 XR1 AXS is a premium racing bike that can help you achieve your goals and reach new heights. It is designed for speed, agility, and performance, and it is packed with the latest technology and premium components. If you are a serious cyclist who wants the best, this is the bike for you.\n\n## Features\nAerodynamic design\n\nThe Velo 99 XR1 AXS features a state-of-the-art frame design that reduces drag and improves speed. It has an aerodynamic seatpost, integrated cable routing, and a sleek, streamlined look that sets it apart from other bikes.\n\nWireless electronic drivetrain\n\nThe SRAM XX1 Eagle AXS drivetrain features a wireless electronic system that provides precise, instant shifting and unmatched efficiency. It eliminates the need for cables and makes the bike lighter and faster.\n\nHigh-performance suspension\n\nThe RockShox SID Ultimate fork and Charger Race Day damper provide 120mm of smooth, responsive suspension that can handle any terrain. The fork also has a remote lockout for quick adjustments on the fly.\n\nSuperior braking power\n\nThe SRAM G2 Ultimate hydraulic disc brake system delivers unmatched stopping power and control. It has carbon levers for a lightweight, ergonomic design and precision control.\n\nCarbon wheels\n\nThe DT Swiss XRC 1501 carbon wheels are ultra-lightweight, yet incredibly strong and durable. They provide superior speed and handling, making the bike more agile and responsive.\n\n## Specs\nFrameset\nFrame\tFull carbon frame, integrated cable routing, aerodynamic design, Boost148\nFork\tRockShox SID Ultimate, Charger Race Day damper, remote lockout, tapered steerer, Boost110, 15mm Maxle Stealth, 120mm travel\n\nWheels\nWheel front\tDT Swiss XRC 1501 carbon wheel, Boost110, 15mm thru axle\nWheel rear\tDT Swiss XRC 1501 carbon wheel, SRAM XD driver, Boost148, 12mm thru axle\nTire\tSchwalbe Racing Ray, Performance Line, Addix, 29x2.25\"\nTire part\tSchwalbe Doc Blue Professional, 500ml\nMax tire size\t29x2.3\"\n\nDrivetrain\nShifter\tSRAM Eagle AXS, wireless, 12-speed\nRear derailleur\tSRAM XX1 Eagle AXS\nCrank\tSRAM XX1 Eagle, 32T, carbon\nChainring\tSRAM X-SYNC, 32T, alloy" - }, - "20f7c628-bd69-439b-86b7-ba314d335134" : { - "embedding" : [ 0.014087837, -0.0041590487, -0.022203373, -0.008180878, -0.0049758293, 0.006214069, -0.018413508, -0.022464743, -0.0075927954, -0.012402002, 0.0044759596, -0.012552289, -0.017485647, -0.0069263023, -0.014296933, 0.009749097, 0.005893891, -0.015420824, -0.007821494, -0.018165208, -0.007664672, 0.0013191012, -0.02909047, 0.008167809, -0.015237865, 0.008180878, 0.031991675, -0.0145713715, -0.0037669935, -0.020282304, 0.009814439, 0.0018949318, 0.0033455347, -0.008834302, -0.030266633, 0.011016741, 0.028384771, -0.014362276, 0.021745976, 0.013996358, 0.009683754, 0.004969295, -0.010265303, 0.0070373844, -0.012506549, 0.00946159, 0.02681655, -0.016793016, -0.01015422, -9.515498E-4, -0.020818112, 0.020687427, -0.02143233, -0.0017609796, -0.0043485416, -0.010801111, -0.0070569874, 0.021732908, 0.037898634, 0.008782028, 0.0075405217, 0.017211208, -0.046785213, 0.02699951, -0.0074882475, -0.01059855, 0.009611878, 0.014623646, 0.0025826613, 0.022360194, 0.012336659, 0.034579236, 0.03481447, -0.0026561716, 0.0035350278, -0.03959754, 0.0075405217, -0.007187672, -0.003489288, -0.024059098, 0.020896522, -0.014283865, 0.011042878, 0.010043139, 0.029900717, -0.00104793, 0.00803059, -0.0015943564, -0.007207275, 1.27366775E-5, -0.015747536, -0.008148206, -0.0057174666, 0.019380579, 0.016779948, 0.009847111, 7.159085E-4, 0.019001592, -0.0055312403, -0.025379017, 0.009899385, 0.02699951, -0.004302802, -0.0066453298, -0.02473866, -0.010886056, -0.028410908, -0.003337367, 0.0018377571, -0.013591235, -0.010297974, 0.015290139, 0.014662852, 0.01289207, 0.008866974, 0.010271837, 0.009879782, 0.028802963, 0.022451675, -0.001860627, 0.021380058, 0.021732908, 0.0062467405, -0.027365427, -0.0027966578, 0.0054822336, 0.010304508, -0.009644549, -0.018609537, -0.008670947, -0.0062402063, 0.0013338033, 0.009317837, 0.0071615353, 0.0010658992, 0.030188223, -0.004639316, 0.019498194, -0.037349757, -0.029717756, -0.0034664182, 0.008533727, -0.024869345, -0.0044596237, -0.032697376, -0.012526153, -0.020256167, 0.009330905, 0.019485125, -0.028855236, 0.025339812, -0.0038225348, 0.0231051, 0.035650853, 0.018047592, -0.023026688, -0.010049673, 0.019903317, -0.021680633, -0.024438085, -0.030240497, 0.0053482815, 0.010729235, -0.029534798, 0.0364611, 0.013578166, 0.0097687, -0.015603783, 0.001103471, 0.008670947, -0.024529565, 0.003102134, -0.0132449195, -0.0058252816, 0.00946159, 0.014074769, -1.1782065E-4, -0.016596988, -0.021994276, 0.012977015, 0.0035252264, -0.005642323, 0.022085756, 0.021118687, -0.015590714, -0.012428138, 0.0020631887, -0.010683495, 0.030632552, -0.014963427, 0.010533207, 0.011944604, -0.009977796, 0.01063122, -0.61097825, -0.032880332, 0.006178131, -0.011951138, -0.0057926103, 0.0028505654, -0.012212508, 0.0033439011, -0.0029142743, -0.0028309627, -0.037088387, 0.011487207, -0.0065669185, -0.008638275, -0.028593866, -0.01849192, 0.010056207, -0.0024519763, 0.013499755, -0.010226097, -0.036173593, -0.017982248, -0.01224518, 0.0018377571, 0.011317316, -0.0033030622, 0.0077234805, -0.018047592, -0.0015216629, 0.00366898, -0.024790935, 0.046001103, -0.02056981, 0.0068478915, 0.0321485, -0.029325703, -0.010186892, 0.012094892, 3.3651374E-4, 0.035912223, -0.021680633, -0.021484606, 0.002188973, -0.01107555, 0.009925522, 0.005893891, 0.029456388, -0.015682194, 0.013591235, -0.046654526, 0.024294332, 0.015054906, 0.0204914, -0.007605864, -0.015852084, -0.008710152, 0.043021485, 0.0055018365, 0.013578166, 0.016231071, 0.0043420075, 0.017211208, -0.016335618, 0.0050215693, 0.004805939, 0.006432967, -0.047255676, -0.015995838, 0.012127563, 0.0078607, 0.014545235, 0.00807633, -0.010899125, 0.012408536, 0.014767399, 0.03107688, 0.014924221, 0.0028914046, -0.0022494146, 0.005436494, 0.019380579, -0.0044302195, -0.011101686, -0.035833813, 0.0345531, -0.0027247812, -0.01224518, -0.01693677, 0.0042374595, 0.031808715, 0.02796658, 0.016479371, 0.003064562, 3.042509E-4, 0.0121537, 0.030554142, -0.0116178915, 0.012107961, 0.0070569874, -0.030789373, -0.010611618, -0.008951919, 0.0029992196, -0.0017266748, 0.032932606, 0.009448522, -0.012447741, -0.027888168, 0.018674878, -0.031207565, 0.008161275, -0.01979877, -0.01779929, 5.672544E-4, 0.0083246315, -0.024581838, 0.01389181, 0.022948276, 0.019262962, -0.016793016, 0.012558823, 0.020269236, 0.034709923, -0.009154481, -0.024085237, 0.016492441, 0.004933357, 0.005524706, -0.0047896034, -0.010239165, 0.019249894, 0.033978086, 0.026555182, -0.0069589736, 0.036853157, 0.0103371795, 0.016270276, -0.004299535, 0.01753792, -0.023758523, -0.048640937, -0.009879782, 0.009605343, -0.03290647, -0.023980688, -0.022830661, -0.003936884, 0.007364097, -0.014780467, -0.0132906595, -0.02830636, -0.022255646, -0.012950879, 0.0021448666, -0.016361756, -0.024673318, -0.038787294, -0.0066976035, -0.01102981, -0.0015143119, -9.3674564E-5, 0.0088147, -0.036591787, -0.010180358, 0.00998433, 0.0053221444, 0.011977276, 0.023693182, -0.007475179, -0.037820224, -0.014349207, -0.0074359737, -0.010030069, 0.0025973634, -0.01987718, 0.01067696, -0.020465262, -0.019668086, 0.012408536, -0.011487207, -0.0030024867, 0.021079483, -0.03533721, 0.015577646, 0.02117096, 0.030893922, -0.0041296445, 0.02047833, -0.014349207, 0.008455317, -0.02379773, 0.005524706, -0.005387487, 0.010141152, 0.02396762, 0.0017495448, 0.01727655, -0.015133317, -0.003561165, 0.03706225, 0.0030694627, -0.009644549, 0.006893631, 0.009121809, 0.008612138, -0.022517016, 0.007991385, -0.004760199, 0.029221155, 0.013643509, 0.01815214, -0.050679624, -0.019511262, -0.013088098, -0.012598029, -0.0052731377, 0.010232631, 0.039440718, 0.0033651374, -0.009644549, -0.019851044, 0.026241537, 0.009494262, -0.014283865, -0.0034794868, 0.012813659, 0.021406194, 0.026084716, 0.0034990895, -0.013852605, -0.0063610896, 0.0128593985, 0.038682744, -0.01753792, -0.0013542228, 0.013009687, 0.027731346, -0.007533987, 0.048823897, 0.0071419324, 0.046471566, 0.044877212, 0.011872727, -0.022360194, 0.021680633, -0.0015069608, 0.015146386, 0.035494033, 0.035049703, 0.00314624, 0.0023016885, -0.0059265625, -0.0041100415, 0.019341372, 0.016727673, 0.009474658, 0.0040054936, 0.03638269, -0.010703097, 0.0057174666, 0.02205962, 0.03248828, 0.018217482, 0.019001592, 0.015446961, -0.01832203, -0.013604303, 0.0011091885, -0.013146906, -0.024333537, 0.006602857, -0.015904358, -0.02076584, 0.0029387777, 0.00488435, 0.0012578426, -0.020216962, 0.015015701, 0.019746495, 0.033899676, -0.009729494, -0.026764277, 0.017263481, 0.014074769, -0.00876896, 0.0047994046, 0.016871426, 0.0072987545, -0.015747536, 0.034579236, -0.011696303, 0.02109255, -0.0066910693, -0.004518432, -0.015460029, -0.018361235, 0.020086277, -0.0087950975, 0.01458444, 0.0051685898, -0.03664406, -0.012140632, 0.0025532572, -0.019262962, 0.03099847, -0.014479892, 0.023405675, -0.025130715, 0.01058548, -0.0123039875, -0.0078084255, -0.036879294, -0.0012856132, -2.0644139E-4, -0.007102727, 0.020648222, -0.0047177267, -0.037558854, 0.024098305, -0.027809758, 0.0016678666, -0.027234742, -0.020216962, -0.022242578, 0.02995299, 0.019759564, 0.0073575624, 0.025653455, -0.022111893, 0.015708331, 0.006021309, -0.0016008907, 0.008246221, 0.034422416, -0.028410908, 0.017720878, -0.0026300347, -0.032331455, -0.0018671612, -0.01289207, 0.0055312403, -0.014597509, 0.0023033223, -7.1427494E-4, -7.003896E-4, -0.014218522, -0.012310522, 0.023431811, 0.012800591, -0.021053346, 0.030893922, 0.009259028, 0.0076254667, -0.0077038775, 0.004034898, 0.015486167, 0.013748056, -6.748652E-5, -0.007239946, 0.0078018913, 0.014558303, -0.015185591, 0.016479371, 0.0051587885, 0.014898084, 0.026921099, 0.015512303, 0.014192386, 0.008468385, 0.0030727298, 0.0054266923, 0.02023003, 0.019733427, -0.0062238704, 0.033193976, 0.008298494, -0.018818632, 0.0098209735, 0.013009687, 0.02379773, -0.020360716, 0.009729494, -0.015577646, -0.048170473, -0.0011140892, -0.011317316, 0.028907511, -8.016705E-4, -0.025601182, 0.007364097, -0.0018687948, 0.021680633, -0.0037179869, -0.011611357, -0.034605373, -0.03290647, -0.008193946, 0.020530606, 0.0061650625, 0.021811318, 0.019485125, -0.029900717, 0.013342933, 0.021301646, -0.013486687, 0.009272097, -0.017263481, -0.01806066, 0.008520659, 0.0123039875, 0.017760085, -0.0013248187, -0.0035186922, -0.0013109334, 0.018818632, -0.009755631, 0.02707792, -0.028018853, 0.0022330792, -0.007847631, -0.0046687196, 0.011010207, 0.0044269525, -0.01150681, 0.0033684045, -0.013917947, -0.001770781, 6.5424154E-4, 0.017002111, -0.0074947816, -0.0017740482, -0.015603783, -0.00946159, -0.019053865, -0.02822795, -0.013009687, -0.010788042, 0.001129608, -0.022177236, 0.0053711515, 0.019903317, 0.0032801921, 0.0120491525, -0.014989563, 0.016636195, -0.052273978, 0.038055457, 0.007109261, -0.0070112473, 0.035729267, 0.01124544, 0.0053482815, 0.0010520138, 0.0022820858, 0.018544193, 0.021027207, -0.0055900486, 0.020086277, -0.025718797, -0.023915345, -0.034840606, 0.021484606, 0.015590714, -0.017172001, -0.0038486717, 0.023052825, 0.008141672, 0.008919247, -0.017773153, -0.01589129, -0.022961345, 0.023118168, -0.0054528294, 0.037558854, 0.0029371441, 0.02145847, -0.021785181, -0.01719814, -0.0075862613, -0.016832221, -0.014440686, -0.022020414, 0.017694741, 0.01484581, 0.0046883225, 0.003486021, 0.014885016, 0.030946195, -0.015473098, -0.0073510283, -0.031468935, -0.006331686, -0.031547345, 0.012251714, 0.015433893, -6.1503606E-4, -0.037140664, -0.020556742, -0.01363044, 0.023667045, -0.025013098, 0.0033308326, -0.02830636, -0.0352588, -0.0038356031, -0.035049703, -0.01081418, -0.013643509, -0.022124961, -0.005655391, 0.06539475, -0.005498569, 0.022281785, 5.8930746E-4, -0.0058742883, -0.037375893, 0.04260329, -0.019171482, 0.0087950975, 0.003855206, -0.012500015, -0.021288577, -0.010624686, -4.5208825E-4, -0.0016221269, 0.004675254, 0.016649263, -0.015316276, 0.004939891, -0.0019994797, -0.0028767025, -1.5324852E-4, 0.01046133, -0.020269236, -0.015943564, -0.024268195, -0.0049006855, -0.040224828, -0.008246221, 0.012506549, -0.00536135, 0.029377976, -0.022334058, 0.022464743, 0.021955071, -0.0013297193, 0.026032442, 0.0243074, 0.010735769, -3.9511776E-4, -0.02013855, -0.020347647, -0.01892318, 0.014610577, -0.0030449594, 0.007429439, 0.019981729, -0.0058742883, -0.005854686, 0.020373784, -0.015407755, -0.007899906, -0.020060139, 0.0042341924, 0.02516992, 0.026594387, -0.01246081, -0.0068086856, -3.816409E-4, 0.02047833, -0.013512824, 0.0133298645, -0.003270391, -0.026790414, 0.004433487, 0.0067302748, -0.011147426, 0.013826467, -0.0035284937, 0.0015870053, 0.015865153, -0.0075013163, -0.0049170214, -0.010409056, 0.00612259, 0.046837486, -0.014688988, -0.0022461475, 0.031834852, 0.0053972886, -0.009036864, -0.00859907, -0.017354961, 0.025888689, -0.010180358, -0.0074817133, -0.017786222, -0.0113630565, -0.012290919, 0.010748837, -0.01736803, 0.003936884, -0.013656577, -0.009448522, -0.011069015, -0.0145713715, -0.02856773, -0.02047833, -0.028985921, -0.007632001, -2.0776865E-4, -0.011630961, 0.009435453, -0.022634633, -0.008782028, -0.022294853, 0.008873508, 0.047647733, 0.0214454, -0.019916385, -6.07685E-4, 0.010095412, -0.017773153, 0.013996358, 0.028881373, -0.015656058, -0.012931275, 0.01484581, 0.0021268975, -0.026163127, -0.008298494, -0.0028391306, -0.0077300146, -0.040564608, 0.017524851, -0.0047667334, -0.012493481, 0.008422645, 0.029064333, 0.020060139, 0.010219563, 0.002945312, -0.02047833, 0.013316796, 0.00993859, 0.005737069, 0.013878741, -0.006972042, 0.030632552, -0.016178796, 0.0045315004, 0.0063676243, -0.024751728, -0.0011369591, 0.0033455347, 0.021027207, -0.017211208, -0.003832336, -0.030135948, -0.0053188773, -0.008755892, 0.030920058, -0.024790935, 0.004175384, 0.0077430834, -0.010853385, -0.0041263774, 0.01059855, -0.022673838, -0.020007866, 0.017851563, -0.0041002403, -0.027522251, -0.034500826, 0.008265823, 0.030501867, -0.0045674387, -0.043230582, -0.017185071, -0.0071615353, -0.044093102, -0.01727655, 0.007527453, 0.015420824, 0.024294332, 0.021419263, 0.0025532572, 0.0045315004, 0.021144824, 0.026712004, -0.03975436, 7.449042E-4, 0.006197734, 0.026894962, -0.002863634, -3.4161864E-4, -0.048379567, -0.021850523, 0.0118335225, 0.021040278, 0.0032442538, 0.009324371, -0.009598809, -0.0056619253, 0.009259028, -0.014074769, 0.018112933, 0.012833262, -0.008762426, -0.024621043, -0.015067974, -0.014192386, 0.008154741, 5.1212165E-4, -0.010239165, -0.010774974, 0.0010511971, 0.01615266, -0.019328304, -0.0054462953, -0.0074098366, -0.0037604594, 0.045112446, 0.0038160004, -0.01267644, 0.049006857, -0.01315344, -0.032592826, -3.5325775E-4, 0.022569291, 0.013421345, 0.0015159454, 0.019720359, -0.031312115, 0.007971782, -0.006550583, -0.0046719867, -0.0018851304, 0.007710412, 0.014022495, 0.0037539252, -0.020818112, 0.020883454, 0.007455576, -0.018295893, -0.02586255, 0.019759564, -0.024712523, 0.016714605, 0.008318097, 0.0038094663, -0.03413491, 0.0033880072, -0.004270131, -0.025130715, 0.0028865037, 0.03638269, -0.013643509, -0.010409056, 0.020334577, 0.19979115, 0.0011091885, -0.0038780759, 0.03429173, 1.8765542E-4, 0.002639836, 0.01996866, -0.006446035, 3.211991E-4, 0.009487728, -0.009415851, 0.033899676, 0.002360497, -0.0018132536, 0.008729755, 4.3371067E-4, -0.050496664, -0.0058056787, -0.018282825, 2.7668453E-4, -0.0048190076, 0.013434413, -0.024856277, -0.018465783, 0.031024607, 0.0010577313, -0.03021436, -0.026333017, -0.00950733, 0.012075289, -0.02066129, -0.0050379047, -0.0041851853, 0.0028162606, -0.006204268, -0.010912193, -0.0068282885, 0.0027394833, -0.015237865, 0.040146418, 0.0050085005, -6.2606257E-4, 0.0090956725, -0.027208606, -0.012918207, -0.008886577, -0.015224797, 0.0040545007, -0.026411427, -0.005073843, -0.011114755, 0.010193426, 0.025052305, 0.040773705, -0.002919175, -0.023209646, 0.033716716, -0.012761385, -0.002643103, -0.023405675, -0.028672278, 0.037794087, 0.01424466, 0.040904388, -0.021850523, 0.029979127, -0.016779948, -0.013179577, 0.0038388704, 7.1723575E-6, -0.017982248, -0.0010430292, -0.0026496374, 0.0044498225, -0.033246253, -0.032880332, 0.0048255417, 0.020282304, 0.009121809, -7.3796156E-4, 0.0067498777, -0.02492162, 0.010265303, 0.03533721, -0.007932576, -0.03863047, 0.003829069, 0.023484085, 0.03724521, -0.017394166, -0.001491442, 0.009448522, 0.011846591, 0.0032148496, 0.018452715, -0.019066934, -0.023248853, 0.022425538, -0.019236824, 9.801371E-4, -0.011546015, 0.027548388, -0.007096193, -0.012297453, -0.015682194, 0.015054906, -0.017642468, 0.013199179, 0.009500796, -0.033559896, 1.4421288E-5, -0.039963458, -0.002416038, -0.0060311104, 0.009742563, -0.018936248, 0.0037310552, -0.01684529, -0.004966028, -0.025758004, 0.01693677, -0.013695783, 0.02935184, -0.0030188223, 0.015185591, -0.012669906, -0.014453756, 0.014035564, 0.0014048632, -0.029142743, 0.020360716, -0.010944865, -0.0058056787, 0.012722179, -7.930943E-4, 6.17078E-4, -0.003613439, -0.006789083, 0.008677481, 0.012441207, -0.006305549, 0.009631481, 0.010480933, -0.014924221, 0.017158933, -0.02733929, 0.010141152, -0.011016741, -0.014898084, -0.012911673, -0.006236939, -0.010297974, 0.005841617, -8.445515E-4, 0.007978316, 0.020151619, -0.027992716, -0.043753322, -0.00633822, 0.010056207, -0.02100107, -0.013486687, 0.015303208, -0.009716426, -0.01918455, -0.010840316, -0.16319937, -0.0037898635, 0.011696303, -0.015603783, -6.93447E-4, 0.0016490807, 0.021497674, 0.013408275, -0.028646141, -0.018557264, 0.032854196, 0.009317837, -0.020752769, -8.633374E-4, 0.011108221, -0.008938851, -0.006625727, -0.010147686, 0.036879294, 0.0076123984, 0.009252494, -0.031129155, 0.026672797, 0.01458444, -0.004064302, 0.01081418, 0.013408275, 0.0390748, 0.006655131, -0.008559864, -0.030292772, -0.016884495, 0.031416662, -0.008167809, 0.00707659, 9.5236656E-4, -0.0123039875, 7.236679E-4, -1.8724703E-4, 0.040381648, 0.0023457948, -0.008200481, -7.645069E-4, 0.017054386, 0.01684529, 0.03863047, -0.0067498777, 0.0033488018, -0.011238906, -0.036252003, 0.0371668, -0.040407784, 0.017511783, -0.01415318, 0.017851563, 0.006867494, -0.011728974, 0.013839536, 0.01389181, -0.045034032, -0.020974934, -0.018818632, 0.02023003, -0.010925261, 0.008501056, -0.048510253, -0.01372192, 0.0307371, -0.028907511, -0.0055345073, -8.870241E-4, -0.025653455, 0.0019994797, 0.013257988, 0.025365949, -0.0026185997, -0.017929975, -0.005305809, 0.027940443, 0.00655385, -0.005184925, 0.031233702, -0.007828029, 0.019955592, -0.024647182, -5.872655E-4, -0.032618962, -0.006468905, -0.0011663631, -0.026542112, 0.008220083, -0.028280223, -0.02744384, -0.0011434933, 0.015943564, 0.0029779833, -0.0012194539, -0.0063741584, -0.0041623157, 0.004047966, -0.013048892, -0.0092917, -0.020582879, 0.014218522, 0.033193976, -0.004119843, 0.0025140517, 0.020177756, 0.0019210688, 0.020034002, -0.013257988, 0.01353896, 0.012232111, 0.0065146447, 0.01293781, 0.0033488018, -0.02656825, -0.04801365, 0.014976495, -0.01641403, 0.017668605, -0.01353896, -0.027313154, 0.0033340997, -0.006978576, -0.02961321, -0.06701524, -0.007984851, 0.014963427, 0.030292772, -0.024790935, -0.004854946, 0.0022624831, 0.017877702, -0.017354961, 0.020269236, -0.029195018, -0.045007896, -0.003098867, 0.033978086, 0.025496634, 0.010134618, 0.017067455, -0.020465262, -0.01753792, 0.017982248, -0.007468645, -0.045295402, 0.013591235, -9.50733E-4, -0.008389974, -0.015865153, -0.02987458, 0.031495072, 0.026947236, 0.011428399, 0.033403073, -0.01589129, -0.008938851, 0.025901757, -0.027496113, -0.026071647, -0.03316784, 0.010363316, 0.025836414, -0.032017812, 0.008350768, 0.014492961, -0.0028799695, -0.009389713, -0.009526933, -0.01892318, -0.010520139, 0.033821266, -0.011826987, -0.025914825, 0.003009021, -0.021471538, 8.445515E-4, -0.010827248, -0.0066126585, -0.008827768, 0.015969701, -0.0029959525, -0.008037125, -0.012865934, 0.0132906595, 0.011853125, -0.0024634113, 0.022699976, 0.015486167, -0.017720878, -0.0029175414, 0.007873768, 0.037794087, 0.005632521, -0.00631535, 0.0058154804, -0.0069393707, 0.025339812, -0.020269236, -0.004727528, -0.029508661, -0.023823867, 0.022347126, 0.0057174666, -0.01493729, -0.022817591, 0.0145321665, -0.03604291, 0.017877702, 0.029717756, -0.007004713, -0.009409316, 0.013643509, -0.027835894, 0.01146107, 0.019367509, 0.055462692, -0.017381098, -0.020752769, -0.009520398, 0.016975975, 0.007991385, -0.0070569874, -0.022347126, -0.05216943, -0.0019259694, -0.0781496, 0.040590744, 0.02126244, -0.0018099865, -0.03107688, -0.0025695928, 0.032854196, -0.020334577, 0.022882935, 0.030109812, -0.014087837, -0.007004713, 0.0050215693, -0.009389713, -0.0059004254, 0.0075143846, 0.008487987, -0.0015110447, 0.016270276, 0.023288058, 0.0048190076, 0.012990084, -0.009631481, 0.035049703, -0.006468905, 0.011683234, 0.009546535, -0.006674734, -0.0071746036, 0.018099865, 0.018740222, -0.006021309, 0.0076450696, 0.041714635, 0.0012668272, -0.026581319, 0.023484085, 0.0012513084, 1.5952752E-6, -0.017041318, -0.023980688, -0.014192386, 0.014218522, -0.017498715, -0.0050575077, 0.018256687, 0.021471538, 0.012186372, 0.024529565, 0.029926853, -0.0015527005, 0.007547056, 0.0037081854, -0.037219074, -0.0071746036, -0.005632521, 0.0029534798, -0.008429179, 0.0020648222, -0.0027231476, 0.055462692, -0.0038356031, 0.006628994, -0.021144824, 0.01961581, 0.002915908, -0.015224797, 0.0044204183, 0.015433893, -0.006305549, -0.03301102, -0.016623126, 0.0011867827, 0.0029093737, 0.010526673, 0.01098407, 0.009317837, 0.0030057537, -0.01884477, 0.0041263774, 0.017354961, 0.0065832543, -0.005867754, -0.007690809, 0.0151725225, -0.014649782, -0.014597509, 0.005178391, -0.005880823, 0.018609537, -0.053188775, 0.019262962, -0.022765318, 0.0144014815, 0.015277071, 0.035101976, 0.006102987, -0.016688468, 0.029012058, 0.027051784, -0.017394166, 0.009357043, -0.013114234, -0.008651343, -0.010356782, 0.01744644, -0.034709923, -0.016596988, 0.01424466, 0.008050193, -0.018243618, -0.012950879, 0.0058775553, 0.024150578, -0.014127043, 0.0045020967, -0.0042047882, -0.031678032, -0.028646141, 0.013839536, 0.007782289, -0.010474399, -0.0068086856, 0.011990344, 0.013852605, -0.0031789113, 0.014440686, -0.015799811, 0.030371182, -0.024189783, 0.01102981, -0.0092917, -0.0015200293, -0.01146107, -0.01172244, 0.009409316, 0.008226617, 0.0011900498, 0.026555182, 0.10622073, -0.0031266373, -0.011343453, 0.004701391, -0.009997399, 0.031155292, 0.020700496, -0.015329344, 0.012173303, -0.047255676, 0.002259216, -0.0019341372, -0.04377946, 0.0038748088, -0.024947757, 0.033559896, 0.021249373, 0.022242578, 0.0077561517, -0.027287018, 0.029534798, 0.0076973434, 0.016191864, 0.0024454421, -0.019903317, 0.010082344, 0.04385787, 0.02744384, 0.00789337, -0.047517046, 0.002799925, 0.008703617, -0.0053809527, -0.015930494, -0.005544309, -0.019733427, -0.015224797, -0.019628879, 0.047255676, -0.015224797, 0.0067237406, 0.018883975, -0.007017782, -0.01935444, 0.018674878, -0.004391014, 0.0021840723, -0.027914304, -0.05687409 ], - "id" : "20f7c628-bd69-439b-86b7-ba314d335134", - "metadata" : { - "name" : "AURORA 11S E-MTB" - }, - "text" : "5 lbs\n\n## Sizing & fit\n| Size | Rider Height | Standover Height |\n|------|-------------|-----------------|\n| S | 5'2\"-5'6\" | 28.5\" |\n| M | 5'7\"-6'0\" | 29.5\" |\n| L | 6'0\"-6'4\" | 30.5\" |\n\n## Geometry\nAll measurements provided in cm.\nSizing table\n| Frame size letter | S | M | L |\n|-------------------|-----|-----|-----|\n| Wheel Size | 27.5\"| 27.5\"| 27.5\"|\n| Seat tube length | 44.5| 48.5| 52.5|\n| Head tube angle | 68° | 68° | 68° |\n| Seat tube angle | 74.5°| 74.5°| 74.5°|\n| Effective top tube | 57.5| 59.5| 61.5|\n| Head tube length | 12.0| 12.0| 13.0|\n| Chainstay length | 45.5| 45.5| 45.5|\n| Bottom bracket height | 30.0| 30.0| 30.0|\n| Wheelbase | 115.0|116.5|118.5|\ntags: [bicycle, road bike]" - }, - "102e1741-7bb8-4532-a2b5-bac94339dd08" : { - "embedding" : [ 0.020719899, 0.007993915, -0.0011488261, -0.03060801, -0.015454446, 0.02173196, -0.0073032514, -0.029322417, 0.003931994, -0.038430966, 0.015577534, 0.008117003, -0.04135774, -0.013081573, -0.01250716, -0.0025164762, 0.0070844274, -0.0018805189, 0.020036073, -0.014045767, 0.006937405, 0.014606503, -0.010243699, -8.184531E-4, -0.01645283, -0.022990199, 0.029924184, -0.010086419, 0.007645164, -0.020542104, 0.027941091, 0.028009474, -0.026518736, -0.016876802, -0.005056886, 0.0012291755, 0.02400226, -7.966562E-4, 0.03451949, 4.1243198E-4, 0.019160777, 0.0075904583, -0.006496338, 0.0021369532, -0.018435923, 0.020555781, 0.020692546, 0.0137380455, 0.019653132, 0.027216237, -0.015413417, 0.040591855, 0.0031917535, 0.0123430425, -0.0051970705, -0.025438292, 0.018777836, 4.3102348E-4, 0.039689206, 0.016794743, 2.1636652E-4, 0.0063014477, -0.03025242, 0.0058740573, -0.018709453, -0.01786151, -0.011672894, 0.008226415, -0.012678117, 0.0043286127, 0.005422733, 0.03252272, 0.034027133, -0.002661789, 0.01758798, -0.0075220754, 0.001453983, -0.009382079, -0.0028669366, -0.014551797, 0.020159163, -0.0028925799, -0.01364231, 0.009539359, 0.028283004, -0.0036516257, 0.008814505, 9.4282377E-4, -0.019940339, -0.004660268, -0.005361188, 0.0074400166, 0.011515614, 0.013341427, 0.008773475, -0.003157562, -0.019256514, -0.0026686273, -0.002114729, -0.011707085, -0.007104942, 0.008582004, -0.011036936, -0.023728728, -0.021909755, -0.0135055445, -0.011864364, -0.0035798242, 0.008335827, -0.0025626344, -0.025069026, 0.009874433, -0.0077408995, -0.0044072527, 0.029623302, -0.019106071, 0.048195988, -0.004998761, 0.022921816, -0.023441523, 0.025274174, 0.029896831, 0.009669286, -0.027859032, -0.0046465914, 0.009211123, 0.009012814, 0.0074331784, -0.010688186, -0.005826189, -0.006851927, 0.00781612, -0.0036892362, 0.00687928, -0.018463276, 0.008370019, 0.0077135465, 0.0050671436, -0.029240359, -0.032139778, 0.010011199, 0.010223185, -0.01489371, 0.0014454352, -0.007228031, 1.437101E-4, -0.0049782465, 0.012999514, 0.0046636867, -0.03955244, 0.013122602, -0.017724745, 0.036133315, 0.024959615, 0.00949833, 0.006263837, -0.0106676705, 0.0243852, -0.031920955, -0.022292696, -0.02825565, 8.8042475E-4, 2.923352E-4, -0.008226415, 0.02227902, 0.0038738688, 0.008889725, -0.01680842, 0.009607742, -0.01853166, -8.852329E-5, 0.02282608, -0.025438292, 0.026012706, -0.008821343, 0.029732713, 0.02423476, -0.011666056, -0.019434309, -2.5042422E-5, 0.008978623, 0.006475823, 0.002907966, -5.530435E-4, -0.025260497, 0.00488593, 0.01282172, -0.005186813, 0.027093148, -0.007515237, 0.018777836, -5.060305E-4, -0.01563224, -0.005101335, -0.61664605, -0.026559765, -0.017957246, -0.0021916593, -0.013334588, 0.015481799, -0.004889349, 0.0106676705, -0.014825327, -0.012090026, -0.02743506, 0.027694914, -0.018463276, -0.017328126, -0.003384934, -0.02787271, 0.007508399, -0.007508399, 0.021212254, -0.0034447687, -0.034765664, 0.0067596105, -0.026559765, 0.015714299, 0.0055560786, -0.0057749026, 0.005101335, -0.02208755, -0.024576671, 0.0022309793, -0.020856664, 0.04436657, -0.007077589, -0.0057407115, 0.03807538, -0.034765664, -0.010188993, 0.01168657, 0.00883502, 0.02259358, -0.026573442, -0.0061373296, -0.023277404, -0.031455953, -9.325664E-4, 0.0012967032, 0.037610378, -0.017533274, -0.0016061341, -0.036953904, 0.019844603, 0.0075767813, 0.023126964, 0.008684578, 0.00652711, -0.018230775, 0.019283867, -0.006998949, -0.004123465, 0.0026720464, -0.012903779, 0.005573174, -0.0048175473, -0.012924293, -0.0023762921, 0.020254899, -0.059903074, -0.018011952, 0.028802712, -0.019256514, -0.0056894245, 0.026081087, -0.00926583, 0.032331247, 0.021882402, 0.015864741, 0.024932262, -0.0064895, 0.0097650215, 0.021390047, 0.017984599, 8.983752E-4, 0.0068040593, -0.015167239, 0.025069026, -0.0045474367, -0.004150818, -3.246032E-4, 0.02833771, 0.017834157, 0.023304757, 0.019885633, 0.0022019166, -0.021376371, -0.019420631, 0.039415676, -6.7484984E-4, 0.005538983, 0.016028859, -0.03807538, -0.0048243855, -9.2743774E-4, 0.007905018, 0.013286721, 0.016316066, 0.01368334, -0.0053748647, -0.021608872, 0.011748115, -0.022333726, -0.009224799, -0.0059868884, -0.025465645, 0.0037883907, -0.013136279, -0.024562996, 0.018039305, -0.005241519, 0.009676124, -0.018394893, 0.010469361, 6.645925E-4, 0.011734438, 0.010688186, -0.021157548, 0.0037781333, 0.010168479, 0.013355103, -0.007016045, -0.009252153, 0.013279882, 0.017697392, 0.05842601, -0.014948416, 0.02579388, 0.018777836, 0.026040059, 6.282643E-4, 0.01004539, -0.011556643, -0.040236264, 8.086231E-4, -0.011077966, -0.027476091, 0.0024959615, -0.012527674, -6.184343E-4, 0.0041063693, 7.4280496E-4, -0.0130678965, -0.011515614, -0.016876802, -0.013197823, 0.017533274, -0.004687621, -0.013437162, -0.018271806, -0.035777725, -0.009170094, -0.0346289, 0.010496714, 0.019475337, -0.0318936, -0.0028720652, -0.012992676, 0.0029678007, 0.012760175, 0.02583491, -0.016042536, -0.044038333, -0.0066775517, -0.003549052, -0.01082495, 0.010756568, -0.018941954, 0.00988811, -0.011713923, 0.0074400166, 0.009176932, -0.011255761, 0.006981854, 0.023427846, -0.041494504, 0.012007968, 0.019147102, 0.0137106925, 0.017382832, 7.473994E-5, -0.013799589, -0.0012009677, -0.005833028, 0.008623034, -0.01016164, 8.188805E-4, 0.002759234, 0.005757807, 0.023400493, -0.0030242163, 0.011611349, 0.009129064, 0.030498598, -0.0036721404, 0.014059443, -0.010346273, 0.031674776, -0.028720653, 0.01403209, -0.0064895, 0.024357848, 0.032823604, 0.025233144, -0.02482285, -0.01817607, 0.005422733, 0.005542402, -0.0015078342, 0.019912986, 0.027353002, -0.010373626, -0.0120353205, 0.00531674, 5.0902227E-4, 0.034738313, 0.0132115, -0.01485268, 0.024357848, 0.01403209, 0.011864364, -0.012924293, -0.014469738, -0.019530043, -0.0026823038, 0.0044106715, -0.0016360515, 0.020884017, 0.010394141, 0.016712684, -0.01836754, 0.03391772, 0.0012189181, 0.040044796, 0.054049533, 0.026409324, -0.010811274, 0.023167992, -0.008110165, 0.023386817, 0.014839004, 0.038786557, 0.002767782, 0.0043798992, 0.0058637997, 0.013013191, -0.008725608, 0.008664063, -0.0040585017, 0.004342289, 0.021950783, -0.02114387, -0.009806051, 0.011166863, 0.026436677, 0.007508399, 0.023332112, 0.013197823, -0.018545335, -0.03681714, -0.014497091, -0.004588466, -0.025739174, -8.218722E-4, -0.0147432685, -0.016288713, 0.0059595355, 0.007043398, -0.006745934, 0.008609357, 0.003877288, 0.01598783, 0.022894463, -0.01563224, -0.026135793, 5.030388E-4, 0.020870341, -0.007453693, 0.005125269, -2.9639542E-4, 0.012431939, 0.022853432, 0.039497733, -0.0041918475, 0.015030474, -0.006875861, -0.0053338353, -0.011467746, -0.009676124, 0.015331358, -0.023824465, 0.0042704875, 0.0125003215, -0.024918584, 0.0028327452, -0.0047320696, -0.02227902, 0.028994182, -0.012698631, -0.0059390203, -0.015372387, 0.016822096, 0.0189146, -0.011009583, -0.027147854, -0.009033329, -0.006445051, -0.0015642497, 0.009211123, 0.0019420631, -0.028912123, 0.02173196, -0.021321665, -0.009977007, -0.019215483, -0.03216713, -0.02067887, 0.02579388, 0.042752743, -0.009860757, 0.016999891, -0.012302012, -0.005508211, -0.03443743, -0.006421117, -0.0036345301, 0.032850955, -0.0059082485, 0.014428709, -0.019160777, -0.02720256, 0.0045440174, 2.5029065E-5, 0.013225176, -0.033370662, 0.016999891, -0.005682586, -0.0059526972, -0.015522828, 0.006886118, 0.020295927, 0.024754466, 0.0067014853, 0.009723992, 0.0051492024, 0.011864364, -0.0038430968, 0.0020138647, -0.002649822, 0.03591449, -0.0011625026, -0.024262113, 4.297413E-4, -0.0020822473, 0.0020583135, 0.027995797, 0.009505169, 0.0028891608, 0.022648286, 0.010195832, 0.014182531, 0.016425477, -1.9713394E-4, -0.006903214, 7.641745E-4, 0.022620933, -0.021239607, 0.033206545, 0.0041884286, -0.013697016, -0.007289575, -0.0019848023, 0.008349503, 0.0080349445, -0.002063442, -0.01758798, -0.033863015, 0.0103325965, -0.024180053, 0.029595949, -0.002904547, -0.012336204, -0.004014053, -0.016904155, 2.645548E-4, -9.4795245E-4, -0.01758798, -0.019283867, -0.01079076, -0.01817607, 0.023892848, 8.526444E-4, 0.0012787528, 0.02349623, -0.018011952, 0.0071391333, 0.008144356, -0.03052595, 0.021513136, -0.0050603054, -0.015550181, -1.5685237E-4, 0.014469738, 0.03834891, 0.0056620715, 0.004123465, -0.010653994, 0.019844603, -0.017875187, 0.012903779, -0.017191362, -0.0070365597, 0.008014429, 0.016589595, 0.009956493, 0.0014454352, -0.019078718, 0.00308747, -0.046609513, 0.0072417073, 0.013204662, 0.0033233897, -0.00852046, 4.2055242E-4, -0.013909002, -0.0016035697, -0.035586257, -0.009826566, -0.014756945, -0.021800343, 0.0024532224, -0.03607861, -0.004424348, 0.014141502, 0.0010171897, -0.0040072147, 2.5429743E-4, 1.45179265E-5, -0.048223343, 0.042998917, 0.008944431, -0.016110918, 0.050220113, 0.015276652, -6.1928906E-4, -0.009470977, 0.024180053, 0.044776864, 0.018203422, 0.00769987, 0.0031096945, -0.028830064, -0.015933124, -0.011057451, -0.0072417073, 0.011173701, -0.0068040593, -0.007850312, 0.008328989, 0.010578774, 0.0121378945, -0.028365063, -0.016480183, -0.016165623, 0.0026361456, -0.0065305294, 0.01931122, -0.01426459, -0.0017642686, -3.7375314E-4, -0.03263213, -0.02591697, -0.02110284, -0.012103704, -0.020719899, 0.0023968068, 0.0115976725, 0.016712684, 0.003627692, -0.0012915746, -0.009580389, -0.005867219, 0.006639941, -0.016370771, 0.0041815904, -0.035394784, 0.033863015, 0.029951537, 6.731403E-4, -0.02743506, -0.034410078, -0.024918584, 0.03517596, -0.020925047, 3.055843E-4, -0.009477816, -0.04373745, 0.006913471, -0.03807538, 0.012691793, -0.013409809, -0.042698037, -0.010113772, 0.02705212, 0.0042739064, 0.003627692, 0.014633856, -0.014647532, -0.036899198, 0.052654527, 3.5943554E-4, 0.012466131, 0.017998274, -0.033343308, -0.01360128, -0.027927415, 0.0068656034, -0.027818004, 0.0070844274, 0.007392149, 0.006691228, -0.0034960555, -0.0034362208, -0.0016437444, -0.005022695, 0.015331358, -0.01649386, -0.013997898, -0.010722376, -0.025492998, -0.032495365, -0.009101711, -0.0068348316, 0.006492919, 0.017533274, -0.012520837, -0.0047012973, 0.023906523, 0.008821343, 0.034492135, 0.016849449, 0.025438292, 0.023222698, 0.0051457835, -0.026792265, -0.014784298, 0.00879399, 0.00480729, 0.03153801, 0.022333726, -0.014456062, -0.0012975581, 0.020241221, -0.008923917, 0.0060655284, -0.015810035, 0.0077203847, 0.034738313, 0.042479213, -0.0074605313, -4.624367E-4, -0.020172838, 0.0030908892, 0.0051150112, 0.0038567733, 0.0031079848, -0.0069168904, 0.0021762731, 0.019489015, -0.01695886, 0.016972538, 0.0070365597, 0.0011291661, 0.011830173, -0.00981289, -0.009853919, -8.915369E-4, 0.011625025, 0.0583166, 0.0019283866, 0.0075289137, 0.038157437, 0.013512383, -0.013840619, -0.008137518, -8.099053E-4, 0.024645055, -0.019010337, 0.009395756, -0.0044961497, -3.5879447E-4, -0.014825327, -0.008438401, -0.005600527, 0.0065134335, -0.0027694914, -0.008828182, 0.002208755, -0.010742892, -0.033480074, -0.016151948, -0.004229458, -0.029924184, -0.025451967, -0.0036960745, 0.007863988, -0.041412447, 0.0032532976, -0.033999782, 0.015016798, 0.013361941, -0.0014044057, -0.017122978, -0.008328989, 0.019393278, -0.026094764, 0.0062604183, 0.022443138, 0.016151948, -0.026751235, 0.007617811, 0.0033353567, -0.022579903, 0.018080335, 0.0037439421, -0.0074878843, -0.026600795, 8.864082E-4, -0.013074735, 0.0025746012, -0.007788767, 0.006089462, 0.00680064, 0.0034088679, -0.0119601, 0.013129441, 0.018805189, 0.0036140154, 0.0104351705, -0.0034738313, -0.021048134, 0.027968444, -0.003959347, -0.007966562, 7.821249E-4, -0.024139024, -0.0023147478, 0.0045132455, -0.0031182421, -0.0046123997, -0.0037507804, -0.02934977, -0.018066658, -0.022114903, 0.018080335, -0.020295927, 0.015810035, 0.01613827, -0.012780691, -0.015960477, 0.025055349, -0.0062946095, -0.013197823, -0.0024446745, -0.018791512, -0.01676739, -0.026874324, -0.0017069983, 0.031127715, 0.016275035, -0.014483415, -0.0037815524, -0.004636334, -0.049344815, -0.005904829, -0.01836754, 0.017246068, 0.0018309415, 0.010578774, -0.004564532, 0.017697392, 0.005562917, 0.03290566, 0.004048244, 0.011837011, 0.006465566, 0.0070297215, 6.021934E-4, 0.0059390203, -0.05601895, -0.010961715, 0.029240359, 0.019065043, -1.1138869E-5, 0.010852303, -0.01360128, -0.0056552333, 5.748404E-4, -0.007645164, 0.02000872, 0.008328989, -0.0077477377, -0.04507775, 0.0012163538, -0.015686946, 0.0033285185, 9.291473E-4, -0.007323766, -0.02236108, -0.011577158, 0.012377233, -0.013567089, -0.0013932935, -0.009484653, -0.0182171, 0.037555672, -0.003306294, -0.010223185, 0.033480074, 0.018695777, -0.0074878843, -0.007446855, 0.024275789, -0.0039867, -0.0062877713, 0.0216499, -0.03263213, -0.007228031, -0.009840243, 0.022155931, 0.0015223655, 0.011618188, -0.012288336, -0.019639455, -0.017505921, 0.032495365, 0.022620933, -0.03744626, -0.021335341, 0.024371525, 0.013307235, 0.019885633, 0.005686005, -0.005125269, -0.022716668, 0.0057407115, -0.01348503, -0.02419373, -0.014045767, 0.017793128, 0.0031507239, 0.011248922, -0.0015958768, 0.18742277, -0.004424348, 0.0025147665, 0.03451949, 0.019475337, -0.008103327, 0.028583886, 0.008937594, 0.008848696, -0.003935413, 0.002024122, 0.02528785, -0.00500218, 0.0017027244, 0.026559765, -0.0010257376, -0.05093129, -0.028173592, 0.007754576, -1.437101E-4, -0.0015257846, 0.02110284, -0.017013567, -0.034492135, 0.02076093, 0.0014727882, -0.016931508, -0.003740523, 0.008725608, 0.006930567, -0.00918377, 2.5670151E-5, 0.0011813077, 0.0057988362, 0.002552377, -4.350837E-4, -0.004520084, -0.0056107845, 0.017834157, 0.031674776, 0.022251667, 0.0028464217, 0.011153187, -0.025219468, 0.0049201213, 2.523742E-4, -0.011631864, 0.0038157438, -0.01962578, -4.6842016E-4, -0.012979, 0.021280635, 0.0044893115, 0.023906523, 1.461676E-4, -0.026546089, 0.013867972, 0.0054535046, -0.0042807446, -0.006007403, -0.026669176, 0.02669653, 0.0058637997, 0.03153801, -0.0107702445, 0.018982984, -0.022142256, -0.048360106, 0.018244453, 0.0052346806, -0.023974907, -0.023701375, -0.017341804, 0.0016659688, -0.033370662, -0.026477706, 0.012924293, 0.008739284, 0.014278267, 0.022525197, 0.013813266, -0.017218715, 0.013238853, 0.003525118, -0.002829326, -0.040509798, 0.019174455, -0.006256999, 0.008260607, -0.005029533, -0.0015052699, 0.0043286127, 0.003494346, 0.016206654, 0.012541352, 9.16753E-5, -0.020815635, 0.019106071, -0.030690068, 0.0044346056, -0.032221835, 0.04800452, -0.011201054, 0.017218715, -0.022525197, 0.0068929563, -0.013307235, 0.031182421, -0.0063390583, -0.03834891, 0.007050236, -0.025698146, -0.002364325, -0.01645283, 0.0026993994, -0.006280933, -0.008103327, 0.0013856005, 0.003959347, -0.0026737559, 0.027845357, -0.014291943, 0.03244066, -0.02158152, 0.02446726, -0.026450353, -0.030471245, 0.01223363, -0.017109303, -0.039032735, 0.0154407695, 0.0094299475, 0.02896683, -0.01567327, -0.020419016, -0.0075220754, -5.034662E-4, -0.004957732, 0.024549318, 0.009245315, 0.0047149737, 0.013129441, 0.014674885, 0.013033706, 0.039224204, -0.04026362, 0.019215483, -0.01098223, -0.01118054, -0.029732713, -0.020801958, 0.0020172838, 0.016835773, 0.0041337223, 0.009778698, 0.0028823225, -0.01613827, -0.031948306, -0.027503444, 0.006629684, -0.023619317, -0.019885633, 0.0159468, -0.014565473, -0.017724745, -0.010852303, -0.1740745, 0.0026002447, 0.02255255, -2.8293263E-4, -0.0010206089, 0.0022326887, 0.032823604, 0.0016805001, -0.028173592, 0.009176932, 0.031784188, 0.004697878, -0.037008613, -0.023195345, 0.018736806, -0.022757698, -0.018381217, 0.0046294956, 0.0341639, 0.0239202, 0.0025985353, -0.018764159, 0.010462523, -8.2571874E-4, -7.3425716E-4, 0.0131704705, 0.00824693, 0.0378292, 0.0012334494, 0.010141126, 0.0054706004, -0.044421274, 0.0291583, -0.011987453, 0.011789144, -0.020145485, -0.012979, 0.013129441, -0.017724745, 0.03326125, -0.005456924, 0.009963331, 0.0011872912, -0.0029712198, 0.016192976, 0.028009474, -0.008752961, -0.0033404853, 0.0035353755, -0.004879092, 0.03153801, 0.0018275224, 0.008876049, -0.018025627, 0.016835773, -0.0031028562, -0.0018326511, 0.004803871, 0.036516257, -0.014524444, -0.022306373, -0.013662824, 0.019174455, -0.007070751, -2.057886E-4, -0.017683716, 6.898085E-4, 0.013840619, -0.023537258, -0.011693409, -0.02044637, 0.008274283, 0.006964758, 0.001965997, 0.03482037, 0.013806428, -0.03583243, -0.011125834, 0.020172838, -0.001962578, -0.016015183, 0.04310833, -0.004178171, 0.014401356, -0.018654747, -0.008082812, -0.022443138, -0.0039969576, -8.975204E-4, -0.006964758, -0.016712684, -0.014428709, 8.42387E-4, 0.0035182799, 0.00879399, 0.0012120799, 0.002075409, 0.01152929, -0.013963708, 0.0017300773, 0.0015565568, -0.015345034, -0.04685569, 0.0053748647, 0.040673915, 0.009060682, -0.0019916405, 0.027845357, 0.008185386, 0.019338572, -0.017205039, 0.030225066, 0.0023061999, 0.026669176, -0.0033678384, -0.0036345301, -0.02009078, -0.036844492, 0.017560627, 0.018271806, 0.028447121, -0.015098857, -0.0025027997, 0.024658732, 0.0060757855, -0.021403724, -0.08052724, -0.022949168, 0.022525197, 0.0341639, -0.028310357, -0.009840243, -0.012527674, 0.02560241, 0.0015121081, 0.042780094, -0.016028859, -0.024262113, -5.2312616E-4, 0.025383586, 0.00977186, 0.013676501, 0.025000643, -0.01508518, -0.03517596, 0.017068272, -0.024371525, -0.014237237, -0.026081087, 0.0039456706, -0.044995688, 0.0059629544, -0.018832542, 0.019106071, 0.016986214, -0.0059663737, 0.0073784725, -0.025739174, 2.332284E-6, -0.0011881461, -0.01489371, -0.019735191, -0.004916702, -0.028365063, 0.0070228833, -0.04455804, 4.1910997E-5, 0.008185386, -8.526444E-4, -0.034492135, -0.023605641, -0.019119749, -0.0078092823, 0.028419768, 0.008199062, -0.012527674, -0.0013120893, -0.021663578, -0.011269437, -0.016343419, -2.6776025E-4, -5.9620995E-4, -0.004756003, 0.0030549883, -0.022921816, -0.0022873948, 0.023865495, 0.0062501607, -0.015044151, 0.020665193, 0.018832542, -0.010188993, -4.0281568E-5, 0.008356342, 0.037856556, -0.006492919, -0.0050500478, 3.066528E-4, 0.0032156873, 0.030717421, -0.02591697, 0.006106558, -0.011467746, -0.01184385, 0.02623153, -0.0039730235, -0.023455199, -0.015057827, 0.01223363, -0.042123623, 0.014921063, 0.016288713, 0.012007968, 5.756952E-4, 0.01512621, -0.05541718, 0.04253392, 0.012582381, 0.06280249, -0.008171709, -0.0012770433, -0.009648771, 0.009935978, -0.002877194, -0.019092396, 0.0028618078, -0.04365539, -0.011748115, -0.08703725, 0.033589486, 0.004564532, -0.01767004, -0.0332886, 0.001813846, 0.015003121, 0.016069889, -9.1974466E-4, 0.005491115, -0.008650387, 0.0018241033, -0.017300773, -0.009026491, -0.018230775, 0.0033507426, 0.031592716, -0.007255384, 0.0025438291, 0.022634609, 0.002036089, -0.0049098637, -0.02583491, 0.034957137, -0.020487398, 0.008623034, -0.008732446, 0.0059903073, 0.0024634798, -0.002935319, 0.028748006, -0.009347889, -0.0014719334, 0.049864523, 0.008308474, -0.013026867, -0.0046910397, -0.0012137895, -0.008629872, -0.04264333, -0.028310357, -0.008424724, -1.9008199E-4, -0.010715539, -0.0035080225, 0.023974907, 0.018271806, 0.006667294, -0.008869211, 0.039771266, 0.008848696, -0.0016112628, 0.007077589, -0.046582162, 8.406774E-4, -0.011016422, -5.551805E-4, 0.004916702, -0.0012095155, 0.004913283, 0.042397153, -0.003455026, -0.0010265923, -0.040044796, -0.0067869634, -0.0114403935, -0.02934977, 0.004608981, -0.0018856475, -0.0241527, -0.026559765, -0.0054740193, 0.014428709, 0.032221835, -0.017929893, -0.014004737, 0.0034567355, 0.014114149, -0.023441523, 0.019666808, 0.004212362, 0.0063800877, -0.0010231732, 0.01332775, 0.017806804, -0.01364231, -0.013266206, 0.016439155, -0.013703854, 0.013895325, -0.030033596, 0.020925047, -0.011064289, -0.013662824, 0.019748867, 0.022292696, -0.0010094967, -0.0094299475, 0.025657116, -0.0011009583, -0.009436785, 0.007419502, 0.010072743, -0.02122593, 0.01113951, 0.010729215, -0.0109001715, -0.01981725, -0.0039114794, 0.009778698, 0.0017693973, -0.015741652, 0.023154316, 0.022661962, -0.024672408, 0.0015121081, -0.0063014477, -7.7956053E-4, -0.033398014, 0.031100363, 0.008417887, 0.021198576, 0.011556643, 0.007822959, 0.02728462, -0.025027996, 0.011994291, 0.009026491, 0.014360326, -0.01391584, -0.005361188, -0.007918694, -0.015317681, -0.012281498, -0.02063784, 0.0036926554, 0.0042089433, -0.0059663737, 0.021690931, 0.12100968, 0.009238476, -0.0012009677, -0.0029250616, -0.018777836, 0.024015935, 0.009826566, -0.023728728, 0.0028549696, -0.04089274, -8.043492E-4, 0.004284164, -0.019078718, 0.0122678215, -0.038677145, 0.015851066, 0.018668424, 0.024713438, -0.011303628, -0.00508082, 0.01762901, -0.024248436, 0.016192976, -0.0025540865, -0.008616196, -0.006581816, 0.04983717, 0.031319186, -0.01567327, -0.027653884, 0.009156417, 0.018846218, -0.03216713, -0.016562242, 0.0016582757, -0.023167992, -0.0053304164, -0.019762544, 0.03525802, -0.017656364, 0.012131057, 0.023906523, -0.011590835, -0.0069408244, 0.02242946, -0.029322417, -0.010052228, -0.033315957, -0.053146884 ], - "id" : "102e1741-7bb8-4532-a2b5-bac94339dd08", - "metadata" : { - "name" : "Voltex+ Ultra Lowstep" - }, - "text" : "- Grips: Voltex Satellite Elite, alloy lock-on\n- Stem: Voltex alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length (XS, S), 105mm length (M, L)\n- Headset: VP sealed cartridge, 1-1/8'', threaded\n- Brake: Shimano MT520 hydraulic disc\n- Brake rotor: Shimano RT56, 6-bolt, 180mm (XS, S, M, L), 160mm (XS, S, M, L)\n\nAccessories\n- Battery: Voltex PowerTube 600Wh\n- Charger: Voltex compact 2A, 100-240V\n- Computer: Voltex Control Panel\n- Motor: Voltex Drive Pro, 75Nm, 30mph\n- Light: Voltex Solo for e-bike, taillight (XS, S, M, L), Voltex MR8, 180 lumen, 60 lux, LED, headlight (XS, S, M, L)\n- Kickstand: Adjustable length rear mount alloy kickstand\n- Cargo rack: Voltex-compatible alloy rear rack, maximum load 25 kg / 55 lbs\n- Fender: Voltex wide (XS, S, M, L), Voltex plastic (XS, S, M, L)\n\nWeight\n- Weight: M - 20.50 kg / 45.19 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 330 pounds (150 kg).\n\n## Sizing\n\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| XS | 147 - 155 cm 4'10\" - 5'1\" | 69 - 73 cm 27\" - 29\" |\n| S | 155 - 165 cm 5'1\" - 5'5\" | 72 - 78 cm 28\" - 31\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\n\nSizing table\n\n| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm |\n|---------------------------|-------|-------|-------|-------|\n| Frame size letter | XS | S | M | L |\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 38.0 | 43.0 | 48.0 | 53.0 |\n| B — Seat tube angle | 70.5° | 70.5° | 70.5° | 70.5° |\n| C — Head tube length | 15.0 | 15.0 | 17.0 | 19.0 |\n| D — Head angle | 69.2° | 69.2° | 69.2° | 69.2° |\n| E — Effective top tube | 57.2 | 57.7 | 58.8 | 60.0 |\n| F — Bottom bracket height | 30.3 | 30.3 | 30.3 | 30.3 |" - }, - "5f4e02a5-bbfd-4224-a782-e64a1d98d0e6" : { - "embedding" : [ 0.030103376, 0.010018304, -0.018236497, -0.001992237, -0.016921034, 0.016007131, 0.0014539349, -0.030380316, 0.0017931864, -0.022875242, -0.0013500825, -0.0031623084, -0.03558679, -0.0023522591, -0.015051688, 0.016353305, 0.012884633, -0.01942734, 0.014345491, -0.008045106, 0.0046941326, -0.007193516, 0.005826125, -0.0054314854, -0.007747396, -0.035614483, 0.036971487, -0.007872019, 0.0046248976, -0.013639295, 0.026669322, 0.023290653, -0.030878808, -0.026406229, -0.013528518, 0.0061930707, 0.032678917, 0.0012609424, 0.03774692, 0.0022674461, 0.02617083, -6.196532E-4, -0.013902388, -0.0039775507, -0.025547713, 0.022127505, 0.023387581, 0.0039221626, 0.008938238, 0.012566152, -0.012399988, 0.0304634, 0.009942145, 0.005068002, 7.1355316E-4, -0.007837402, 0.0104891015, 0.0083289705, 0.035836034, 0.017045656, 0.003113844, 0.013950852, -0.04328572, 0.0029078699, -0.042067185, -0.019551963, 0.007421992, -0.008315123, -0.023359887, 0.018070335, 0.017225668, 0.009976763, 0.022141352, 0.0050056903, 0.018859614, -0.010627572, -0.002227636, -0.012545382, 5.5085093E-4, -0.009935222, 0.024661506, -3.7343625E-4, -0.012406912, 0.022321362, 0.02528462, -0.001653851, 0.0034409794, 0.0036867636, -0.017059503, 0.0010774697, -9.3207613E-4, -0.0048222174, -0.008017412, 0.012441529, 0.0074496856, -0.004621436, -0.007491227, 0.0048360643, -0.011853032, -0.010329861, -0.0055284146, 0.008072801, -0.021698248, -0.0096098175, -0.031460382, -0.022653691, -0.018485744, 0.0018191496, 0.022542914, -0.014144709, -0.008225118, 0.004008706, -0.010136004, -0.008834385, 0.034451336, -0.021158215, 0.044338092, 0.0132377315, 0.02648931, -0.0051545454, 0.011555321, 0.01794571, 0.015564027, -0.043562658, 0.0017308749, 0.008903621, -0.013750071, -0.015010147, -0.010336785, 0.0088690035, -0.0040052445, -0.013666988, -0.008855156, 0.009353648, -0.018347275, 0.010918359, 0.0093467245, 0.001066219, -0.029161781, -0.023553746, 0.0051406985, 0.010115233, -0.006421546, -8.572158E-4, -0.003515407, -0.0075881556, -0.0177657, 0.0032903932, 0.00555957, -0.036749937, 1.5610328E-4, -0.004098712, 0.03406362, 0.024675352, 0.0034323249, -0.008751304, -0.008197424, 0.038494658, -0.022972172, -0.030380316, -0.032235816, -0.00927749, 0.008086648, -0.001550864, 0.028109409, 0.005410715, 0.019261176, -0.01794571, 0.014705514, -0.009644435, -0.010219085, 0.022390598, -0.002187826, 0.014774748, -0.014580891, 0.030768033, 0.012496917, -0.018638061, -0.006584248, 0.0027659382, 0.022002881, -0.002212058, 0.010994517, -0.0015517294, -0.023221418, 0.009381342, 0.015425557, -0.026226217, 0.02736167, -0.005788046, 0.00915979, 0.020479713, -0.008502058, 0.029909518, -0.59553176, -0.032651223, -0.014940912, -0.009769058, -0.0067746444, 0.0035932963, -0.0062069176, 0.018374968, -0.0025582332, -0.009921375, -0.019911986, 0.028580207, -0.011887649, -0.008709762, -0.019579656, -0.024010697, 0.007685085, 0.0027330515, 0.02288909, -0.023013713, -0.040599402, -0.0086682215, -0.027763234, 0.011271457, 0.034395948, -0.020521253, 0.0053484035, -0.0072558275, -0.0013717184, 0.022944478, 3.661882E-5, 0.039851665, -0.015065535, -0.003250583, 0.03517138, -0.044338092, 0.0036902253, 0.026600085, 0.016934881, 0.020133536, -0.03608528, -0.00597498, -0.008972855, -0.01984275, -0.0037871543, 0.013383125, 0.023138335, -0.029411027, -0.0036729167, -0.03248506, 0.018347275, 0.025533866, 0.015204005, 0.008952085, 0.006598095, -0.018942695, 0.010156774, -0.0067365654, 0.010004457, -0.004427578, -0.018901154, -0.007352757, -0.012379217, -0.008024336, -0.003252314, 0.019676587, -0.0599852, -0.026378533, 0.017156431, -0.020895122, 0.008121265, 0.016533317, -0.0021376305, 0.008695915, 0.028663289, 0.030906502, 0.025630796, 0.008294352, 0.010932206, 0.025852347, 0.009215178, 0.0127738565, 0.006629251, -0.020036608, 0.032872777, -0.007982795, -0.0015586528, 0.0022639844, 0.015314781, 0.026295451, 0.026323145, 0.027610917, 0.00913902, 0.0016304841, 0.006951194, 0.032180425, -0.009665205, 0.023290653, 0.013473131, -0.036029894, -0.013930081, -0.0020130074, 0.026143136, 0.008252812, 0.021005899, 0.0010021765, 0.0012003618, -0.035448316, 0.019621197, -0.033980537, -0.0088690035, 0.0027849777, -0.03627914, 0.008135112, -0.003918701, -0.01998122, 0.021282839, 0.008176653, 0.017682618, -0.029134087, 0.010502949, -0.0050956956, 0.018194957, 0.006996196, -0.03483905, 0.003998321, 0.013210038, 0.010869894, -0.015245547, -0.020728959, 0.0066811773, 0.010302167, 0.04010091, -0.0022484064, 0.022681385, 0.018513437, 0.024772283, -0.016076365, 0.006722718, -0.022667538, -0.04184563, -0.010904512, -0.002836904, -0.021518236, -0.0014703783, -0.021075133, -3.189137E-4, 0.009429807, -6.542707E-4, -0.016491776, -0.0028351732, -0.008813615, -0.012856939, 0.0155224865, 0.014387032, -0.016408695, -0.024259944, -0.02538155, -0.0058434336, -0.036666855, 0.0058607426, 0.0030948042, -0.019482728, 0.0023851455, -0.0022899476, -0.0069442703, 0.022487527, 0.019593503, -0.008384358, -0.042150266, -0.0076020025, -0.008723609, -0.02617083, 0.014954759, -0.014580891, 0.0052341656, -0.017294902, -0.0032575065, 0.005383021, -0.013265425, 9.2688354E-4, 0.01248307, -0.049821503, 0.0055180294, 0.02316603, 0.014089322, 0.028967923, -0.0075881556, -0.020867428, 0.0038667745, -0.014033934, 0.021615166, -0.005189163, -6.7590666E-4, 0.013120032, 0.010399097, 0.020632029, 0.006154991, 0.013570059, 3.829561E-4, 0.038633127, 0.023567593, 0.009485194, 0.0011501664, 0.020964356, -0.036306832, 0.017890323, 0.008204347, 0.012663081, 0.031543463, 0.029798742, -0.033315882, -0.01942734, -0.009997534, -0.0035205996, -7.5206516E-4, 0.018970389, 0.03976858, -0.012427682, -0.0013656603, 0.008827462, 0.014248562, 0.017336443, -0.003113844, -0.017045656, 0.014428574, 0.029521802, 0.03946395, -0.014871677, -0.019925833, -0.007685085, 0.009235948, 0.020410476, -0.008654375, 0.009679053, 0.008474364, 0.011299151, -0.0024976525, 0.040405545, 0.001976659, 0.03558679, 0.046359755, 0.04572279, -0.018721143, 0.019039623, 0.0036452226, 0.022556761, 0.015453251, 0.056772698, 0.021587472, -0.0014807635, -0.00271055, 0.005936901, 0.014276256, 0.017419524, -0.006546169, -0.0054591796, 0.01739183, -0.017571842, 0.011659173, 0.017087197, 0.028067868, 0.018402662, 0.012116125, 0.020701263, -0.041513305, -0.021185908, -0.008176653, -0.008647451, -0.0080035655, -0.008848232, -0.013009256, -0.009187484, -0.011250687, -0.00777509, -0.007006582, 0.0108906645, 0.003527523, 0.013978546, 0.024606118, -0.022639845, -0.029798742, 0.008675145, 0.015716344, -0.011936113, 0.0061723, 0.0047149034, 0.007934331, 0.0033059712, 0.043867294, -0.0019714665, 0.018707296, -0.0072419806, -0.0053380183, -0.020618182, -0.0062899995, -0.0051164664, -0.015494792, 0.01564711, 0.0047114417, -0.011576092, -0.0064007756, -0.0093467245, -0.016159449, 0.033094328, -0.020452019, 0.004638745, -0.020465866, 0.0016157717, 0.0024388027, -0.019648893, -0.038051553, -0.004167947, -0.009644435, -7.503343E-4, -0.0036729167, 3.4877128E-4, -0.01794571, 0.022722926, -0.021490542, -0.016076365, -0.0062899995, -0.035365235, -0.010599878, 0.024093779, 0.034645192, -0.0037040722, 0.015882509, -0.006573863, 6.036426E-4, -0.010634496, -0.0025132303, 0.0034652115, 0.033288185, -0.0027209353, 0.010329861, -0.016934881, -0.016907185, -0.010281397, -0.011763026, 0.010350632, -0.03719304, 0.019731974, -0.019870443, -0.0094090365, -0.014483961, -0.0060546002, 0.030657256, 0.022944478, 0.0019818519, -0.0021255144, -0.0012496917, 0.021061286, -0.00943673, -0.0049433787, 0.0037248428, 0.02565849, -0.0032142347, -0.016851798, 0.01960735, 0.0030982662, -0.010579107, 0.017571842, 0.0104891015, 0.013937005, 0.020050455, 0.011853032, 0.021075133, 0.018305734, 0.007788937, 0.016131755, 0.014110092, 0.016699482, -0.002378222, 0.022307515, 0.0064630867, -0.021850565, -0.004756444, 0.0054211, 0.027126271, -0.008252812, -0.019745821, -0.018513437, -0.03262353, 0.011527627, -0.033952843, 0.02902331, 0.0025011143, -0.011022211, -0.0062899995, -0.022072118, 0.013590829, 7.940389E-4, -0.0128361685, -0.030075682, -0.008578216, -0.021795178, 0.0346175, 0.0049745347, 0.007581232, 0.03312202, -0.012697699, 0.019870443, 0.01012908, -0.012877709, 0.026904719, -0.009353648, -0.023235265, -0.0050818487, 0.010876818, 0.03976858, 0.0029961446, 0.009000549, -0.01135454, 0.02565849, -0.013493901, -0.005009152, -0.018305734, -0.007110434, -0.007858172, 0.0152317, 0.012393065, -0.0037767692, -0.01984275, 0.0011908419, -0.021033593, 0.004666439, 0.021518236, 0.012670005, 0.004081403, 0.023387581, -0.008183576, 7.628831E-4, -0.020701263, -0.016394848, -0.01056526, 0.00540033, 0.015744038, -0.037165347, 0.0027382441, 0.027070884, -0.0068577263, 0.019164247, -0.011347616, 0.0041021737, -0.051095426, 0.031681936, -0.002142823, -0.012614616, 0.018665755, 0.008557445, 0.009845217, -0.0069788876, 0.012275365, 0.036888406, 0.01647793, 0.018624214, 0.0019074242, -0.03317741, -0.021282839, -0.009824446, 0.008730533, 0.015051688, -0.009845217, -0.01610406, 0.018638061, 0.010911436, 0.009720594, -0.031349607, -0.02233521, -0.0132377315, 0.0027763234, -0.017530302, 0.014290104, -8.7668817E-4, 0.008072801, -0.012316906, -0.030380316, -0.034866743, -0.034395948, -0.016007131, -0.03317741, 0.003331934, 0.018305734, -0.0027849777, -0.018707296, 0.00631077, 0.0041714087, -0.004607589, -0.0059576714, -0.016741022, -0.0015136501, -0.028206337, 0.018361121, 0.019510422, 0.0064527015, -0.031958874, -0.033288185, -0.02985413, 0.021670554, -0.022321362, -0.006435393, -0.02316603, -0.05328325, 0.0015577874, -0.028718676, -0.003641761, -0.011880726, -0.01675487, -0.0048360643, 0.02423225, -0.010433714, 0.005036846, 0.009332878, -0.006722718, -0.01859652, 0.044338092, -0.0022518684, 0.017447218, 0.010080615, -0.028206337, -0.013410819, -0.032125037, 0.0022172509, -0.03234659, -0.0010341977, 0.014373185, -0.026281605, 0.01052372, -0.0016547164, -0.0043964223, -0.009055938, 0.0071035107, -0.023927614, -0.0042683375, -0.020645875, -0.017447218, -0.029715661, -0.01762723, 0.014774748, -4.6084545E-4, 0.015065535, -0.024010697, -0.004756444, 0.029411027, 0.0051303133, 0.026877025, 0.00941596, 0.022542914, 0.012282289, 0.0039048537, -0.032180425, -0.004666439, 0.0036140669, 0.009125172, 0.013438513, 0.025132304, -0.011285304, -0.015245547, 0.003032493, -0.0039948593, -0.011666097, -0.02759707, 0.022819854, 0.016076365, 0.023415275, -0.0015127846, 0.007401221, -0.013964699, 0.023235265, -0.0031796172, 0.0026534311, 0.0051822397, -0.022085965, -0.0027417059, 0.025395397, -0.008204347, -6.901864E-4, 0.0057949694, 0.008446669, 0.005192625, -0.005258398, -0.028829452, -0.008979779, 5.0325185E-4, 0.0507631, -0.027195506, 0.0040848646, 0.034755968, 0.019025777, -0.023332193, -0.0059576714, 0.0061757616, 0.018790377, -0.0152593935, -0.02261215, -0.018818073, -0.010516796, 0.0011960346, -0.0042406437, -0.018402662, -0.0024889982, 0.0059542097, -0.004289108, 0.014497808, -0.017696464, -0.025506172, -0.031820405, -0.012614616, -0.026613932, -0.03677763, -0.0013673912, -0.0114930095, -0.042067185, 0.0040606325, -0.022806007, 0.0037283045, 0.034257475, 0.009769058, -0.014068551, 0.009595971, 0.028414043, -0.019731974, 0.010537567, 0.028635595, 0.03026954, -0.013417742, -0.0080658775, -0.003331934, -0.0074773794, 0.0036279138, -5.543127E-4, -0.029632578, -0.030657256, 0.0021930186, 2.944651E-4, 0.010745271, -0.017447218, 0.008162806, 0.009665205, 0.01024678, -0.001784532, -0.011361463, 0.026129289, 0.004192179, 0.012413835, -0.003762922, -0.018942695, 0.041679468, 0.0040710177, -0.016394848, -0.0029442182, -0.023830686, -0.009769058, 0.0067850295, -3.163174E-4, -0.0191504, -0.008799768, -0.036196057, -0.0020839735, -0.019164247, 0.013445436, -0.011679944, 3.067976E-4, 0.016159449, -0.0041644853, 0.0010264089, 0.03074034, -0.006089218, -0.03074034, 0.017087197, -0.0059992126, -0.017087197, -0.027818622, 0.011271457, 0.042565677, 0.017599536, -0.016713329, 0.0025945816, -0.0016867376, -0.04342419, -0.016394848, 3.621856E-4, 0.033149716, 0.0042233346, 0.0048499117, -0.013770841, 0.007165822, 0.010343708, 0.037137654, 7.7759556E-4, -0.0029701814, -0.0037975395, -2.7975265E-4, 0.011271457, 0.0029909518, -0.04771676, -0.015494792, 0.037719227, 0.026932413, 0.00567727, 0.012420759, 7.460071E-4, -0.0026049668, 0.0017879938, -0.0033163563, 0.026323145, 0.023332193, -0.010433714, -0.028054021, -0.0042960313, -0.00983137, 0.010142927, -0.013576983, -0.010766042, -0.0057153488, -0.013334661, 0.004777215, -0.015854815, 0.0025132303, -0.0134523595, -0.019815056, 0.028580207, -0.0031363454, -0.0069131143, 0.042898003, 0.029134087, -0.022390598, -0.01111914, 0.017294902, 0.0021757097, -0.010627572, 0.014089322, -0.02985413, -0.008391282, -0.0034652115, 0.021795178, 0.005521491, 0.011126064, -0.017516455, -0.024107626, -0.014788595, 0.043673437, 0.01703181, -0.041956406, -0.025644643, 0.013369278, -0.01052372, 0.02506307, 0.0017265477, -0.014594737, -0.043451883, 0.021033593, -0.014802442, -0.025644643, -0.014373185, 0.03317741, 0.0052237804, 0.015494792, 0.012386141, 0.20061533, -0.006061524, -0.0062069176, 0.025215385, 0.0043271873, 0.0027140118, 0.017931864, 0.017101044, 0.0057741986, 0.0037733074, 0.010869894, 0.028552512, -0.017918017, 0.0010220816, 0.03774692, -0.016921034, -0.049184542, -0.007989719, 0.0011544935, -0.0031657703, -0.009402112, 0.016934881, -0.01620099, -0.028054021, 0.018859614, 0.004008706, -0.03054648, -0.019095013, -0.0030809573, 0.008592063, -0.014650125, 0.0017481836, -0.007664314, 0.01877653, -0.023401428, -0.0074843033, 0.002089166, -0.018748837, -0.0014902833, 0.031155748, 0.005455718, 0.0031294217, 0.023636827, -0.037026875, -0.0067054094, 0.0013405626, -0.011797643, -0.001537017, -0.008502058, -0.0043791137, -0.015176311, 0.0061965324, 0.012753086, 0.024204554, -0.019635046, -0.023553746, 0.005788046, 1.0087755E-4, -0.011859955, -0.006653483, -0.025146151, 0.021975188, 0.010468331, 0.01628407, -0.012427682, 0.026780097, -0.026960108, -0.04683055, 0.01248307, -0.006293461, -0.014262409, -0.0075743087, -0.010592954, -0.005054155, -0.032678917, -0.025713878, 0.03110036, 0.001855498, 0.027804775, 0.010502949, 0.0029788357, -0.010198315, 0.007830478, 0.01236537, -0.0039671655, -0.041125588, 0.019635046, -0.0011994963, 0.005549185, 0.0020147385, -0.0042025642, 6.241968E-5, 0.0029009464, 0.018194957, 0.018388815, -0.004912223, -0.040211685, 0.017294902, -0.039297786, -0.004527969, -0.023373734, 0.0461382, -0.024315331, -0.012358447, -0.036472995, -0.0046248976, -0.013133879, 0.020050455, 0.018014947, -0.035919115, 0.0048741437, -0.03517138, 0.001798379, -0.014470114, -0.0034080928, 0.009602894, -2.4102433E-4, -9.372688E-4, 0.006241535, -0.010253703, 0.030712644, -0.0114930095, 0.023387581, -0.01647793, 0.012538458, -0.0061065266, -0.010136004, 0.0036763784, -0.021698248, -0.0299926, 0.015217852, 0.013002332, 0.02528462, -0.0012116125, -0.015868662, -0.004912223, -0.016408695, -0.006653483, 0.02108898, 1.3987633E-4, 0.0060026743, 0.0053449417, 0.016187143, 0.010433714, 0.03810694, -0.01831958, 0.0207705, 0.0014461459, -0.019468881, -0.021532085, -0.023927614, -0.008439746, 0.009755211, -0.0020839735, -2.263119E-4, 0.011416851, -0.024066085, -0.022847548, -0.018333428, 0.0015023994, -0.019191941, -0.013576983, 4.7252886E-4, -0.011188376, -0.022695232, -0.025506172, -0.17569073, 5.15368E-4, 0.026613932, -0.012330753, -0.008197424, 0.018970389, 0.019635046, 0.007539691, -0.027223201, 0.008322046, 0.040211685, 0.006421546, -0.032789696, -0.027943244, 0.01220613, -0.007802784, -0.0013050797, 0.0036729167, 0.01877653, 0.018485744, 0.0042267963, -0.034672886, 0.022653691, 0.011915343, -0.01042679, 0.020424323, 0.0010142927, 0.045390464, 0.017239515, 0.022016728, -0.012725392, -0.042288736, 0.029272556, -3.7581622E-4, -0.0012834438, -0.013279272, -0.017696464, 0.0010783351, -0.012711545, 0.030657256, 0.00589536, -5.0757907E-4, 5.054155E-4, -0.0011112217, 0.029327944, 0.039353173, 4.8724128E-4, -0.0093467245, -0.0017395293, -0.019551963, 0.027417058, -0.023429124, 0.009132096, -0.005995751, -0.002423225, -0.006154991, -0.012185359, 0.018651908, 0.014442421, -0.01827804, -0.0177657, -0.02196134, 0.013895464, -0.014594737, -5.1666616E-4, -0.023193724, 0.008952085, 0.022681385, -0.01813957, -0.004482966, -0.01040602, 0.0049779965, -3.8511967E-4, 0.007962025, 0.03788539, 0.011769949, -0.032041956, 9.796752E-4, 0.021892106, -0.0086682215, 0.0029961446, 0.038743906, -0.014483961, -0.014567044, -0.025880042, -0.02427379, -0.026503157, -1.099376E-5, 0.008100495, -0.020465866, -0.011679944, -0.019538116, 0.006975426, -0.0015655764, -0.0025530404, 0.0051510837, -0.0024664968, 0.002797094, -0.008875927, 0.0074496856, -0.0066604065, -0.0032730845, -0.033011246, 0.022445986, 0.04342419, -0.0022328286, 0.004967611, 0.023207571, 0.0061099883, 0.011714562, -0.023387581, 0.02132438, 0.026309298, 0.024218401, -0.016657941, 0.0052791685, -0.03946395, -0.034091312, 0.00298749, 0.008855156, 0.026461616, -0.018471897, -0.019275023, 0.008259735, 0.0035119453, -0.021753635, -0.08324816, -0.017613383, 0.028081715, 0.042122573, -0.01703181, 0.016228683, -0.0080035655, 0.012012272, -0.0014037396, 0.039297786, -0.02534001, -0.026143136, -0.012649233, 0.034340557, 0.02556156, 0.0024439953, 0.016464083, -0.01859652, -0.021864412, 0.020285854, -0.011139911, -0.028095562, -0.01248307, 0.003404631, -0.020175079, -0.0018174186, -0.02288909, 0.024246097, 0.015619415, 0.0037006105, 0.008190501, -0.023983004, -0.008038183, 0.0207705, -0.01135454, -0.012379217, -0.002726128, -0.022182893, 0.0038356187, -0.037830003, 0.010066768, 0.01291925, 0.0029009464, -0.041457918, -0.020465866, -0.021241296, -0.017696464, 0.018084181, 0.0046595153, -0.006878497, -0.005576879, -0.008682068, -0.01125761, -0.012053813, 0.0034963673, -0.016616398, -0.0031848098, -0.0066119423, -0.02704319, 0.021019746, 0.007456609, 0.008626681, -0.0058780513, 0.010357556, 0.020147383, -0.01109837, -0.015217852, 0.01610406, 0.026987802, 0.008460517, -0.010260627, 0.008910544, 0.0028749832, 0.032872777, -0.030352622, -5.1304214E-5, -0.010911436, -0.019122707, 0.01513477, 0.0027053575, -0.031681936, -0.018859614, 0.025436938, -0.04550124, 0.027112424, 0.025353856, 0.0058053546, -9.2082546E-4, 0.015730191, -0.05560955, 0.029106393, 0.02334604, 0.06591172, -0.0033717444, 0.0135146715, -0.021282839, 0.01054449, 0.009222101, -0.010966823, -0.007872019, -0.042704146, 0.003832157, -0.084023595, 0.033897456, 0.0052653216, -0.017613383, -0.0032453905, 0.0047668293, 0.032983553, -1.0506951E-5, 0.00996984, 0.020784346, 9.684245E-4, 0.009706747, -0.014677819, -0.0052445508, -0.022972172, 0.0077820136, 0.026683168, -0.018056488, 0.026198523, 0.03281739, -0.0027174735, 0.006525398, -0.006019983, 0.035697564, -0.0074843033, 0.007331986, -0.010004457, 0.0067365654, 0.022182893, -0.0077958605, 0.039242394, -0.013763918, -0.001003042, 0.055304915, -0.0014452805, -0.013410819, 0.010461408, -0.0043098787, 7.018698E-4, -0.040682483, -0.028178643, -0.003267892, -0.0014773017, -0.01192919, -0.01040602, 0.013673912, 0.016865645, 0.0027694, 0.01901193, 0.010232933, 0.0017611652, 0.013210038, -9.104402E-4, -0.030020295, -0.007823555, -0.009637511, -0.0016590436, -4.6652488E-7, 0.006103065, -0.005826125, 0.060317528, -0.019039623, 0.0040606325, -0.025326163, -0.005961133, -0.013570059, -0.027666304, 0.013784688, 0.0031519232, -0.012323829, -0.052313965, -0.0061099883, -0.002797094, 0.019358106, -0.010835277, -0.010316014, 0.012732316, 0.0043618046, -0.02150439, 0.014539349, 0.009090555, 0.0010177544, 0.006321155, 0.009955993, 0.018527284, -6.6855043E-4, -0.014802442, 0.009796752, -0.004261414, 0.009519812, -0.027112424, 0.020188926, -0.0050160754, -0.004285646, 0.020188926, 0.03436825, -0.00456951, -0.0077958605, 0.043784212, -0.0052514747, -0.017890323, -0.002308987, -0.0074635325, -0.017544148, 0.010946053, 0.02132438, -0.0022778313, -0.006421546, 0.00943673, 0.009803675, 0.0151209235, -0.018125722, 0.026240064, 0.027846316, -0.01887346, 0.009305184, 0.010731424, -0.016671788, -0.031571157, 0.029660273, 0.013687759, 0.010745271, -0.0025513095, 0.023332193, 0.026558544, -0.011202223, 0.0147193605, -0.00387716, 0.013064644, -0.01794571, 0.017059503, -0.033897456, -0.009699823, -7.567169E-5, -0.024758434, 7.0143706E-4, 0.013410819, 6.3739467E-4, 0.016713329, 0.11631479, 0.010433714, 0.0010956438, 0.025118457, -0.023802992, 0.03821772, 0.019911986, -0.016976422, -0.010011381, -0.041125588, 6.4994354E-4, -0.013113108, -0.028635595, 0.0030117224, -0.027541682, 0.01827804, 0.020825887, 0.02085358, -0.0080035655, -0.008412052, 0.012136895, -0.013383125, 0.015619415, 0.0057395813, -0.008294352, 0.012552305, 0.03492213, 0.030020295, -0.008709762, -0.04217796, 0.006733103, 0.018679602, -0.050735407, -0.016048672, -0.0036902253, -0.014373185, -0.012441529, -0.011444545, 0.020895122, -0.019455034, 0.016824104, 0.0043133404, -0.018444203, -0.028067868, 0.016353305, -0.034534417, 0.006920038, -0.023373734, -0.05328325 ], - "id" : "5f4e02a5-bbfd-4224-a782-e64a1d98d0e6", - "metadata" : { - "name" : "Horizon+ Evo Lowstep" - }, - "text" : "- Size: L - Bontrager alloy, 31.8mm, comfort sweep, 660mm width\n- Grips: Bontrager Satellite Elite, alloy lock-on\n- Stem:\n - Size: XS, S - Bontrager alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 85mm length\n - Size: M, L - Bontrager alloy quill, 31.8mm clamp, adjustable rise, Blendr compatible, 105mm length\n- Headset: VP sealed cartridge, 1-1/8\", threaded\n- Brake: Shimano MT200 hydraulic disc\n- Brake rotor:\n - Size: XS, S, M, L - Shimano RT26, 6-bolt, 180mm\n - Size: XS, S, M, L - Shimano RT26, 6-bolt, 160mm\n\nAccessories\n- Battery: Bosch PowerTube 500Wh\n- Charger: Bosch compact 2A, 100-240V\n- Computer: Bosch Purion\n- Motor: Bosch Performance Line Sport, 65Nm, 28mph\n- Light:\n - Size: XS, S, M, L - Spanninga SOLO for e-bike, taillight\n - Size: XS, S, M, L - Herrmans MR8, 180 lumen, 60 lux, LED, headlight\n- Kickstand: Adjustable length rear mount alloy kickstand\n- Cargo rack: MIK-compatible alloy rear rack, maximum load 25 kg / 55 lbs\n- Fender:\n - Size: XS, S, M, L - SKS wide\n - Size: XS, S, M, L - SKS plastic\n\nWeight\n- Weight: M - 22.30 kg / 49.17 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| XS | 147 - 155 cm 4'10\" - 5'1\" | 69 - 73 cm 27\" - 29\" |\n| S | 155 - 165 cm 5'1\" - 5'5\" | 72 - 78 cm 28\" - 31\" |\n| M | 165 - 175 cm 5'5\" - 5'9\" | 77 - 83 cm 30\" - 33\" |\n| L | 175 - 186 cm 5'9\" - 6'1\" | 82 - 88 cm 32\" - 35\" |\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\nSizing table\n| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm |\n|---------------------------|-------|-------|-------|-------|\n| Frame size letter | XS | S | M | L |\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 |\n| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° |\n| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 |" - }, - "6ef9f791-0733-4cac-8231-9fbe9b204817" : { - "embedding" : [ 0.0032935645, 0.006532436, -0.018527368, -0.031147858, 0.002427017, -0.0037499121, 0.008176655, -0.031093163, 0.005886371, -0.05472069, 0.02833115, 5.930809E-4, -0.021986723, -0.0033619313, 0.010220818, -0.012805078, 0.014480062, -0.0084569575, -0.003020098, -0.012764058, 0.015437195, 0.011608661, -0.022984875, 0.0073767644, -0.019525522, -0.02865931, 0.027209938, -0.020441636, 0.011027545, -0.02427017, 0.011184788, 0.005636832, -0.011957332, 0.0064674877, -0.018828182, 0.029862564, 0.02513159, -0.002970532, 0.029862564, 0.021699583, 0.016011475, -2.8201254E-4, 0.021726929, 0.024461597, -0.02267039, 0.02767483, 0.018882876, -0.017761663, 8.810755E-4, -0.007773291, -0.015382502, 0.01910165, -0.011957332, 6.204276E-4, 0.005807749, -0.024024049, 0.018855529, 0.008703078, 0.04238734, -0.0036541987, 0.010576325, 0.007404111, -0.039023697, -0.006532436, -0.0072468678, -0.008785117, -0.009243174, -0.0010930122, -0.013680172, 0.010507958, 0.027196264, 0.030163378, 0.025569137, -0.009995208, 0.015874742, -0.018841855, -0.011301012, -0.0041020005, 0.014589448, 0.008128798, 0.032816004, 0.009783271, -0.008750934, -0.010747242, 0.021426115, 0.004744647, -0.014083535, -0.010131941, -0.019716948, 0.0068811057, -0.014794549, 0.010371225, -0.0022475545, 0.016093515, -0.0028611454, 0.03661719, -0.014630469, 0.02947971, -0.021330403, -0.004765157, 0.0054966807, -0.012141922, -0.008709914, -0.012121412, -0.03349967, -0.025364036, 0.0017142944, 0.016818203, 0.0017373682, -0.017843703, -0.017474523, 0.021699583, 0.024858123, -0.008245021, 0.014589448, -0.0066042207, 0.037164126, 0.02648525, -0.010699385, -0.01651739, 0.014384349, 0.04870442, 0.024912816, -0.017036976, 6.9434906E-4, -0.007028094, -0.0058761155, -0.0016160173, 0.018541042, -0.006542691, 0.005571884, 0.011417234, 0.014944955, 0.021836316, -0.026922796, 5.225778E-4, -0.033718444, 0.016298616, -0.038668193, -0.029096857, 0.004354957, 0.022232844, -0.02193203, -0.010043064, -0.023381403, -0.011711212, -0.0037738404, 0.019525522, -0.0069904923, 0.02205509, 0.019730622, -0.011690701, 0.014589448, 0.0439461, 0.0012400006, 0.013023851, -0.008422774, 0.012271818, -0.023395076, -0.027086876, 2.3244669E-4, 4.486563E-4, 0.020400615, -0.016175555, 0.016954936, 0.0077185975, 0.010535304, -0.013892109, -0.018459002, -0.013146912, -0.017898396, 0.04227795, -0.016025148, -8.2307066E-5, 0.018267576, 0.026663003, 0.009543988, 0.012100901, -0.0062316223, -0.006747791, 0.012729875, -0.012675182, 0.012620488, 0.036863312, 0.009208991, 0.013420379, 0.026129743, -0.007670741, 0.015587602, -0.004792504, 0.022519983, 0.016736163, 0.0120051885, -0.015122709, -0.6060022, -0.010391735, -0.012914465, -0.018267576, 0.0025637504, 0.006481161, -0.0054043857, 0.017747989, 0.014931282, 0.0025586227, -0.025678523, 0.02615709, -0.0065563642, -0.001495521, -0.02545975, -0.03087439, 0.015587602, -0.0032081062, 0.020892857, -0.006614476, -0.034374766, -0.01614821, -0.0015732881, 0.008067268, -0.0066965157, 0.013563949, 0.02476241, 9.54997E-5, -0.012846098, 0.009031238, -0.029589098, 0.04550486, 0.0036781272, -0.0049326555, 0.034538843, -0.037246164, 0.011759068, 0.01577903, 0.010166124, 0.014425368, -0.002447527, -0.013837415, -0.0029466038, -0.017884722, 0.0033123654, 0.020318575, 0.0074314578, -0.02057837, -0.010357551, -0.030546231, -0.006248714, -0.005612904, -0.007322071, 0.008012574, -0.008785117, -0.012230799, 0.0505093, -0.011465091, 0.0042865905, 0.0023928336, -0.0032713455, 0.013399868, -0.010049901, -0.024653023, -0.015478215, 0.016982282, -0.027319323, -0.03071031, 0.009407255, -0.025582809, 0.020168168, 0.019443482, 0.006665751, 0.034867004, 0.023873642, 0.033909872, 0.03434742, 0.004467762, 0.0063649374, 0.010241328, 0.045997098, 0.011007035, 0.008580018, -0.006238459, -0.0057838205, -0.019402463, -0.0017467686, -4.0549986E-4, 0.02361385, 0.019703276, 0.02677239, 0.025965663, -0.0013228952, -0.0021074028, 0.002722703, 0.01889655, -0.0033807321, -0.0024321445, 0.036343724, -0.019990416, 2.9889055E-4, -0.0020868927, 0.005807749, 0.008258695, 0.018171862, 0.005653924, 0.008853485, -0.028276457, 0.023627523, -0.027086876, -0.0074929874, -0.019238383, -0.020523677, -0.032323763, 0.014179248, -0.03128459, 0.02500853, 0.009297868, 0.014521082, -0.017515542, -0.0011784706, -0.010084084, 0.036070257, -0.012593142, -0.009202154, 0.008614201, 0.0068024844, 0.015491889, -0.017310442, -0.022260189, 0.041621633, 0.022902837, 0.03349967, -0.007445131, 0.016325962, 0.017529216, 0.008538998, -0.0029927513, 0.015218422, -0.041621633, -0.017406156, 0.007691251, -0.0068981973, -0.037000045, -0.032378457, -0.027606463, -0.018800836, 0.0037020554, -0.021084283, -7.251141E-4, -0.0015587602, -0.026553616, -0.0034969554, -0.014958628, 0.014056188, -0.013577621, -0.012094065, -0.029370323, -0.03620699, -0.017638601, 0.02685443, 0.0060777976, -0.016380655, -0.006317081, -0.027907277, 0.031831525, -0.009967862, 0.02956175, -0.014220268, -0.055814553, 0.006922126, -0.004262662, -0.012388041, 0.019211035, -0.028714003, 4.3348744E-4, -0.011157441, -0.019826336, 0.025856277, -0.011875291, -0.0034969554, 0.038558803, -0.021781623, 0.009605518, 0.03005399, 0.008634711, 0.016544735, 0.010788261, -0.02443425, 0.027907277, 0.007998901, -0.009038075, -0.014534756, 0.003389278, -0.010391735, -0.010227655, 0.006296571, 0.0018476094, 0.011335195, -0.005715454, 0.03746494, -0.016462695, 0.010104595, 0.0085048145, 0.02599301, -0.016284943, 0.011806925, 0.01672249, -0.0063649374, -0.0037977688, 0.021179996, -0.03229642, -0.025979336, 0.0042148056, 0.014958628, -0.01672249, 0.024735063, 0.028276457, -0.007711761, -0.004898472, 0.009810618, -0.002580842, 0.0039994507, -0.015177402, -0.0029141295, 0.039543286, 0.017980436, 0.019170016, 0.0048745438, -0.044629764, 0.007294724, 0.010282348, 0.023272017, -0.0031927237, 0.035113126, 0.030573577, 0.02931563, -0.0016869478, 0.044055484, -0.0118684545, 0.02697749, 0.02160387, 0.013769048, -0.015573929, 0.015943108, 0.009072258, 0.03899635, 5.30269E-4, 0.0125589585, 0.004344702, 0.0018459002, -0.014042515, 0.013064872, 0.0062008575, 0.025035877, 0.0030679544, 0.004987349, 0.012442735, -0.01746085, 0.0018698286, 0.009728578, 0.021713257, 0.02451629, -0.006429886, 0.014083535, -0.009653375, -0.02656729, 0.001060538, -0.013324665, -0.036480457, 7.469059E-4, 0.010268674, 0.009961025, -0.024461597, 0.032788657, -0.009796944, -0.0025740054, 0.036070257, 0.006771719, 0.036808617, -0.02029123, -0.02833115, 0.017365135, 0.040609807, -0.02390099, 0.005253979, 0.004443834, -0.0030645363, -0.016079841, 0.031311937, 0.012046209, 0.011827434, -0.004310519, 0.0136186415, -0.025733216, -0.0345115, 0.015273116, -0.017488195, 0.004341284, -0.016790856, -0.015751682, 0.006040196, -0.010261838, -0.024830777, -0.0019381952, -0.014767202, -0.0043891408, -0.016968608, 0.0042968458, -0.0047275554, 0.026840758, -0.02693647, -0.016995955, -0.007910024, -0.0033465486, 0.007650231, -0.014165575, -0.01733779, 0.0018988844, 0.005359947, -0.0071306443, -0.0043788855, -0.014985975, 3.4354255E-4, 0.050372567, 0.011321521, 0.004648934, 0.027155243, 0.008921851, -0.026143417, -0.0048677074, -0.0011511239, 0.010583161, 0.025801584, -0.031640097, 0.016038822, -0.016654123, -0.0020185262, 0.007978391, -0.010207145, 0.033909872, -0.0020510003, -0.0014903935, 0.010501121, -0.014466388, -0.019580215, -0.0032286162, 0.009673884, 0.021385096, -0.03541394, 0.023230996, 0.03546863, -2.8906285E-4, -0.0014297181, 0.011615498, 0.010631018, 0.010015718, 0.006289734, -0.025801584, 0.003818279, 0.01770697, -0.016189229, 0.015081689, -0.003828534, -4.3690577E-4, 0.02808503, 0.0014228814, 0.028686658, 0.027483404, -0.017269421, 0.008115124, 0.013434052, 0.008149308, -0.005479589, 0.0123743685, 0.012880282, -0.019662255, 0.001996307, -0.0032645087, 0.013365685, -9.7593426E-4, -0.029671136, 8.417647E-4, -0.024735063, -0.009728578, -0.014753529, 0.020195516, -0.010480612, -0.013372522, -7.7767094E-4, 0.015423522, -0.0010109722, -0.031147858, -0.018007781, -0.022656716, -0.008675731, -0.02742871, 0.018062476, -0.007568191, 0.010179798, 0.01865043, -0.045450166, 0.023627523, 0.020250209, 0.0036781272, -0.0118684545, -0.006217949, -0.02037327, 6.1700924E-4, -0.019375116, 0.018582063, -0.012805078, 0.015314136, 0.020701429, 0.013475072, 0.0067409542, 0.009742252, -0.010842955, -0.018459002, -0.0020458729, 0.032487843, 0.028878083, 0.004057562, -0.0051958673, 0.006822994, -0.0029842053, -0.0018476094, 0.011909475, 0.015642295, 0.002960277, -0.010494284, 0.0033909872, 0.004877962, -0.010692548, -0.008771445, 0.015396175, -0.0049087275, -0.0014288635, -0.030573577, -0.0056197406, 0.022697736, -0.006163256, 0.008976544, -0.0152320955, -0.0053941305, -0.058029633, 0.013263135, -0.0069187074, 0.003637107, 0.023928337, 0.020892857, -0.025979336, 0.011745395, 0.016968608, 0.03341763, 0.009167971, 0.0028098703, -0.004495109, -0.024119763, -0.032323763, -0.013728028, 9.443147E-4, -0.013358848, -0.0061017256, -0.016818203, 0.027168917, 0.013160585, 0.029260937, -0.018595736, -0.021125304, -0.022328556, -0.0048916354, -0.013064872, 0.044547725, -0.018582063, -0.008395428, -0.023996703, -0.02648525, -0.012381205, -0.011301012, -0.0073972745, -0.018595736, 0.014425368, 0.0134819085, 0.027250957, 0.010603671, 0.024981184, 0.030245418, -0.0046762805, 0.01725575, -0.009386744, -0.0017929161, -0.019730622, -0.0118684545, 0.025405057, -0.0039003189, -0.009639701, -0.020851836, -0.021521829, 0.020263882, -0.0046967906, -0.010535304, -0.024543636, -0.037902486, -0.0034285889, -0.0156012755, -0.012285491, -0.013516092, -0.03948859, -0.007417784, 0.037929833, -0.007923698, 0.026143417, 0.031175204, 0.007985228, -0.011512948, 0.02344977, -0.0071579907, 0.01984001, 0.016982282, -0.020181842, -0.010002045, -0.044410992, 0.02115265, -0.005510354, -0.003267927, 0.0034490987, -0.026512597, -0.010801935, 0.02279345, 0.0013604969, -0.036070257, 0.013324665, -7.5716095E-4, -0.011759068, -0.02476241, -0.03965267, -0.0402543, -0.021385096, 0.01856839, -0.011246318, 0.006864014, -0.012210288, 0.013133238, 0.021986723, -0.024242824, 0.026457904, 0.0030064245, 0.021166323, 0.016025148, -0.017583909, -0.03153071, -0.03817595, -0.0073425807, 0.0033277478, 0.024242824, 0.030190723, -0.0039960323, 0.0014459551, 0.024133436, 0.0029312212, -0.007034931, -0.011629172, -0.0025842604, 0.019443482, 0.01577903, -0.02221917, -0.020715103, -0.006317081, 0.041457552, 0.015068015, -0.009694395, 0.011553968, -0.0120051885, 0.018841855, 0.045368128, -0.009188482, 0.0062999893, 0.010056738, -5.648797E-4, 0.026334843, -0.032569885, -0.0071921744, -0.012654671, 0.01680453, 0.045887712, -6.033359E-4, 0.003965267, 0.02562383, -0.020988569, -0.0036610356, 5.9521734E-4, 0.018103495, 0.023148956, -0.012962322, -0.014097208, -0.03235111, -0.018800836, 0.0046557705, -0.017734315, -0.015191075, -0.01856839, 0.013536601, -0.0150953615, 1.9855712E-5, -0.0036200155, -0.017105343, -0.009817455, -0.008080941, -0.007923698, -0.015437195, -0.0021347494, 0.018226556, -0.02779789, -0.029096857, -0.02004511, -0.011089074, -0.010706222, 0.020181842, -0.005746219, 0.003194433, 0.02324467, -0.042332646, 0.0053907125, 0.010959178, -8.853484E-4, -0.010015718, 0.012647835, 0.010911321, -0.041977137, 0.02541873, -0.003951594, -0.023395076, -0.020564696, 6.1829115E-4, -0.019580215, -6.3025526E-4, -0.021535503, 0.009632865, -0.0035995054, 0.0013510964, 6.6358404E-4, -0.017720642, 0.01873247, -0.010501121, 1.2338048E-4, 0.0141245555, -0.031311937, 0.024420576, -0.015491889, 0.0023928336, 0.02074245, -0.020332249, -0.020400615, -0.002346686, 0.008538998, -0.0012776023, 0.0040917457, 0.0049429107, 5.2898715E-4, -0.03194091, -0.011752231, -0.012668345, 0.018144516, 0.028878083, -0.008566344, -0.033116817, 0.012668345, -0.031175204, -0.022314882, 0.022273863, 0.020154497, -0.022629369, -0.018308595, 0.021808969, 0.04919666, 0.016380655, -0.03128459, -0.0087782815, 0.004618169, -0.052751727, -0.0038695538, -0.0053496924, 0.032241724, 0.0059034624, 0.017419828, -1.6546872E-4, 0.0127914045, -0.006799066, 0.032214377, -0.020168168, -0.0070417677, 0.010904484, 0.014261289, -0.017269421, 0.007219521, -0.056607608, -0.016325962, 0.026594637, 0.009003891, -0.008060431, 0.019375116, -0.005407804, -0.009291031, 0.0056470875, -0.021097956, 0.0062350407, 0.016585756, -0.010002045, -0.03399191, -0.0015758518, -0.010275511, 0.013235789, 0.012210288, -0.0017809519, -9.6738845E-4, 0.010514795, -0.005359947, -0.023066916, 0.005089899, 0.0018527369, -0.015915763, 0.039215125, -0.025022203, 1.5991392E-4, 0.034429457, 0.008894504, -0.008005737, 0.015013322, 0.019361442, -0.02504955, -0.023272017, 0.009229501, -0.026553616, -0.010056738, -0.005571884, 0.0349217, -5.413786E-4, 0.012825589, -0.005510354, -0.019484503, -0.032569885, 0.033718444, -0.0029141295, -0.03566006, -0.02890543, 0.015191075, -0.011232644, 0.009523477, 0.010022555, 0.012244471, -0.04074654, 0.012873445, -0.0081356345, -0.031093163, -0.02931563, 0.033882525, -0.0045908224, -0.013591295, 0.008580018, 0.18923895, 0.009926842, -0.0113625415, 0.023148956, 0.006812739, -0.009031238, 8.101451E-4, 0.020400615, -0.0026748462, 0.0055992305, 0.015026995, 0.028960124, 3.3136472E-4, -0.0032508355, 0.027073203, 0.008026248, -0.03489435, -0.02525465, -0.010268674, -0.005353111, -0.008696241, -0.016490042, -0.023436096, -0.032241724, -0.027688503, 0.014849242, -0.017583909, -0.035277203, 0.020633062, -0.0021244944, 0.0047583207, -0.030628271, -0.016900241, -4.7771214E-4, -0.03508578, 0.001255383, -0.0062418776, -0.011909475, -0.008046757, 0.037765753, -0.0055069355, -0.0010776297, 0.015300462, -0.029370323, -0.012100901, 0.007322071, -0.02578791, 0.011950495, -0.026512597, -0.010391735, -0.028385844, -0.0126068145, 0.008053594, 0.012955485, -0.0037738404, -0.006084634, 0.002244136, -0.013126401, -1.8053075E-4, 0.015587602, -0.008142471, 0.029780524, -0.009455111, 0.016613102, -0.012169268, 0.0118205985, -0.018048802, -0.009188482, 0.010077248, 0.0071648275, -0.004057562, -0.008566344, -0.018130843, 0.014534756, -0.015765356, -0.01918369, 0.009120114, 0.005161684, -0.007588701, 0.02082449, 0.0040199603, -0.023463443, 0.023258343, 0.027524423, 0.0124222245, -0.011745395, 0.0042011323, 0.0033431305, 0.021781623, -0.014138228, -0.018527368, -0.011485602, 0.013639152, 0.0058726976, -0.006532436, 0.0018920477, -0.018978588, 0.011396725, -0.022205496, -0.0018715378, -0.02701851, 0.044985272, 5.635978E-4, -0.013269972, -0.0053633656, -0.0014809931, -0.0073562544, 0.042988967, 0.026745044, -0.026143417, -0.003821697, -0.045778327, 0.003647362, -0.0040404703, 9.7251596E-4, 0.004771994, -0.009632865, -0.012217125, 0.010466938, -1.7764654E-4, 0.029288284, 0.017009629, 0.02956175, 0.0015049215, 0.009680721, -0.009113278, -0.03968002, 0.010678874, 0.013892109, -0.022998549, 0.007957881, 0.0070075844, -0.0037020554, 0.0066623325, -0.0361523, -0.013208441, 0.02800299, -0.015013322, 0.012340185, 0.0095166415, -1.6333225E-4, 0.0017655694, 0.001085321, 0.0019416136, 0.02160387, -0.023559157, 0.0063546826, 0.002550077, -0.015956782, -0.011403562, -0.0143570015, -0.019060628, 1.1419371E-4, -0.011342032, -0.013078545, 0.02086551, -0.023545483, -0.012018861, -0.012025698, 0.016325962, -0.032214377, -0.0016826747, -5.3454196E-4, -0.0034952462, -0.03139398, -0.034757618, -0.17348728, 0.015970455, 0.015423522, -0.025842603, -0.0024321445, 0.0063546826, 0.023012223, 0.0031311938, -0.012025698, -0.019279402, 0.017378809, 0.005544537, -0.025678523, -0.03161275, 0.02644423, -0.02275243, -0.011642844, 0.017242076, 0.02234223, -0.0014613377, 0.004354957, -0.03194091, 0.025938317, 0.011718048, -5.217232E-4, 0.010911321, 0.01672249, 0.03377314, 0.012825589, -0.016079841, -0.016421676, -0.023299363, 0.02316263, 0.015792701, 0.018541042, -0.0059376457, -0.011355705, 0.010302858, -0.0027517588, 0.023381403, 0.0020424544, 0.0018476094, 0.03746494, -0.006217949, 0.004566894, 0.03202295, -0.010631018, -0.018664103, 0.028276457, -0.0033414213, 0.044575073, -0.033280898, -0.0033533855, -0.004474599, 0.015560255, 0.010870301, -0.002814998, -0.0022680645, 0.033472326, -0.021508155, -0.012750385, -0.023217322, 0.011212135, -0.02242427, -0.0064709056, -0.032898042, 0.007930534, 0.034292724, -0.018787162, 0.006942636, -8.3279156E-4, 6.917853E-4, 0.014466388, 0.012811915, 0.003360222, 6.4221944E-4, -0.022561003, -0.0028525996, 0.036179643, -0.0042968458, 0.020031435, 0.042004485, -0.015806375, 0.017433502, -0.019867355, -0.002233881, -0.021986723, 0.021385096, -0.0036815454, 0.007964717, -0.006347846, 0.012094065, -0.027770543, 0.0064674877, -0.0021381679, 0.022766102, -0.0071785008, -0.024447924, -0.006153001, -0.0036986372, 0.0071579907, 0.0016954936, -0.029835217, 0.039953485, 0.043317124, 0.0034302978, -0.014575775, 0.023586502, -0.004416487, 0.029069511, -0.022287536, 0.016544735, 0.018855529, 0.0078006377, -0.022779776, 0.010589998, -0.01881451, -0.03440211, 1.02336366E-4, -0.026539944, 0.037492286, -0.021863664, -0.019457156, 0.0077185975, -0.0024133436, -0.017433502, -0.05677169, -0.03213234, 0.029725831, 0.014616795, -0.01992205, -0.0042797537, -0.015614948, 0.04000818, -0.005431732, 0.014480062, -0.013037525, -0.025186284, -0.02102959, 0.020058783, 0.008347571, -0.0068879426, 0.02422915, 0.0020424544, -0.022533657, 0.012777732, -0.017378809, -0.005982084, -0.012155595, -0.012688855, -0.02303957, -0.035113126, -0.029835217, 0.022916509, 0.016257595, 0.007458804, 0.012654671, -0.017433502, -0.0020321994, -0.009509805, 0.011964168, -0.010651528, -0.015273116, -0.006204276, 0.0062350407, -0.030819697, 0.012264982, 0.0013032397, 0.011581315, -0.017871048, -0.012593142, -0.02012715, 0.0022578095, 0.010890812, 0.0033807321, -0.016544735, 0.018253902, -0.016284943, 0.014302309, -0.010795098, 0.02111163, -0.0063239173, 0.036644537, -0.016366983, -9.186772E-4, 0.016298616, 0.0051172455, 0.0143570015, -0.013023851, 0.0058521875, 0.0028816555, -0.018130843, -0.010733568, 0.0023603595, 0.018294923, -4.1153533E-5, -0.007438294, 0.0052779075, -0.007506661, 0.02160387, -0.025897296, -0.0071443175, -0.006658914, -0.013215278, 0.0017980436, -0.010699385, -0.019566542, -0.014302309, -0.0067648827, -0.033335593, -0.012524775, 0.029698484, 0.016312288, -0.014097208, 0.026170764, -0.050044406, 0.032788657, 0.039406553, 0.051794592, 0.02201407, -0.015573929, 0.007219521, 0.002611607, 0.0042079687, 0.022916509, -0.0034576445, -0.040500417, -0.010466938, -0.07886779, 0.024543636, 0.012852935, -0.0069392174, 0.019416137, 0.018253902, 0.013823742, -0.014944955, 0.0139399655, 0.016230248, -0.008450121, -0.033855177, -0.0042797537, 0.003961849, -0.026252802, -0.028932776, 0.012777732, -0.0036747088, 0.02525465, -0.0022971204, 0.032542538, 0.011246318, -0.012825589, 0.022328556, -0.043235086, 0.014685161, 0.0059855026, 0.012887118, 0.018582063, 0.009092768, 0.02763381, -0.012982831, 0.011328358, 0.039023697, -0.0138510885, -0.0402543, -0.010781425, -0.016695142, 0.003951594, -0.029069511, -0.022861816, -0.011724885, -0.017023303, -0.012750385, -0.019279402, -0.015355155, 0.010781425, -0.009359398, 0.029944604, 0.0026355353, 0.019498175, -0.0068264124, -0.018171862, -0.03128459, -0.008949198, 0.0016450732, 0.01926573, -0.007253704, 0.021959376, -0.017351462, 0.040308993, 0.022287536, 0.010097758, -0.012709365, 0.03267927, 0.008251858, -0.024324862, 0.029014817, -0.0050933175, -0.0030183888, -0.016243922, -0.0121897785, 0.018472675, 0.018417982, 0.008039921, -0.0023176302, -0.016503716, -0.0043720487, -0.017570235, 7.422057E-4, 0.0024731646, -0.027879931, -0.02591097, 0.010658365, 0.0030474446, -0.0015553419, -0.01984001, 0.012080392, -0.015204748, 0.0064982525, -0.035523325, -0.0030953013, -0.016626775, -0.003194433, 0.013263135, -0.0021398768, -0.012934975, -0.013796395, 0.03620699, 0.018089822, 0.023053244, -0.0015784156, -0.0029824963, 0.0018664103, -0.015724335, 0.0064640692, -0.023627523, -0.02320365, 0.015532909, -0.014753529, -0.0035619037, -0.0049805124, -0.022561003, 0.029616443, -0.036343724, 0.017050648, -0.0070007476, -0.014138228, -0.009708068, 0.019703276, 0.009981534, 0.0032542537, 0.017775336, -0.018294923, 0.006679424, -0.0013998076, 0.019005936, -0.024858123, 0.020332249, -0.017064322, -0.007650231, 0.0026868104, -0.026430557, -0.0143570015, -0.009995208, -0.020168168, -0.010959178, 0.010795098, -0.0030166795, 0.08515753, 0.010719894, 0.007322071, 0.005623159, 0.012531611, 0.014480062, 0.010432755, -0.016380655, -0.028303804, -0.037546977, 0.005161684, -0.001587816, -0.009831128, 0.0012622197, -0.048075445, -0.0055274456, 0.0017074577, 0.016544735, -0.001259656, -0.012141922, 0.02689545, -0.040172257, -0.0057906574, -0.012264982, -0.0031517036, 0.023750583, 0.03071031, 0.018773489, 0.0098858215, -0.036808617, 0.019703276, 0.02857727, -0.032816004, -0.020674083, -0.0019108485, -0.002356941, -0.02385997, 0.041949794, 0.024037722, 0.006501671, 0.015642295, 0.0402543, -0.0082723675, -0.0061393273, 0.019156342, -0.03596087, -0.017898396, -0.029807871, -0.029944604 ], - "id" : "6ef9f791-0733-4cac-8231-9fbe9b204817", - "metadata" : { - "name" : "TurboSpeed AeroLite Bike Helmet" - }, - "text" : "price: 108.99\nname: TurboSpeed AeroLite Bike Helmet\nshortDescription: \ndescription: ## Overview\nLightweight, aerodynamic, and stylish, the TurboSpeed AeroLite is a high-performance road bike helmet designed to provide maximum comfort and protection. Built for speed and precision, this helmet is perfect for road racing, time trials, and any cyclist seeking an edge.\n\nWith advanced features and innovative design, the TurboSpeed AeroLite guarantees a fast, cool, and secure ride, ensuring that you stay focused on the road ahead.\n\nProduct details\n- Exceptional lightweight construction delivers superior comfort and reduces fatigue\n- Aerodynamic design optimized for minimal wind resistance, allowing you to ride faster and go the extra mile\n- Integrated Mips safety system provides advanced protection against rotational forces\n- Adjustable fit system ensures a personalized, secure fit for every rider\n- Convenient storage solution with a built-in sunglass dock\n- Enhanced field of view with a beveled front edge\n- Crash Replacement Guarantee ensures a free helmet replacement in the event of a crash within the first year\n- 30-Day Unconditional Guarantee for customer satisfaction and peace of mind\n\n## Features\nUltimate lightweight performance\n\nThe TurboSpeed AeroLite is engineered using cutting-edge materials and components to minimize weight, providing exceptional comfort and reducing fatigue during long rides.\n\nUnmatched aerodynamics\n\nExtensive wind tunnel testing and computational fluid dynamics modeling have resulted in an aerodynamic design that delivers significant gains in speed and efficiency, making you faster on the road.\n\nAdvanced Mips safety system\n\nThe integrated Mips technology offers added protection by reducing rotational forces on the brain during angled impacts, ensuring maximum safety without compromising comfort.\n\nCustomizable fit system\n\nEquipped with an adjustable fit system, the TurboSpeed AeroLite allows for easy customization to achieve a secure and comfortable fit. It adapts to your head shape for a personalized riding experience.\n\nSecure and easy storage\n\nThe helmet features a dedicated rubberized dock to securely stow your sunglasses when not in use, preventing loss or damage during rides.\n\nEnhanced field of view\n\nWith a beveled edge design above the brow, the TurboSpeed AeroLite optimizes your field of view, enabling clear visibility of the road ahead in all riding positions.\n\n5-STAR safety rating\n\nThe TurboSpeed AeroLite has undergone rigorous testing at an industry-recognized facility and has received a 5-STAR safety rating, ensuring top-notch protection for cyclists.\n\n## Specs\n| Size | S | M | L |\n|----------|--------|--------|--------|\n| Head Circumference | 52-56cm | 55-59cm | 58-62cm |\n| Fit system | Customizable Fit System | Customizable Fit System | Customizable Fit System |\n| Pad material | Moisture-wicking pads | Moisture-wicking pads | Moisture-wicking pads |\n| Buckle type | Lightweight buckle | Lightweight buckle | Lightweight buckle |\n| Includes | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag | Crash Replacement Guarantee, travel bag |\n| Weight (approx.) | 230g | 250g | 270g |\n\n## Sizing\n| Size | Head Circumference |\n|:----:|:------------------------:|\n| S | 52 - 56 cm (20.5\" - 22\") |\n| M | 55 - 59 cm (21.6\" - 23.2\") |\n| L | 58 - 62 cm (22.8\" - 24.4\") |\ntags: [helmet]" - }, - "6e6384f9-5e0e-4438-bb74-c1976bd3c276" : { - "embedding" : [ 0.036845382, -0.0076265237, -0.001025982, -0.021481605, 3.0558865E-4, 0.0032094377, -0.008076364, -0.027087308, -7.20177E-4, -0.039918136, 0.0140280975, 0.01984834, -0.014097303, -0.0018495357, 0.008623092, 0.013938129, -0.0052596712, -0.022713475, 0.0016453775, -0.034769196, 0.0063392883, 0.021606177, 0.0011635292, -0.0010112757, 0.0013330844, 0.007785698, 0.030644506, 0.009398202, 0.003958595, -0.03584881, 0.016014315, 0.009432806, -0.014519461, -0.01797977, -0.006193955, -0.00959198, 0.023156395, -0.01215953, 0.025191057, 0.009446647, 0.0368177, 0.015585237, -0.023903823, 1.6577049E-4, -0.017204663, 0.008899918, 0.010290963, 0.011737372, -0.0046264348, 0.01605584, -0.0056472262, 0.032720692, -0.0072943335, 0.014138827, 0.018353485, -0.034326278, -0.005308116, 0.011135278, 0.020111322, -0.034464687, -0.012560925, 0.023239443, -0.029730985, 0.010567787, -0.023253284, -0.037094526, 0.0068687154, 0.009529694, -0.014920858, 0.004820212, 0.027737847, 0.029094288, 0.02578623, -0.011315214, 0.025800072, -0.01215953, -0.009169822, 0.012083403, -5.9430825E-4, -0.0044568796, 0.0058617652, -0.02912197, -0.0067995093, 0.019142436, 0.016180411, 0.0038686267, 0.0038132619, 0.0071974453, -0.021883002, -0.0017215043, -0.007993316, 0.021232463, -0.008214776, 0.018228915, 0.019959068, -0.0035398973, -0.00937744, 0.0033115167, -0.0037440555, -0.034326278, -0.014325684, -0.0037994205, -0.017370757, -0.016097363, -0.025467882, -0.01763374, -0.01907323, 0.009633504, 0.012533244, 4.917966E-4, -0.019267008, 0.03557199, 0.009425885, 0.0069136997, 0.012962322, -0.011806578, 0.021177098, -0.011259849, 0.018699516, -0.022367444, 0.031585712, 0.021384716, 0.023004143, -0.030395364, 0.017093932, 0.018422691, 0.0011254658, 0.0042907847, -0.021246305, 0.0025710105, 0.016415711, 0.010076423, -0.0025675502, 0.0023945346, 0.003636786, 0.019792974, -0.008989885, 0.0108238505, -0.031059744, 0.0038651663, -0.004007039, 0.024512837, -0.016678695, 0.0152945705, -0.026201468, -0.010429375, -0.020734178, 0.015654443, 0.011758134, -0.029260382, 0.016997043, -0.01138442, 0.040887024, 0.0065642083, 0.0075434763, 0.006629954, 0.013218385, 0.028734416, -0.017924406, -0.0044464986, -0.0066645574, 0.005180084, 0.023959188, -0.02031894, 0.020042116, 0.008982965, 0.008415475, -0.004072785, 9.360139E-4, -0.012180292, -0.0132945115, 0.019280847, -0.031142792, -0.0017751391, 0.011536674, 0.01182734, 0.01227026, -0.020581925, -0.005979416, 0.015820539, 0.013709749, 0.0020329321, 0.0072874133, 0.029205017, -0.0035347068, 0.010387851, 0.021135574, -0.02679664, 0.0043669115, 0.0018599167, 0.026879689, 0.01695552, -2.945589E-4, 2.5411652E-4, -0.6023708, -0.035738084, -0.011342897, -0.006757986, -0.020346623, 0.007688809, 2.387614E-4, 0.0074258256, -0.026298357, 0.006875636, -0.019737609, 0.014560985, -0.01461635, 0.008858394, -0.024845026, -0.025357153, 0.00948817, -0.0024810424, 0.014574827, -0.012166451, -0.027973147, -0.0030710252, -0.02085875, 0.02096948, 0.0040900866, -0.004173134, 0.020139005, 5.545147E-4, -0.01774447, 0.0012958861, -0.043793686, 0.04484562, -0.007668047, -0.02210446, 0.046478886, -0.042990893, 0.0036298654, 0.009280552, 0.018450374, 0.022727316, -0.028872827, -0.016374188, -0.028125402, -0.0144779375, -0.0045814505, -0.0020727257, 0.051489417, -0.012180292, 0.0036471668, -0.015779015, 0.016346505, 0.004062404, 0.021592336, 0.010526263, -0.00491018, -0.027059626, 0.017606057, -0.010920739, -0.002309757, 0.025717026, -0.005557258, 0.009986455, 0.0020709955, 1.6555421E-4, -0.0025018041, 0.013654384, -0.04985615, -0.019100912, 0.009239028, -0.020803384, -0.013702828, 0.0027025023, -0.015183841, 0.01505927, 0.010242518, 0.032526914, 0.02890051, 0.0043011657, -0.00334785, 0.015502189, 0.012028038, 0.007924111, -0.012339466, -0.035405893, 0.028623685, -0.0076057618, -0.025260264, -0.0027474863, 0.023889981, 0.0049274815, 0.042326514, 0.0012318704, 0.016664853, -0.0065192245, -0.007083255, 0.045509998, 0.00982036, 0.014796286, 0.0020831067, -0.04564841, -0.009605821, 0.013889685, 0.02834686, -0.023530109, 0.01450562, 0.0031592632, -0.004083166, 0.00591021, -5.2856235E-4, -0.0120072765, -0.0011315214, -0.013432924, -0.023114871, 0.0074327462, -0.018920977, -0.03233314, 0.01428416, 0.020540401, 0.013772034, -0.003917071, -0.0029499144, 0.0059067495, 0.021952208, 0.031779487, -0.029703302, -0.0051835445, 0.03568272, 0.022602746, -4.2907847E-4, 0.0021004083, 0.033855673, 0.03233314, 0.063780434, 0.0026592484, 0.03424323, 0.013066131, 0.016249616, 0.0055399565, -3.2180885E-4, -0.015986633, -0.039668996, 0.005000148, -0.025357153, -0.023294808, -0.005266592, -0.019225484, -0.016304981, -0.004373832, -5.039077E-4, 0.0014317033, -0.019350054, -0.021370875, -0.032554597, -0.010117947, -0.0035416274, -0.021827636, -0.026699753, -0.027142672, 3.940428E-4, -0.018824087, 0.0022474714, 6.544312E-4, -0.010173311, -0.011751213, -0.01998675, 0.004498403, 0.027142672, 0.0278901, 0.0011012437, -0.04459648, -0.011398261, -0.010851532, 0.0038305633, 0.010899977, -0.011675087, 6.9941516E-4, -0.010284042, 0.025080327, 0.024526678, -0.028180765, 4.4638E-4, 9.3687896E-4, -0.08166332, 0.019253166, 0.022353603, 0.024872709, 0.023571633, 0.008830711, -0.0075711585, -0.004252721, -0.0026609786, -9.965693E-4, -0.0093151545, -0.011412103, -0.017938247, 0.008463918, -0.0015190762, -0.0067026205, 0.0015121555, 0.02710115, 0.01483781, 0.017204663, 0.023917664, -0.014893175, 0.012671656, -0.02823613, 0.02253354, 0.0030969775, 5.808996E-4, 0.0395029, 0.030976696, 8.639962E-5, -0.009792678, 0.0028547558, -0.010671596, 0.014298001, 0.010318645, 0.015156158, 0.009072933, -0.01093458, 2.5238638E-4, -0.006927541, 0.023668522, 0.0010138708, -0.019211642, 0.01908707, 0.014214954, 0.03568272, -0.0026869308, -0.017523011, -0.010962263, 0.019488467, 0.025191057, -0.009079854, 0.016567964, -0.0056368452, 0.015806697, -0.013301432, 0.04016728, 0.004086626, 0.026478292, 0.02956489, 0.025924644, -0.018561104, 0.03382799, 0.002051964, 0.04373832, 0.018284278, 0.042022005, 0.014533303, -0.014547144, 0.008415475, -0.00903833, 0.03817414, -0.005121259, -0.011730451, 7.20177E-4, 0.016927836, 0.002041583, 0.024457471, 0.015903585, 0.017121615, 0.0013607669, 0.012249498, 0.026838165, -0.014533303, -0.01573749, 0.0010104106, -0.0014758223, -0.031502664, 0.0019689165, -0.021440081, -0.009190584, -0.018450374, 0.016443394, 0.003403215, 0.018201232, 0.006214717, 0.020152846, 0.032083996, -0.015363777, -0.013031528, 0.0073358575, 0.013031528, -0.016304981, -0.005276973, 0.0022716937, -7.487246E-4, -0.011536674, 0.023516268, 0.0061109075, 0.015073111, 0.0063323677, 0.012934639, 4.2388798E-4, -0.014325684, 0.023059506, -0.015889743, -0.022962619, -0.0033859136, -0.033440437, 0.018768722, 0.00903833, -0.015543713, 0.030949013, -7.149866E-4, -0.0027699783, -0.024748137, 0.019903705, -0.0029585653, 0.018270437, -0.025080327, 0.009640424, 7.5997063E-4, -0.004875577, 0.006837573, 0.018782564, -0.022810364, 0.006560748, -0.028402226, -0.01964072, -0.02243665, -0.012166451, -0.009446647, 0.020927956, 0.030173905, -0.005501893, 0.0018806786, -0.013792796, 1.7279923E-4, 0.005979416, -1.7963876E-5, 0.023931505, 0.022948777, 0.0036990715, -0.0063565895, -0.0093151545, -0.013107655, -0.020388147, -0.0066957, -0.01662333, -0.019267008, 0.019322371, -0.007460429, -0.019197801, -0.025633978, 7.210421E-4, 0.02209062, -0.0073150955, 0.0046679582, 0.009543535, 7.906809E-4, 0.021135574, -0.014768603, 0.0023460903, 0.0045260857, 0.014602508, -7.2580006E-4, -0.022561222, 0.01930853, 0.028014671, 0.003650627, 0.03828487, -0.0010571247, 0.01662333, 0.006401574, 0.0077026505, 0.010007217, 0.020720337, 0.0034655007, 0.00636351, 0.02377925, 0.0066126524, -0.02074802, 0.03316361, 0.007557317, -0.03280374, 0.0036783097, -0.0024516298, 0.0011643943, 0.0061420505, -0.016900154, -0.014671715, -0.024263695, 0.0120072765, -0.031170474, 0.010470899, 0.012166451, -0.0051074177, 0.004924021, -0.008602331, 0.012083403, -0.005346179, 0.0015329174, -0.007107477, -0.011778896, -0.011633563, 0.021938367, 0.021024844, -0.0035952623, 0.04027801, -0.037897315, -0.012028038, 0.016332664, -0.020485036, 0.017024726, -0.01941926, 0.0069794455, 0.0015484887, 0.018256595, 0.0062527806, 0.005000148, 0.008325506, 0.0054534487, 0.011612801, -0.009938011, 0.0014931238, -0.026187627, -0.008401633, -0.007979475, 0.01505927, 0.018270437, -0.0064984625, -0.009502011, 0.011972673, -0.032167044, 0.003088327, 0.02163386, 0.012706259, -0.010290963, -0.00803484, -0.013896606, -0.023917664, -0.0043461495, -0.015640602, 0.0051281797, -0.00580294, 0.0020917575, -0.0063496693, 0.0155990785, -0.010699279, -3.1532077E-4, 0.018339643, -0.020235894, 0.0030485333, -0.031890217, 0.03357885, -0.0018339644, -0.02120478, 0.028596003, 0.022782682, -0.0053427187, -0.009460488, 0.022492016, 0.021232463, 0.026685912, -0.022754999, 0.009799599, -0.025080327, -0.04038874, -0.016872473, 0.007114398, 0.013827399, -0.011765054, -0.009128298, -0.009716551, 0.008609252, 0.0063289073, -0.011183722, -0.0140073355, -0.015779015, 0.00613513, -0.011612801, 0.03692843, -0.03045073, 0.018104343, -0.018713357, -0.011896546, -0.022713475, -0.0051489417, -0.018879453, -0.028789781, -0.0055191945, 0.02757175, 0.02175843, 0.024941916, 0.007508873, -0.004986307, -5.514869E-4, -0.001060585, -0.026381405, 0.008934521, -0.033440437, 0.016651012, 0.04152372, -0.0054534487, -0.031696443, -0.004380753, -0.016540283, 0.03393872, -0.012207974, -0.0038236426, -0.013529813, -0.030284634, 0.01126677, -0.023350174, 0.0082563, -0.013765113, -0.032056313, -0.026838165, 0.026699753, -0.008124808, -0.0089691235, 0.007896428, -0.006204336, -0.012983084, 0.03202863, -0.005377322, 0.019197801, -0.006484621, -0.02609074, -0.027142672, -0.041579086, 0.014574827, -0.025744708, 0.0165126, 0.0016592187, -0.0019377737, -0.015543713, 0.008533125, -0.010865374, -0.024277536, 0.011924229, -0.0015493538, 0.0012898307, -0.012643973, -0.042049687, -0.035046022, -0.017910566, -1.6231017E-4, 0.0092736315, 0.022173667, -0.019446943, -5.289949E-4, 0.029869396, 0.00133914, -0.00128291, -0.0059759556, 0.0015986633, 0.0015138857, -0.013848161, 0.0019464245, -0.015543713, -0.0016159648, -0.007328937, 0.01126677, 0.033634216, -0.03346812, -0.008235538, 0.011543594, 3.166184E-4, -0.006155892, -0.03299752, 0.016374188, 0.026519816, 0.012118006, -0.025481723, -0.00680643, -0.03324666, 0.02029126, 0.011432865, -0.009972614, 0.011190643, -0.0060832254, -0.005100497, 0.013695908, -0.00579948, 0.007896428, 0.0052700522, -0.0054915124, 0.014602508, 0.0031488822, 0.00479599, -0.008775347, -0.02062345, 0.0692062, 0.008290903, 0.006671478, 0.021024844, 0.011495151, -0.013695908, -0.0056887497, -0.0075019524, 0.029620254, -0.016097363, 0.013509051, -0.019114753, -0.0044568796, -0.021038685, -0.01840885, -0.015308412, -0.039004616, -0.0074327462, -0.012643973, 0.013862003, 0.0011574738, -0.016761743, -0.016817108, -0.014152668, -0.021218622, -0.02676896, -0.004896339, -0.0011756404, -0.044485748, -0.016900154, -0.057856385, 0.016526442, 0.01649876, -0.0044534192, -0.018007454, 0.012996925, 0.035627354, -0.028762098, 0.011578198, -0.004498403, 0.024955757, -0.020014433, 0.0049378625, -0.0010778866, -0.0034793417, 0.012138768, 0.006491542, -0.010429375, -0.022159826, 0.014256477, -0.0100902645, -0.011169882, -0.0125401635, 0.0042458004, 0.0056160833, 0.0016566234, -0.021260146, -0.026727436, 0.015516031, -0.013405241, 0.013412162, 0.009024489, -0.031585712, 0.015806697, -0.006090146, -0.007557317, -0.0037198334, -0.022035254, -0.0051074177, 0.0054292264, 0.014464096, -0.03316361, -0.011571277, -0.03615332, -0.009536615, -0.01562676, 0.01059547, -0.01283083, 0.0037059921, 0.024955757, -0.0018339644, -0.0026609786, 0.028789781, -0.014422572, -0.028789781, 0.006425796, -0.013446765, -0.02575855, -0.017218504, -0.0014265128, 0.052513666, 0.00993109, -0.02153697, 0.003602183, 0.0029395334, -0.043682955, -0.011522832, -0.009190584, 0.034326278, 0.013682066, 0.021370875, 0.0058963685, -0.0067337635, 0.0060728444, 0.02488655, -0.030561458, -0.0050243703, -0.0017535122, 0.021924525, 0.0071351593, 0.0025294868, -0.02811156, -0.008166332, 0.0018028215, 0.022408968, 0.015432984, -0.0021886462, 0.0064673196, -0.003481072, 4.5892363E-4, -0.0108238505, 0.018242756, 0.013903526, -0.0074119843, -0.048665803, -0.026395246, 0.008899918, -0.0057164324, -0.0067337635, 0.009771916, 0.0025052645, -0.01171661, 0.008104046, 0.0011756404, -0.031225838, -0.0022059476, -0.007903349, 0.018865611, -0.008318585, -0.0042458004, 0.05802248, -0.0011323865, -4.07019E-4, 0.0014766874, 0.026353722, -0.019682243, -0.004598752, 0.01081693, -0.024042236, -0.0022059476, -0.007093636, 0.017426122, 0.0038513253, -0.01696936, -3.328386E-4, -0.04008423, -0.013488289, 0.018450374, 0.0023460903, -0.025301788, -0.016000474, 0.024028394, -0.015322253, 0.027544068, 7.928436E-4, -0.016277298, -0.019294688, 0.018837929, 0.01918396, -0.0012448466, -0.023447061, 0.030256951, 0.001416997, 0.0022768842, -0.013958891, 0.19676708, -0.010512422, 5.5105437E-4, 0.029149653, 0.01907323, 0.0062527806, 0.01730155, -0.0015605999, 0.0077580153, -0.018464215, 0.039447535, 0.024056075, -0.009328996, 0.006851414, 0.024831185, -1.8847876E-4, -0.05655531, -0.025426358, -0.0071697626, -0.0012984814, 0.004038182, 0.008574649, -0.027820893, -0.022547381, 0.017426122, 0.010297883, -0.014311843, -0.015668284, 0.016761743, 0.018228915, -0.005612623, 0.00937052, 7.0676836E-4, -0.011072992, 6.9768506E-4, -0.007453508, 0.016927836, 0.0029395334, 0.011280611, 0.038672425, 0.020222053, -0.0084362365, 0.030976696, -0.030063175, -0.007508873, -0.029288065, -0.024125282, 0.017495329, -0.020498877, 0.0020900273, -0.0144364135, 0.014782445, 0.05143405, 0.027294926, 0.003493183, -0.011882705, 0.013827399, -0.01695552, 0.0062008756, -0.007958713, -0.03155803, 0.033440437, -0.008726902, 0.038091093, -0.007875666, 0.0045710695, -0.0062873834, -0.016872473, 0.016138887, 0.0116612455, -0.021786112, -0.0054534487, 0.0028149623, -0.001327894, -0.017121615, -0.038008045, 0.0035052942, 0.004311546, 0.009619663, 0.011993435, -0.0074811904, -0.021246305, 0.021440081, -0.009737313, 0.012547084, -0.021370875, -0.0038132619, 0.014339525, 0.011246008, -0.008228618, 0.008526204, 0.016111204, 0.008387792, 0.0072182068, -0.023613157, -0.0012007277, -0.023862299, 0.030810602, -5.778718E-4, -0.0071697626, -0.03335739, 0.056333847, -0.007619603, -0.013432924, -0.020332782, 1.123925E-5, 0.01115604, 0.015405301, 0.011474389, -0.040001184, -4.874712E-4, -0.04207737, 0.0023789632, -6.4578035E-4, 0.0038686267, -0.011882705, 0.0022665032, -0.0080694435, 0.0031938662, -0.017426122, 0.03327434, -0.016097363, 0.029288065, -0.005937892, 0.014214954, -0.018505739, -0.026478292, 0.0048686564, -0.017550694, -0.010104106, 0.023903823, 0.001863377, -0.005398084, 0.0021367415, -0.023405537, -0.016014315, 0.0016652743, 5.488917E-4, 0.008041761, -0.013986574, 0.01361286, 0.012291022, -0.012028038, -0.016817108, 0.008733823, -0.015529872, -0.0046333554, -0.00491018, 0.009758075, -0.010422454, -0.017952088, -0.00502091, 0.004003579, -0.019903705, 0.016692536, 0.016609488, -0.0052492903, -0.043572225, -0.010547025, 0.007114398, -0.054617535, 0.0057060514, 0.011633563, -0.020166688, -0.031779487, -0.016429553, -0.17606057, 0.0017768693, 0.036873065, -0.008664616, -2.9910056E-4, 0.020374306, 0.022602746, -0.002600423, -0.030893648, 0.019405419, 0.023447061, -0.009391282, -0.032416184, -0.014851651, -0.007162842, -0.03894925, -0.0096819475, 0.009841122, 0.006038241, 0.023834616, 0.0027319149, -0.006259701, 0.0028685972, -0.0075503965, -0.020872591, 0.011066072, -0.0023858838, 0.041468356, 0.016761743, -0.0063323677, 7.3055795E-4, -0.01706625, 0.013176861, -0.0048997994, 0.0044222763, -0.001740536, -0.012574767, 0.020055957, -0.004674879, 0.04063788, -0.0010882675, 0.03258228, 0.028706733, 0.0013356797, 0.017952088, 0.023114871, -1.7074468E-4, 0.005398084, 0.0024464394, 1.5701157E-4, 0.054063886, -0.021412399, 0.0075711585, -0.0031782947, 0.0068306522, 0.0010908628, -0.010699279, -0.008020999, 0.018284278, -0.0075157937, -0.024042236, -0.03501834, 0.017260026, 3.0688624E-4, -0.008719982, -0.006522685, -0.021647701, 0.007896428, -0.016277298, -0.0011254658, -0.02611842, 0.0070590326, 0.012754703, 0.01294848, 0.032416184, 9.878104E-5, -0.009585059, -0.00791719, 0.032360822, 0.009211346, -0.004972466, 0.049025673, -7.3358574E-4, 0.00982728, -0.015031587, -0.014097303, -0.010415534, 0.0015311872, -0.016526442, -0.021011002, -0.012131847, -0.039336804, -0.0017327503, 8.304744E-4, 0.026132261, -0.005505353, 0.018464215, -0.0012742592, 0.022187509, -0.012000356, 0.0128239095, -0.020374306, -0.038866203, 0.0051454813, 0.03213936, 0.0045918315, 0.01595895, 0.040001184, -0.002655788, 0.023460902, -0.009107537, 0.022547381, 0.030284634, 0.021772271, -0.015003905, 0.018090501, -0.032665327, -0.029952444, -0.0027959305, 0.011398261, 0.022035254, 0.007114398, -0.005643766, 0.006706081, 0.010560866, -0.0056057023, -0.089469776, -0.026962737, 0.015225365, 0.012235656, -0.0037855792, 0.002768248, -0.0059448127, 0.0104570575, -0.008505442, 0.03806341, -0.028651368, -0.021689223, -0.0039516743, 0.030478412, 0.017785994, -7.180144E-4, 0.008450077, -0.016720219, -0.020360464, 0.028872827, -0.011751213, -0.039890457, -0.036291733, 4.301598E-4, -0.020540401, 0.015156158, -0.02811156, 0.016277298, 0.038810838, -0.009841122, 0.014381049, -0.03914303, 0.008007158, 0.013841241, -0.022159826, 0.00937744, -0.03258228, -0.005477671, 0.010872294, -0.04285248, -0.002856486, -0.0039516743, 0.006193955, -0.024332901, -0.029758668, -0.010789247, -0.0072251274, 0.020222053, 0.023626998, -0.013605939, 0.0054638297, -0.006180114, -0.003605643, -0.009211346, 0.022021413, -0.019045547, -0.0120072765, 0.009239028, -0.019267008, 0.0058444636, -0.0152945705, 0.027959306, 0.0063981134, 0.0100695025, 0.036873065, -0.0014879333, 0.0033530404, -1.4144018E-4, 0.04038874, -0.014685556, 0.0023599316, 0.006394653, -0.021730747, 0.032942154, -0.027696323, 0.006671478, -0.021315511, -0.019294688, 0.008311665, -0.010643914, -0.028623685, -0.018062819, 0.011038389, -0.030035492, 0.012782386, 0.038506333, 0.0057960195, 0.011072992, 0.007529635, -0.021218622, 0.028706733, 0.009515853, 0.04719863, -0.01048474, 7.5261743E-4, -0.010284042, 0.00401396, 0.014851651, -0.032360822, -0.0050935764, -0.055475693, 5.7830435E-4, -0.077012666, 0.029952444, 0.014519461, -0.011730451, -0.015156158, 3.0061445E-5, 0.0026661688, -0.0059309714, 0.022658112, 0.014381049, -0.004204277, 0.006090146, -0.01193807, 0.0024187567, -0.009432806, -0.006090146, -0.003136771, -0.0084362365, 0.023516268, 0.031281203, -0.01361286, -0.020014433, -0.009093695, 0.02319792, -0.016332664, -4.2150903E-4, -0.007861825, 0.002353011, 0.0070209694, -0.0096819475, 0.04553768, -0.011114516, 0.013522892, 0.012913877, -0.020886432, -0.003045073, 0.006726843, 0.020332782, -0.025177216, -0.022132143, -0.05287354, -3.5943973E-4, 0.0018893293, -0.029038923, -0.028139243, 0.0012906956, 0.028706733, 0.016318822, 0.013730511, 0.024831185, 0.011391341, -0.0015701157, 0.017647581, -0.042769432, -0.0055884006, -0.020498877, -0.0014758223, -0.004380753, 0.017592216, 0.0038859283, 0.04575914, 0.020540401, 0.0062112566, -0.024125282, 0.003557199, -0.021384716, -0.0013356797, -0.006640335, 0.00982036, -0.023917664, -0.025370995, 0.00234436, 0.014768603, 0.01171661, -0.010062582, -0.004896339, 0.012512482, 0.0012336005, -0.049911514, 0.011072992, 0.010893056, -0.0052700522, -0.007847983, 0.008789187, 0.010636994, -0.013412162, -0.022118302, 0.017758312, 5.800345E-4, 0.008339347, -0.03872779, 0.023114871, -0.022284398, -0.011792737, 0.019017864, 0.009640424, -0.028277654, -9.455297E-4, 0.02589696, 0.024415947, -0.0448733, -0.009536615, -0.02766864, -0.0028599463, 0.0033045963, 0.012955401, -0.0036437067, 0.005387703, 0.011931149, -0.017689105, -0.0024135662, -0.009626583, 0.0097234715, 0.012796227, -0.020568084, -0.0027699783, -0.005377322, -0.017135456, -0.03781427, 0.032748375, 0.037066843, 0.013377559, 0.021315511, 0.010761565, 0.008187094, -0.019931387, -0.0108861355, 1.1419023E-4, 0.010221756, -0.010104106, -0.0068790964, -0.010650835, -0.0021713446, -0.008713061, -0.021370875, 0.0016090443, -0.014069621, 0.015779015, 0.011024548, 0.1004874, 0.011585118, -0.01595895, -0.0075157937, -0.0057095117, 0.013730511, 0.026381405, -0.030976696, 0.0066957, -0.030423047, 0.009204425, 9.04006E-4, -0.038118776, -0.008989885, -0.01472708, 0.01831196, 0.018353485, -0.0016393219, -0.0070140488, -0.0020727257, 0.043489177, 0.0013564415, 0.016484918, -0.0031298506, 0.006886017, -0.008166332, 0.03377263, 0.030201586, 0.009737313, -0.043295402, -0.0093359165, 0.014491779, -0.016097363, -0.017592216, 0.015460665, -0.012574767, -0.012325625, 0.004962085, 0.021135574, -0.028305337, 6.2199077E-4, 0.007951792, -0.021661542, -0.009640424, 0.005813321, -0.005052053, 0.0027820894, -0.034409326, -0.063282155 ], - "id" : "6e6384f9-5e0e-4438-bb74-c1976bd3c276", - "metadata" : { - "name" : "SwiftVolt Pro" - }, - "text" : "| K — Wheelbase | 114.6 | 115.0 | 116.4 |\n| L — Standover | 79.5 | 83.7 | 87.9 |\n| M — Frame reach | 40.5 | 40.8 | 41.2 |\n| N — Frame stack | 62.3 | 65.2 | 68.8 |\ntags: [bicycle, city bike, professional]" - }, - "baf2a065-6ce5-46d0-99a1-7fe41676a411" : { - "embedding" : [ 0.030511709, 0.013652068, -0.0173368, -0.00553704, -0.009039525, 3.456508E-4, 0.005649703, -0.034355495, 0.018542955, -0.04177798, 0.007893016, 0.004665561, -0.033560228, -0.009437158, 0.009337749, 0.008396684, 2.8041413E-4, -0.010510767, 0.017535618, -0.015587215, 0.010358341, 0.015269109, -0.0072369217, -0.0018357392, -0.009079288, -0.0032986975, 0.019563546, 0.0021786978, 3.2556205E-4, -0.017191002, 0.02555455, 0.0061169215, -0.023142243, -0.016064376, -0.015255854, -0.0045363302, 0.025461769, -7.952661E-5, 0.024693012, -0.0044004726, 0.029902006, 0.020385321, -0.009589584, 0.011491595, -0.014513606, 0.031386502, 0.019258695, 0.0035853246, 0.024282124, 0.020491356, -0.0059976317, 0.02298319, -0.004589348, -0.0010388163, -0.006275975, -0.02238674, 0.0018423664, 0.013512896, 0.031810645, 0.012465796, 0.007521892, 0.019855144, -0.029769462, 0.005079762, -0.009768519, -0.019059878, 0.003141301, 0.011942246, -0.017469345, 0.012081417, 0.014155736, 0.036423188, 0.037722122, 0.013665322, 0.03708591, -0.03395786, -0.006206389, -0.015414908, 0.0011365678, -0.013340589, 0.018357392, -0.025011119, -0.004261301, 0.036714785, 0.0252497, -0.0022250882, 0.0019102955, 0.029371828, -0.021830054, 0.009874554, -0.011948873, 0.012207335, -0.0055171587, 0.014023192, 0.026694432, -0.014009938, -0.0027022478, 0.0060407086, -0.0035455613, -0.01664757, -4.6846143E-4, 0.023553131, -0.015136565, -0.014023192, -0.03703289, -0.024335142, -0.01583905, -0.018569464, -7.55917E-4, -0.008184614, -0.019391239, 0.0014919523, 3.9597624E-4, 0.012213962, 0.02591242, -0.013261062, 0.050976556, -0.0021571594, 0.027993366, -0.024282124, 0.027516207, 0.022492776, 0.018821297, -0.047530405, 0.004794792, 0.015176328, -0.012359761, -0.00821775, -0.014659405, -0.014129228, -0.0086485185, -4.6235196E-5, -0.0023228398, 0.008887098, -0.0126447305, -0.009688992, -0.012856802, 0.0025282835, -0.031784136, -0.013340589, 8.501478E-5, 0.028258456, -0.021193841, 0.007926152, -0.0050002355, 0.0016460351, -0.0012368044, 0.019059878, 0.018715262, -0.02253254, 0.0185297, -0.011822956, 0.024242362, 0.037006382, 0.0053514782, 0.008184614, -0.014394316, 0.02367242, -0.015971594, -0.015110056, -0.015825795, 0.0059048505, -0.0010678105, -0.004546271, 0.014897984, 0.001320473, 0.020120231, -0.019298457, 0.009351004, -0.0020594078, -0.011279524, 0.022466267, -0.021551711, 0.01781396, 8.36272E-4, 0.020464847, 0.027357154, -0.023036208, -0.0048146737, -0.0045263893, 0.019073132, -0.007899643, 0.013055619, 0.019033369, -0.003996212, -0.006325679, -0.0013461536, -0.022042125, 0.01238627, -0.012445915, 0.0148317125, 0.01138556, -0.010649938, -0.012929701, -0.5997367, -0.013744849, -0.01143195, -0.013499642, -0.002761893, 0.02531597, -0.0021488753, 0.013930411, -0.003336804, -0.0028994076, -0.017416328, 0.05137419, -0.0137846125, -0.00921846, -0.02414958, -0.024997864, 0.0071110046, -0.012949583, 0.0056861527, -0.012319997, -0.04411076, 0.009881182, -0.030617746, 0.017217511, 0.0056596436, -0.013546033, 0.009655856, -0.0021902954, -0.0061467444, -0.0082243765, -0.040266972, 0.046364013, 0.0055933716, -0.0063488744, 0.03231431, -0.03804023, -0.008489465, 0.01727053, 0.025819639, 0.017350055, -0.018940587, -4.7923066E-4, -0.011750056, -0.018688753, -0.014937748, 0.013128518, 0.036900345, -0.0075484007, 0.008164732, -0.045409694, 0.010987926, 0.018277865, 0.002990532, -0.0030071, 0.010828873, -0.0271981, 0.018794788, 0.0036549105, 0.004877632, 0.016674079, -0.023844728, 0.011113844, -0.004208283, -0.010822246, 0.0049339635, 0.010570412, -0.04037301, -0.026442599, 0.015428162, -0.017654907, 0.010186033, 0.011504849, 0.0019020115, 0.019563546, 0.015892068, 0.028523544, 0.042308155, 0.0141955, 0.013267689, 0.014182245, 0.00902627, -0.004218224, 0.022572303, -0.019762363, 0.027012538, -0.01581254, -0.015083547, -0.009629347, 0.013705086, 0.013665322, 0.029689934, 0.009629347, 0.01778745, -0.009443785, -0.008045442, 0.02172402, -0.0015515973, 0.007462247, 0.0127573935, -0.036741294, -0.0021057983, 0.006580827, 0.013744849, 0.017628398, 0.03146603, 6.69349E-4, -0.011829583, -0.010941536, 0.015666742, -0.02238674, 0.009013016, -0.018503191, -0.022240942, 0.0092515955, 3.81065E-4, -0.0316781, 0.025952183, 0.0034461531, 0.021180587, -0.025952183, 0.012015145, 0.0075947912, 0.025488278, 0.00850272, -0.021975853, 0.006120235, 0.015679996, 0.006885679, -0.011564494, -0.0023145557, 0.021087807, 0.008993134, 0.038252298, -0.017469345, 0.008973252, 0.025183426, 0.022068635, 0.002261538, 0.004582721, -0.012306742, -0.04487952, -0.018065795, -0.011484968, -0.029186266, 9.5597614E-4, -0.0045263893, -0.021511948, 0.004022721, 0.017084967, -0.03329514, -0.02172402, -0.027251119, -0.013943666, 0.007130886, -0.01190911, -0.017548872, -0.04408425, -0.024600232, -0.0030949106, -0.034806147, -7.343785E-4, 0.016475262, -0.03212875, -0.0023841416, 0.0030170407, 0.008840708, 0.016143901, 0.021538457, 0.008363549, -0.046867684, -0.021154078, -0.0038835495, -0.006259407, 0.0080255605, -0.01026556, -8.34201E-4, -0.019537037, -0.0032721886, 0.01026556, -0.013307453, 0.0013005914, 0.010106507, -0.054873362, 0.007071241, 0.026044965, 0.011272897, 0.01888757, -0.007873135, -0.007064614, 0.0071176314, -0.008721418, 0.010318577, -0.011895855, 4.6266263E-4, -0.005464141, -0.0030170407, 0.008462957, 0.0011423666, 0.004768283, 0.0069652055, 0.017734434, 0.013526151, 0.02274461, 0.0049902946, 0.032022715, -0.016515026, 0.016793368, 0.01891408, 0.02955739, 0.04103573, 0.025713604, -0.024971355, -0.0049472176, -0.015401653, -0.014367808, -0.008370176, 0.026469106, 0.034063898, -0.0086949095, -0.002284733, 0.0024835498, 0.01933822, 0.038411353, 0.014977511, -0.011392186, 0.02014674, 0.017853724, 0.0252497, -0.010192661, -0.013903902, -0.02558106, 0.006819407, -0.0040757386, -4.6224843E-4, 0.012187453, 0.02014674, -2.9863897E-4, -0.008834081, 0.04082366, -0.002838106, 0.03560141, 0.04408425, 0.024560468, -0.021326385, 0.018185085, 0.0041486383, 0.025143662, 0.028576562, 0.041645434, 0.010318577, -0.012247098, -0.001235976, 0.01167053, 0.005563549, 0.007899643, 0.0036052063, -0.0030617744, 0.007952661, -0.005175857, 0.010543903, 0.0036913601, 0.01981538, 0.0088738445, 0.0073562115, 0.015706506, -0.004420354, -0.032022715, -0.014301536, -0.019510528, -0.0042977505, 0.014964257, -0.012525441, -0.0076875724, 0.011146979, 0.009768519, -0.0019450883, 0.0056596436, -0.0012939642, 0.012889938, 0.024335142, -0.0056795254, -0.028788632, -8.739643E-4, 0.025740113, -0.011849465, 0.00862201, 0.0043739635, 0.007800235, 0.004294437, 0.035786975, 0.009954081, 0.008303903, -0.01536189, 0.0095431935, -0.01262485, -5.715975E-4, 0.030697271, -0.009848045, -0.009927572, 0.0024272185, -0.0325794, -0.013903902, -0.010961418, -0.01583905, 0.03422295, -0.005580117, -0.009755264, -0.022466267, 0.017151238, 0.008714791, 0.004963786, -0.050870523, -0.016488517, -0.005384614, -0.0067199985, -0.0023311237, 0.003091597, -0.02050461, 0.019298457, -0.030140584, -0.032897506, -0.02172402, -0.026906503, -0.013340589, 0.039975375, 0.039233126, -0.018715262, -2.1165676E-4, -0.025408752, -0.0011034317, 0.0026807094, -0.007435738, 0.008655146, 0.016515026, -7.526034E-4, 0.009172069, -0.018357392, -0.008900353, 0.0028447332, -1.7002955E-4, 0.010086625, -0.03472662, 0.009993844, 0.0029839047, 0.0032970407, -0.031041887, -0.002413964, 0.033427685, 0.035999045, -0.007985797, 0.024666503, 0.0029524253, 0.025475023, -0.013148399, 0.006047336, 0.0071242587, 0.0143412985, -0.0063820104, -0.008966626, 0.013864139, 0.021273369, -0.013439997, 0.015706506, -0.0042811823, 0.0068989336, 0.01581254, 0.009105797, 0.00945704, 0.033533722, 0.011803075, 0.0064681643, -0.005324969, 0.011849465, -0.016634315, 0.03313609, 0.018595973, -0.010968045, 0.004059171, 0.007926152, 0.01571976, -0.010570412, -0.027436681, -0.015136565, -0.04342153, -9.410649E-4, -0.032658927, 0.031333484, 0.0056596436, -0.012691122, 0.009563074, -0.015931832, 0.011378933, 0.00256639, -0.005759052, -0.02017325, -0.021949343, -0.011856092, 0.035309814, 0.010000471, -0.003176094, 0.019205676, -0.015216092, 0.0207697, 0.009980589, -0.024547214, 0.012730884, -0.008330412, -0.006302484, -0.007077868, 0.015587215, 0.027304135, 0.0022565676, 0.016753606, 0.0028728987, 0.022201179, -0.013353843, 0.008363549, -0.0218168, 0.005699407, 5.865088E-4, 0.0072700577, 0.028788632, 5.9189333E-4, -0.026402835, 0.011286152, -0.026933013, 0.01043124, 0.010464377, 0.021101061, 0.00641846, 0.007747217, -0.008191241, -0.008052069, -0.0146328965, -0.018953841, -0.0053581055, -0.014513606, 0.009940826, -0.029186266, -0.011902482, 0.015255854, -0.015534198, 0.008105087, -0.017031949, 0.008191241, -0.037907682, 0.03385183, 0.008688282, -0.027330644, 0.034143426, -0.0028480466, -0.010875264, -0.004566153, 0.016382482, 0.04501206, 0.015905323, 0.010411358, 0.031996205, -0.02794035, -0.03687384, -0.022161415, 0.0020196445, 0.016488517, -0.0018108871, -0.010292069, 0.016488517, 0.0018556209, 0.022095144, -0.03255289, -0.021511948, -0.0064681643, 0.009211833, 4.70636E-5, 0.027145082, -0.01760189, 0.003582011, -0.01607763, -0.031359993, -0.016223429, -0.009337749, -0.006792898, -0.035919517, 1.8048813E-4, 0.017416328, 0.0038636678, 0.0018556209, 0.01443408, 0.012830293, -0.010225796, -3.9038452E-4, -0.0079128975, -0.0026326622, -0.032446858, 0.0207697, 0.018224848, 0.009019643, -0.035839994, -0.029875496, -0.020027451, 0.04479999, -0.015229345, -0.005580117, -0.022757865, -0.047079753, -0.0013411831, -0.034567565, -0.0040094666, -0.019285202, -0.027595734, -0.0011257986, 0.027383663, -0.0010139643, 0.0023758574, 0.006024141, 0.0045363302, -0.018211594, 0.045833837, 0.0026724255, 0.015679996, 0.011736802, -0.032022715, -0.01781396, -0.03562792, 0.012571831, -0.0197226, 0.008847335, 0.017495854, -0.007893016, -0.0017926623, -0.007395975, -0.00931124, -0.011306033, 0.023433842, -0.01841041, -0.011445205, -0.033719283, -0.020597393, -0.025528042, -0.024096563, 0.0036184608, -0.0021472184, 0.017827215, -0.03117443, -0.007395975, 0.013406861, 0.0020378693, 0.027277628, 0.01978887, 0.01383763, 0.037404016, -0.00521562, -0.022214433, -0.0021107688, 0.002871242, -0.0026889935, 0.030564727, 0.015905323, -2.8041413E-4, 3.6615378E-4, -0.0015226032, -0.0045860345, -4.9885344E-5, -0.025302716, 0.008376803, 0.021472184, 0.014036447, -0.024427924, 0.0017131357, -0.015216092, 0.021525202, -0.00790627, 0.011849465, 0.004920709, -0.0026376327, 0.0050764484, 0.023857983, -5.4426026E-4, 6.333135E-4, 0.0019334907, -0.0048710047, 0.013864139, -0.017045204, -0.020239523, -0.015401653, -0.012227216, 0.061977737, -0.014089464, 0.0071110046, 0.036688276, 0.0042579873, 0.0032473365, -0.012803785, -0.009463667, 0.02367242, -0.037006382, 0.0058220103, -0.018476682, -0.0059876908, -0.028072894, -0.0185297, -0.015573961, -0.0027055615, -0.001235976, -0.013082127, 0.011822956, -0.018675499, -0.029928515, -0.015520943, -0.017866978, -0.024732776, -0.026097983, -0.0063820104, -0.004980354, -0.035150763, 0.003717869, -0.037563067, 0.013254435, 0.03684733, -0.0025697036, -0.018476682, -0.0037576323, 0.03146603, -0.023566386, 0.005218934, 0.027052302, 0.008655146, -0.020372067, 0.0130026005, -4.0073955E-4, -0.014937748, 0.0085822465, -0.0035091117, -0.0126447305, -0.032791473, 0.0076875724, -0.0027751473, -0.002498461, -0.007833371, 0.016011357, 0.021551711, 4.3449693E-4, -0.010630057, -0.023712184, 0.015945084, -8.346152E-4, 0.009874554, -0.019152658, -0.021737274, 0.023831474, 0.013155026, -0.01727053, -0.007402602, -0.014964257, -0.014248517, 0.0041917153, 0.0069320695, -0.032287803, 0.006524496, -0.023500113, -0.011093962, -0.020690173, 0.005735857, -0.023871237, 0.0068061524, 0.010802365, -0.029928515, -0.004367336, 0.022691593, -0.011750056, -0.030697271, -0.004185088, -0.020809462, -0.0185297, -0.03520378, 0.015494434, 0.0534949, 0.017191002, -0.0059910044, -0.0032208278, -0.0076014185, -0.040505555, -0.008303903, -0.0056463894, 0.011630767, 0.012041654, 0.014288281, -0.011299406, 0.0075815367, 0.008383431, 0.028099403, -7.298223E-4, -1.01323945E-4, -0.0014513606, 0.026548633, 0.018781533, 0.003986271, -0.03801372, -0.012810411, 0.026376326, 0.017946504, 0.0028165674, 0.0044899397, -7.654436E-4, -0.009755264, -0.0039266264, -0.007886388, 0.036794312, 0.015905323, -0.011286152, -0.03801372, -0.014897984, -0.0016319524, 0.004675502, 0.00790627, -0.016740352, -0.019523783, -0.013930411, 0.0132478075, -0.016183665, -0.0017462719, -0.0060307677, -0.018304374, 0.030935852, -0.011756684, -0.013413488, 0.0304852, -5.0822477E-4, -0.025183426, 0.009039525, 0.04265277, -5.703549E-4, -0.008085205, 0.00525207, -0.032208275, 0.011246388, -0.0034328985, 0.020186504, 0.01219408, -0.013274317, 1.07070984E-4, -0.036714785, -0.020544374, 0.026535379, 0.0026757391, -0.050366852, -0.027966857, 0.028019875, -0.008807572, 0.04058508, 0.0074158562, -0.012585086, -0.031121412, 0.022545794, 0.0060142, -0.0304852, -0.018277865, 0.022134906, 0.010570412, -0.0029673367, -0.005205679, 0.21228303, -8.491122E-4, 0.01581254, 0.02767526, 0.01652828, -0.0031943189, 0.027012538, -3.812721E-4, 0.005291833, 0.0012310056, -0.0036018926, 0.03957774, -0.007820116, 0.006269348, 0.029955022, -0.0059678094, -0.048219636, -0.022214433, -0.005802129, 0.0010719524, -0.005629821, 0.02567384, -0.032977033, -0.028497035, 0.018953841, 0.0031098218, -0.03141301, -0.019258695, 0.013261062, -0.002109112, -0.0142087545, -0.0014414198, -0.0022930172, 0.0022052065, -0.0042977505, 0.007707454, 0.007707454, 0.00890698, 0.0013188163, 0.036688276, 0.010417986, 0.025064137, 0.0146328965, -0.01262485, 0.010000471, -0.022492776, -0.013797867, 0.008807572, -0.027357154, 0.0018357392, -0.010417986, 0.01933822, 7.45562E-5, 0.03422295, 0.0017479286, -0.04100922, 0.010822246, 0.007959289, 0.0057557384, -0.010987926, -0.034382004, 0.015772777, 0.001651834, 0.0424407, -0.014447334, 0.020199759, -0.015348636, -0.032977033, 0.007627927, 0.0024785793, -0.030935852, -0.008973252, -0.017495854, 0.005530413, -0.037404016, -0.020835971, 0.0020908872, 0.002498461, 0.0031396442, 0.009901063, -0.0040028393, -0.019232186, 0.0076213, 0.0017810647, 9.6840214E-4, -0.035760466, 0.015679996, -0.0065907678, 0.011199998, -0.015905323, 0.005208993, 0.016355973, 0.008323785, 0.013625559, -0.0062196436, 0.003235739, -0.021405913, 0.01464615, -0.025011119, 0.0011846151, -0.027025793, 0.04882934, -3.5600582E-4, -0.0070314775, -0.023062717, 0.005768993, 0.0030717154, 0.0132478075, 0.016475262, -0.04570129, -0.0071110046, -0.043315493, -0.0041353838, -0.008250886, 0.013506269, -0.0086684, 0.0011092306, -0.0058220103, -0.0106366845, 0.0027751473, 0.021273369, -0.011511477, 0.023924256, -0.0037443778, 0.023473604, -0.024070054, -0.018542955, 0.0043938453, -0.011710294, -0.044720463, 0.007276685, 0.0072634304, 0.01102769, 0.0023162125, 4.4443778E-4, -0.0048378687, -1.4859464E-4, -0.007674318, 0.0295839, 0.004397159, -0.0017860351, 0.009496802, 0.0014621299, -0.0019368043, 0.03493869, -0.023857983, 0.029239284, -0.017959759, -0.011736802, -0.01571976, -0.014248517, -0.009556447, 0.005566863, -0.0046622474, 0.020995025, 0.0074887555, -0.029769462, -0.025660586, -0.015467926, 0.0028844965, -0.028735615, -0.0028331354, 0.01178982, 0.017191002, -0.0092979865, -0.018132066, -0.16562742, 0.002549822, 0.023884492, -0.007674318, 0.008250886, -0.0030021295, 0.023075972, 0.00886059, -0.02498461, -0.0092979865, 0.0385439, -0.017893488, -0.030776799, -0.024586977, 0.024348397, -0.010258933, -0.023128988, 0.011213252, 0.0026492302, 0.0068392884, 0.0056695845, -0.025050882, 0.007714081, -0.004354082, -0.00641846, 0.011299406, 0.0013685204, 0.054873362, -0.012976091, 0.013095382, -0.0018672185, -0.03159857, 0.029212775, -0.010742719, 0.001973254, -0.00938414, -0.016302954, 0.0034030762, -0.016210174, 0.049598094, 0.019404493, 0.007402602, 0.001752899, 0.0026227213, 0.011902482, 0.03395786, -0.004794792, 0.0014381062, 0.010258933, -0.0025680468, 0.02884165, -0.010775856, 0.003134674, -0.011637394, -5.773963E-4, 0.0012533725, -0.018344138, 0.014009938, 0.015693251, -0.029424846, -0.015202837, -0.016276445, 0.027118573, -0.017522363, -0.00721704, -0.013347216, -0.0047152652, 0.018781533, -0.024136325, -0.00653775, -0.012764021, 0.015653487, -0.00168497, 0.019444255, 0.026826976, 0.010722837, -0.033904843, -0.014142482, 0.030935852, 0.006193135, 0.0011572778, 0.05304425, 0.00821775, -0.014513606, -0.0146328965, -0.019126149, -0.020915499, 0.004208283, 0.0012657986, -0.013612305, -0.014367808, -0.031147921, -0.009582956, -0.008926862, 0.0039763306, -0.012015145, 0.0065278094, 0.0019252066, 0.01143195, -0.013652068, 0.002430532, -0.018463427, -0.025872657, 0.012088045, 0.031810645, -3.2328395E-4, 0.003050177, 0.01324118, 0.011206625, 0.026402835, -9.443785E-5, 0.034328986, 0.019112894, 0.02627029, -0.008297277, 0.016581299, -0.03231431, -0.04344804, 1.547041E-4, 0.008714791, 0.04082366, 0.0030104136, -0.0025763307, 0.012127808, -0.0016493488, -0.013459879, -0.08610081, -0.019218931, 0.024600232, 0.02043834, -0.01443408, -0.005487336, -0.021432422, 0.023062717, 0.002133964, 0.030405674, -0.01664757, -0.03475313, -8.25917E-4, 0.03541585, 0.011339169, 0.015733015, 0.01981538, -0.019563546, -0.017177748, 0.014049701, -0.01969609, -0.024600232, -0.020968515, 0.0060937265, -0.037722122, -6.465679E-4, -0.036714785, 0.019894907, 0.013048992, -0.004463431, 0.012876684, -0.02684023, -0.004327573, 0.0015002363, -0.016727097, 0.0023907686, -0.027065556, -0.002397396, 0.029345319, -0.033401176, 0.0051957383, -0.003361656, -0.008184614, -0.018277865, -0.024759285, -0.016700588, -0.0047053243, 0.012817038, 0.014606387, -0.00785988, 0.0119753815, -0.00814485, 0.004218224, -0.0072302944, -0.011703666, -0.018105557, 0.0073495843, -0.006782957, -0.01583905, 0.0034792891, 0.012803785, 0.013201417, -0.012850175, 0.018330883, 0.031545553, -0.009079288, -0.011292779, 0.010795738, 0.042864844, -0.013877394, -0.0093642585, -0.011703666, -0.012545323, 0.02262532, -0.03618461, -9.957395E-4, -0.021922836, -0.027622242, 0.01807905, -0.010934909, -0.017310292, -0.021631237, 0.02522319, -0.03189017, 0.027251119, 0.038252298, 0.009510057, -0.0034395258, 0.01697893, -0.044375848, 0.027489698, 0.0053581055, 0.058001406, -0.004529703, 0.0027304136, -0.009735382, -0.0043938453, 2.0451179E-4, -0.012764021, 0.015560706, -0.0552975, -0.011140352, -0.08063998, 0.030246621, 0.014884731, -0.0271981, -0.013148399, -0.00581207, 0.023022953, -0.0072965664, 0.01086201, 0.021551711, -0.0024355024, 0.005649703, -0.012903192, -0.007429111, -0.023288041, -0.014990766, 0.00809846, -0.015401653, 0.016236683, 0.030803306, 0.0010015382, -0.007448992, -0.0042778687, 0.02041183, -0.009768519, 0.024971355, -0.011146979, 0.009510057, 0.009728755, -0.0060175136, 0.043819163, -0.0032059164, -0.0039365673, 0.033427685, -0.005596685, -0.02202887, 0.019431002, 0.010331832, -0.009039525, -0.051930875, -0.025037628, -0.012558577, -0.010471003, -0.03517727, -0.0022317155, 0.025289461, 0.015454671, 0.0065311226, 0.006087099, 0.028762124, 0.0017413014, 0.013797867, -0.0034958571, -0.042308155, -0.008794318, -0.013665322, 0.007250176, -2.3443782E-4, 0.017084967, -0.0031363307, 0.046735138, -0.016369227, -0.0010147927, -0.020743191, 0.0068127797, -0.013095382, -0.021233605, -0.0051261527, 0.0046688747, -0.012969465, -0.026575143, -5.5554723E-5, 0.017880233, 0.029159756, -0.0039564488, 0.0014944376, 0.01736331, 0.008641891, -0.026694432, 0.011272897, -0.004725206, 7.513608E-4, -5.8029575E-4, 0.01183621, 0.005841892, 0.003591952, -0.011498222, 0.0135592865, -0.017442835, 0.016687334, -0.024215853, 0.021193841, -0.0041353838, -0.017257275, 0.022201179, 0.02298319, -0.0075086374, -0.001862248, 0.03793419, 0.013811121, -0.03170461, 0.0033550288, -0.011763311, -0.025408752, 0.01255195, 7.592306E-4, -0.009642601, -0.007342957, 0.007733963, 0.0016584612, -0.011398814, -0.0019848517, 0.014871476, 0.02360615, -0.026800467, -0.014844967, 0.002539881, -0.013797867, -0.03401088, 0.027436681, 0.019444255, 0.013665322, 0.0033566856, 0.015110056, 0.04031999, 0.0013428399, -0.014102719, 0.001631124, 0.009291359, -0.007044732, 0.007985797, -0.008959998, 0.004579407, 0.0010454436, -0.017986268, -0.018277865, -0.009715501, 0.010225796, 0.029053722, 0.11324589, 0.0015805913, -0.0017893487, -0.010053489, -0.020226268, 0.011703666, 0.016846387, -0.016395736, -0.011922364, -0.041168276, 0.01969609, -0.005875028, -0.037722122, 0.01283692, -0.0304852, 0.007555028, 0.014964257, 0.020676918, -0.010305323, -0.010325205, 0.0059910044, 0.0028497034, 0.011557867, 0.0014223666, 0.0024852066, -5.3390523E-4, 0.05116212, 0.017283782, -0.009510057, -0.029504372, 0.0042248513, 0.034063898, -0.02794035, -0.013400233, 0.011604258, -0.008462957, -0.011743429, -0.0030170407, 0.025289461, -0.034859166, 0.006037395, 0.014102719, -0.019537037, -0.00962272, 0.010510767, -0.01571976, -0.013188163, -0.029239284, -0.055986732 ], - "id" : "baf2a065-6ce5-46d0-99a1-7fe41676a411", - "metadata" : { - "name" : "SwiftRide Hybrid" - }, - "text" : "- Size: M, L - SwiftRide alloy quill, 31.8mm clamp, adjustable rise, 105mm length\n- Headset: VP sealed cartridge, 1-1/8'', threaded\n- Brake: Shimano MT200 hydraulic disc\n- Brake rotor:\n - Size: XS, S, M, L - Shimano RT26, 6-bolt, 180mm\n - Size: XS, S, M, L - Shimano RT26, 6-bolt, 160mm\n\nAccessories\n- Battery: SwiftRide PowerTube 500Wh\n- Charger: SwiftRide compact 2A, 100-240V\n- Computer: SwiftRide Purion\n- Motor: SwiftRide Performance Line Sport, 65Nm, 25mph\n- Light:\n - Size: XS, S, M, L - SwiftRide SOLO for e-bike, taillight\n - Size: XS, S, M, L - SwiftRide MR8, 180 lumen, 60 lux, LED, headlight\n- Kickstand: Adjustable length rear mount alloy kickstand\n- Cargo rack: SwiftRide-compatible alloy rear rack, maximum load 25 kg / 55 lbs\n- Fender:\n - Size: XS, S, M, L - SwiftRide wide\n - Size: XS, S, M, L - SwiftRide plastic\n\nWeight\n- Weight: M - 22.30 kg / 49.17 lbs\n- Weight limit: This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg).\n\n## Sizing\n\n| Size | Rider Height | Inseam |\n|:----:|:-------------------------:|:--------------------:|\n| XS | 147 - 155 cm (4'10\" - 5'1\") | 69 - 73 cm (27\" - 29\") |\n| S | 155 - 165 cm (5'1\" - 5'5\") | 72 - 78 cm (28\" - 31\") |\n| M | 165 - 175 cm (5'5\" - 5'9\") | 77 - 83 cm (30\" - 33\") |\n| L | 175 - 186 cm (5'9\" - 6'1\") | 82 - 88 cm (32\" - 35\") |\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\n\nSizing table\n| Frame size number | 40 cm | 45 cm | 50 cm | 55 cm |\n|---------------------------|-------|-------|-------|-------|\n| Frame size letter | XS | S | M | L |\n| Wheel size | 700c | 700c | 700c | 700c |\n| A — Seat tube | 39.0 | 44.0 | 50.0 | 55.0 |\n| B — Seat tube angle | 71.0° | 71.0° | 71.0° | 71.0° |\n| C — Head tube length | 16.0 | 16.0 | 18.0 | 20.0 |\n| D — Head angle | 68.2° | 68.2° | 68.2° | 68.2° |\n| E — Effective top tube | 58.2 | 58.7 | 59.8 | 61.0 |\n| F — Bottom bracket height | 29." - }, - "a86d2889-2ce3-402d-b585-ce4bc572c902" : { - "embedding" : [ 0.014264561, -0.002377427, -0.022031723, -0.015021015, -0.011373826, 0.020870026, -0.0027286375, -0.032716636, 0.0060887793, -0.011333302, 9.481003E-4, -0.0011194844, -0.027502507, -0.023922857, -0.011529169, 0.023166403, -1.3096532E-4, -0.014440167, -0.0065210387, -0.0077806697, 0.0068148402, 0.014669804, -6.952454E-4, -0.010934813, -0.00406594, -0.011502153, 0.04244247, -0.0058490103, -0.0029160627, -0.023139387, 0.017087756, 0.017668605, -0.032230344, -0.014615772, -0.01962728, 0.001127927, 0.029150495, -0.0025209505, 0.031987198, 0.017330902, 0.015385734, 0.001269762, -0.017465983, -0.0019451674, -0.011725037, 0.03425656, 0.0063623185, -0.0029295706, -0.0060077305, 0.008618172, -0.013778269, 0.035013013, -0.005318817, 0.006578448, -0.0018894465, -0.023612171, 0.021464381, 0.0011920905, 0.0536542, 0.0022524768, 0.0024297708, 0.01006354, -0.0378227, 0.0022068871, -0.0298259, -0.024638787, -0.017506506, -8.746499E-4, 0.010948321, 0.03612068, 0.0025327702, 0.019843409, 0.042577554, 0.019964982, 0.0038599416, -0.021018615, 0.012684112, -0.022504507, 0.005203998, -3.6872912E-4, 0.016142188, -0.018789778, -0.01897889, -0.002647589, 0.030393241, 0.004687313, 0.0016690955, -0.007915751, -0.010644388, 0.007956275, 0.0011397465, 0.008071094, 0.0071390346, 0.0101513425, -0.0062880237, -0.011758807, -0.019465182, 0.013177158, -0.009827148, -0.021113172, 0.005686913, 0.01791175, -0.01309611, -0.016493399, -0.021383334, -0.016804086, -0.020964582, -0.008712729, 0.010320194, 0.0052377684, -0.020613372, 0.017641587, 0.0016007107, 0.01081324, 0.007193067, -0.009320594, 0.037066247, 0.009975737, 0.0288263, -0.0068823807, 0.020640388, 0.021788577, 0.0079900455, -0.046440873, 0.001891135, 0.017614571, -0.012515261, -0.006142812, 0.010333702, -0.020316193, -0.00390722, -0.0018708728, 0.00903017, 0.017033722, -0.015858518, 0.008604664, 0.00977987, 0.016871626, -0.031149695, -0.022653095, 0.010684913, 0.0038937118, 0.00203297, -0.004521839, -0.0029397018, -0.01691215, -0.021748053, 0.02704323, 0.013967383, -0.0063724495, 0.0288263, -3.9511215E-4, 0.020951074, 0.023355518, 0.015547832, -0.012319393, -0.0057612075, 0.014669804, -0.015156096, -0.023855317, -0.029717837, -0.007963029, 0.004768362, -0.024017414, 0.026435366, 0.02304483, 0.006591956, -0.031446874, 0.014575248, -0.009658297, -0.0278267, 0.019600263, -0.02704323, 0.008712729, -0.006443367, 0.03876827, 0.002397689, -0.014804886, -0.021599464, -0.011515661, 0.0069904453, 0.012170805, 0.012636834, 0.014858918, -0.009577248, 5.272383E-4, -0.00444079, -0.032500505, 0.011731791, -0.00182866, 0.016939167, -0.0031355694, -0.00952997, 0.005767962, -0.60429865, -0.023936367, -0.0077468995, -0.0052242605, -0.005575471, -4.57165E-4, 0.009334102, 0.015574847, -0.014521215, -0.008476337, -0.016101664, 0.019856917, 0.006787824, -0.019937966, -0.029906949, -0.031960182, 0.011076648, -0.004150366, 8.9828914E-4, -0.01641235, -0.040119078, -0.01584501, -0.02326096, 0.011927659, 0.012123526, -0.0138728265, 0.0091922665, -0.0012216395, -0.0019249052, 0.01106314, -0.03131179, 0.048359025, -0.01412948, -0.0014124415, 0.032662604, -0.047494505, -0.013312239, 0.020815993, 0.0077941776, 0.028961381, -0.023639187, -0.008118372, -2.0905907E-4, -0.028069846, -0.0071255267, 0.005926682, 0.02912348, -0.015466782, 2.7480556E-4, -0.029069446, 0.014588756, -0.009185513, 0.017817194, -0.011610218, -0.011643988, -0.017101264, 0.023396041, 3.0446006E-5, 0.016371826, 0.0013584091, -0.0102661615, 0.0094354125, -0.009077448, -0.008152143, -0.008685713, 0.009590756, -0.055329207, -0.036363825, 0.02312588, -0.014507707, 0.009212529, 0.023882333, -0.005534947, 0.019397642, 0.020883534, 0.033662204, 0.008253453, -0.0049676066, -5.7536096E-4, 0.01309611, -0.0058388794, 0.00544039, 0.0016319482, -0.032176312, 0.032446474, 0.0023402795, 0.01491295, -0.0075105075, 0.021450873, 0.0130285695, 0.029717837, 0.008057586, -5.7451666E-4, -0.011326548, -0.013312239, 0.023058338, -0.0058388794, 0.014669804, 0.01184661, -0.043334007, -0.008449321, 0.013210929, 0.025935566, 0.004633281, 0.020532323, -0.0026391465, 0.008523616, -0.010928059, 0.022099264, -0.024922458, -0.0011996888, -0.019492198, -0.035877533, 0.01756054, -0.022599064, -0.030069046, 0.0057612075, 0.012204574, 0.014034923, -0.016641987, 0.023814794, -0.008158897, 0.025813993, -0.0076726046, -0.02569242, 0.012805685, 0.01776316, -0.004842656, -0.012893489, -0.016885133, 0.007929259, 0.021315793, 0.048845317, -0.020532323, 0.030420257, 0.023895841, 0.023801284, -0.0015770715, -0.00207856, -0.017020214, -0.02790775, -0.001009731, -0.0035121078, -0.04652192, -0.012258607, -0.015237145, -0.019330101, 0.008969383, -0.014615772, -0.007294378, -0.01756054, -0.02011357, -0.01202897, -0.003785647, -0.008422305, -0.025827501, -0.022680111, -0.021788577, -0.019168004, -0.03633681, 0.01491295, 0.004562363, -0.024530722, 0.002956587, 0.017736144, 0.010056785, 0.011265761, 0.022139788, -0.0031254382, -0.029096464, -0.010617373, -0.0120762475, -0.017141787, 0.009023416, -0.03017711, 0.009496199, -0.013616172, 0.0030646517, 0.011177959, -0.01676356, 0.011049632, 0.014399642, -0.052357424, 0.010556586, 0.016574448, 0.0039544986, 0.010050031, 0.015953075, -0.015480291, 0.0053492105, 0.0013170404, -0.0021427234, -0.024247052, 0.003213241, 0.0057375687, 0.0059570754, 0.019357117, 0.004646789, -0.005328948, 0.025989598, 0.019330101, 0.008955875, 0.023922857, 0.0044745603, 0.020424258, -0.031554937, 0.013609418, -0.007328148, 0.024665803, 0.0120762475, 0.017074248, -0.025071047, -0.0013592533, 0.0048527876, -0.006703398, -0.008165651, 0.0051499656, 0.041956183, -0.0066966442, 0.0021157074, -0.0017560539, 0.010556586, 0.03568842, -0.0057206834, -0.008422305, 0.015385734, 0.018938366, 0.048332006, -0.020748453, -0.027259361, -0.008422305, 0.034796882, 0.017601063, -0.010556586, 0.0064940224, -0.003913974, 0.017425459, -0.014926459, 0.053330008, 0.0037417456, 0.037714634, 0.042523522, 0.0075442777, -0.01869522, 0.028231943, 0.014804886, 0.006595333, 0.020572847, 0.04495498, 0.00581524, 0.0045015765, 6.830037E-4, 0.003130504, 0.00856414, 0.00984741, -0.01512908, -0.003640435, 0.026719036, -0.0015610306, 0.016317794, 0.014426659, 0.007402443, 0.02334201, 0.023071848, 0.029150495, -0.033932365, -0.024800885, -0.01697969, -0.012157297, -0.030960582, 0.0012689178, -0.005409997, -0.0052276375, 0.010117572, 0.0056227497, 0.005950321, 0.023314994, 0.006017862, 2.6467448E-4, 0.029150495, -0.0059942226, -0.038417056, 0.014264561, 0.0046231495, 2.065263E-4, 0.008098111, -0.007848211, 0.0063724495, -0.0048460336, 0.039578754, -0.002765785, 0.020221636, 1.5618748E-4, -0.0021798708, -0.02012708, 0.0035121078, 0.03131179, -0.023436565, 0.014737345, 6.171517E-4, -0.020289177, 0.0028164403, -0.014318594, -0.023787776, 0.03460777, -0.015412751, -2.8113747E-4, -0.020221636, 0.008787024, 0.005176982, -0.006298155, -0.031798083, -0.0121978205, -0.014818394, -0.0077874237, 0.01034721, 0.0053525874, -0.010225637, 0.015790977, -0.03460777, -0.019829901, -0.019019416, -0.029501706, -0.016952675, 0.022288376, 0.041740052, -0.0041199727, 0.011481891, -0.027853716, -0.014224037, -0.009334102, -0.0052681617, 6.027993E-4, 0.01641235, -0.005298555, 0.006912774, -0.019073447, -0.014818394, -0.016331302, -0.011009107, 0.0058827805, -0.023179911, 0.017709129, -0.0018658073, -0.0027877355, -0.017047232, -0.0049473443, 0.024908949, 0.023733744, -9.599199E-4, 0.012427459, 0.0067304145, 0.011076648, -0.019235544, 0.006804709, 0.0012587868, 0.02539524, -0.0053154402, -0.01776316, 0.012704375, 0.012049232, -0.002561475, 0.032770667, 0.027597062, -0.0039241053, 0.017925259, -0.0031372579, 0.0059975996, 0.015817994, -0.0030832253, 0.007206575, 0.011920905, 0.031284776, -0.004964229, 0.026354317, 0.0011853364, -0.027651096, -9.6836244E-4, 0.0076253265, 0.008895089, -0.012657097, -0.0067304145, -0.010583602, -0.025206128, 0.002384181, -0.022423457, 0.007402443, -0.0012773604, 0.008003553, -0.010320194, -0.012609818, 0.020667404, 0.011657497, -0.011529169, -0.046981197, -0.0064973994, -0.019789377, 0.01797929, -0.0130353235, -3.588091E-4, 0.025881533, -0.034580756, 0.019303085, 0.0010747388, -0.017668605, 0.027516015, 0.0049540983, -9.700509E-4, -0.004028793, 0.008793778, 0.037012212, 0.005558586, 0.016196221, 0.004795378, 0.026813593, -0.009854164, 0.016236745, -0.0117182825, -0.0057645845, -0.0010375915, -0.0020836254, 0.037795685, 0.02476036, -0.033229943, 0.0034952227, -0.024084955, 0.0031592085, 0.0111036645, 0.008152143, -0.012481491, 0.004059186, -6.05332E-4, 0.01269762, -0.022436965, -0.01769562, -0.0050756712, -0.014278069, 0.0049372134, -0.033581153, 0.017492998, 0.014750853, -0.004916951, -0.01341355, -0.012184313, 0.013940367, -0.05630179, 0.04587353, 0.0111104185, -0.020613372, 0.04317191, 0.011860118, 0.007875226, 0.0046231495, 0.022220837, 0.027934765, 0.049844917, -0.0030021768, -0.0047751158, -0.018722236, -0.014615772, -0.022585556, 0.013737745, 0.0058726496, -0.005703798, -0.006416351, 0.007206575, 0.013953875, 0.016601464, -0.02526016, -0.024868425, -0.030096063, 0.003147389, -0.0033719612, 0.036363825, -0.014291577, -0.010435013, -4.3943562E-4, -0.034148496, -0.03425656, -0.009266562, -0.0105093075, -0.018924858, 0.007085002, 0.024247052, -0.005663274, -0.007861719, 0.010725437, 0.0019873802, -0.002601999, -0.00245341, -0.010860519, -0.0018708728, -0.035769466, 0.023828302, 0.035553336, 0.009773116, -0.0049574752, -0.027218835, -0.013427058, 0.030231144, -0.020815993, -0.019802885, -0.016736545, -0.038065847, -0.0027522768, -0.026246252, -0.01634481, -0.017655097, -0.034985997, -0.0053627184, 0.03141986, 9.6192496E-5, 0.018627679, 0.0053728498, -0.018830301, -0.031960182, 0.042766668, -0.0044576754, 0.016142188, 0.011974937, -0.011495399, -0.025314193, -0.018087355, 0.014872426, -0.029906949, 0.011144188, 0.017533524, -0.027205328, -0.0066155954, 0.0059705833, 0.011448121, -0.018654697, 0.017371425, -0.0133865345, 0.0013786711, -0.02590855, -0.009800131, -0.024071448, -0.0065987105, 0.02619222, -0.021005107, 0.027651096, -0.020748453, 0.0027539653, 0.038849317, 0.0107524535, 0.0278267, 0.007274116, 0.013224437, 0.0069701835, -9.531658E-4, -7.095978E-4, -0.021342808, 0.009638035, 0.014575248, 0.032230344, 0.02489544, -0.0045860023, 5.960452E-4, 0.0213293, -0.011583202, -0.020248653, 0.0047143293, 0.012974537, 0.023206929, 0.016682513, -0.0058388794, 0.0055957334, -0.018506106, -0.0028231945, -9.818706E-4, 0.011259007, 0.012083001, -0.015048032, 0.016236745, 0.027718635, -0.029852917, 0.015237145, 0.0074159508, -0.013366272, 0.013001553, -0.001881004, -0.0068148402, 0.008098111, 0.002970095, 0.072025225, -0.014521215, 0.009887935, 0.033581153, 0.0013871137, -0.012083001, -0.021558939, 0.005541701, 0.0209916, -0.02412548, 0.009752854, 0.0018033324, -0.013183912, 0.012008707, 5.850699E-4, 9.6414116E-4, -0.008273716, -0.018708728, -0.025098063, -0.0015534323, -0.0072403452, -0.015939567, -0.020505307, -0.02297729, -0.030393241, -0.030582355, -0.0053120633, 0.004396889, -0.036039628, -5.073983E-4, -0.012859718, 0.023233945, 0.039902948, 0.01134681, 0.0014580314, -0.0049000657, 0.012393688, -0.0066898903, 0.008800532, 0.020721436, 0.002949833, -0.010482291, 0.0070917564, 0.00909771, -0.019357117, 0.005295178, 0.004028793, -0.013042077, -0.050034028, 0.012576047, -0.0054775374, 0.004802132, -0.021950673, 0.01591255, 0.008611418, 0.009800131, 0.0077604074, -0.02404443, 0.021018615, 0.004153743, -0.0065244157, -0.0029548984, -0.023166403, 0.02497649, -0.0074767373, -0.024287576, -0.018857317, -0.012954275, -0.016804086, 0.024463182, 0.022423457, -0.009563739, 0.0017948897, -0.030447273, -0.016007107, -0.011481891, 0.018235944, -0.021072647, 0.007969784, 0.015534324, -0.005301932, 0.006949921, 0.028340008, -0.0064872685, -0.026921658, 0.009367872, -0.007719883, -0.031122679, -0.034418657, 0.0015880469, 0.040902548, 0.010570094, -0.02091055, 0.006669628, -0.018452074, -0.049655803, -0.028988399, -0.011191467, 0.024152495, 0.017547032, 0.006176582, -0.001394712, 0.016182713, 0.038200926, 0.029015414, -0.01294752, -0.0048966887, 9.852475E-4, 0.008638434, 0.020302685, 0.008732991, -0.04808886, -0.016520415, 0.01919502, 0.039713833, 0.0017391688, 6.0828694E-4, 0.0058557643, -0.021748053, 2.5792042E-4, -0.018600663, 0.020748453, 0.015304686, 0.0042111524, -0.051871132, -0.023139387, -0.010191867, 0.0025834255, -0.005085802, -0.0055146846, -0.031663004, -0.0027083755, 0.0033179289, -0.011900642, -0.006443367, -0.01662848, -0.01641235, 0.022018215, 0.01441315, -0.0068621184, 0.042712636, 0.019222036, -0.021734545, -0.0071322806, 0.015953075, -0.015399242, -0.019303085, 0.018897843, -0.029609771, -0.0014656297, 0.003775516, 0.0073686726, 0.014156496, -0.003171028, 0.0102729155, -0.016371826, -0.003883581, 0.03290575, 0.008293978, -0.029744852, -0.01897889, 0.015480291, -0.02019462, 0.0106241265, -0.0032436342, -0.0066257264, -0.030231144, 0.016804086, -0.009941967, -0.025949074, -0.012211329, 0.014777869, 0.0028096864, 0.012616572, -0.008685713, 0.18749252, 0.009185513, -0.011265761, 0.023098864, 0.010961829, -0.016614972, 0.010549832, 0.011968183, -0.00365732, -8.011996E-4, -7.1592967E-4, 0.03290575, -0.009644789, 4.7995994E-4, 0.038363025, -0.027718635, -0.03803883, -0.0014858918, -0.005683536, -0.003209864, -0.009388135, 0.005541701, -0.006632481, -0.043415055, 0.020019015, 0.0056126183, -0.017736144, -0.017168805, 0.00803057, 0.014521215, -0.0024618525, 2.722728E-4, 0.0039680065, -0.004136858, -0.026786577, -0.011333302, 0.0017982668, 0.007449721, -0.0054302593, 0.030393241, 0.012285624, -0.023909349, 0.00831424, -0.018506106, 3.2440564E-4, -0.0025513438, -0.0079832915, 0.0094354125, -0.028177911, -0.01562888, -0.020897042, 0.016858118, 0.0034445673, 0.034580756, -0.0132717155, -0.03504003, 0.0096718045, -0.008192667, 0.0030697174, -0.010819994, -0.0223289, 0.032365426, 0.01712828, 0.019708328, -0.0104958, 0.022612572, -0.019964982, -0.03739044, 0.013487845, -0.007854965, -0.009455675, -0.0022423458, 0.009536724, 0.0025074424, -0.02697569, -0.0409836, 0.02290975, -0.008874826, 0.01341355, 0.012245099, 0.022207329, -0.02041075, 0.017438967, 0.008483091, -1.0942358E-5, -0.04017311, 0.028150896, -0.009665051, 0.021734545, -0.008476337, 6.5113294E-5, 0.014170004, -0.009773116, -0.0014892688, 0.012967783, 0.013231191, -0.016898641, 0.02326096, -0.019438166, -0.0077806697, -0.029555738, 0.045198128, -0.012218083, -9.4472326E-4, -0.047413457, 0.0058321254, -0.01244772, 0.011306286, 0.00578147, -0.029204527, -0.0023470337, -0.04246949, 0.0018387911, -0.012893489, 0.012954275, -0.0038700728, 0.0015137523, -0.007956275, 0.0067776926, -0.012440966, 0.018398043, -0.023301484, 0.01252877, -0.004434036, 0.033716235, -0.027461981, -9.117972E-4, 0.010718683, -0.0014259495, -0.028718235, 0.014845409, 0.0061630737, 0.015588355, 0.0019772493, -0.017236345, 0.0070039537, -0.0068958886, -0.0063217944, 0.005197244, 0.0077468995, 0.0065683173, 0.0029025546, 0.018830301, -0.010205375, 0.03274365, -0.01884381, -0.004721083, -0.0068486105, -0.02925856, -0.016331302, -0.0268271, 5.572094E-4, 0.005686913, -0.003910597, 0.006541301, 0.011292778, -0.01662848, -0.04303683, -0.027570046, 0.01016485, -0.039497707, -0.021464381, 0.004629904, 0.012440966, -0.020343209, -0.006291401, -0.17041828, -0.004916951, 0.0075105075, -0.0060077305, -0.002789424, 0.026678512, 0.015426259, 0.0040895795, -0.022382934, 0.0030190619, 0.02419302, 0.0012815817, -0.040524323, -0.023396041, 0.013690467, -0.0022051984, -0.026665004, -7.2774926E-4, 0.025705928, 0.008206175, -6.542989E-4, -0.03304083, 0.017506506, -0.009482691, -0.013859318, 0.022666603, 0.011306286, 0.04238844, 0.021869626, 0.0012917127, -0.011117172, -0.04889935, 0.021748053, -0.025219636, -0.009563739, -0.007969784, -0.009773116, 0.0060921563, -0.0022355916, 0.04811588, 0.00856414, -0.0022541655, 0.017330902, 0.015872026, 0.012143788, 0.039686818, -0.012177559, -0.0036066647, 0.0064906455, -0.015696421, 0.047494505, -0.017547032, 0.030960582, 0.0047041983, 0.016290776, 0.007166051, -0.0037586307, 0.025638387, 0.028340008, -0.02404443, -0.017776668, -0.021518415, 3.0688732E-4, -0.004383381, -0.0026627856, -0.029717837, -0.0048933118, 0.027232343, -0.027083755, 0.0025209505, 6.897577E-4, -0.007834702, 9.590756E-4, -0.0014622526, 0.02661097, 0.017857717, -0.029609771, -0.0023031323, 0.025071047, -0.0088275485, -0.0106241265, 0.04260457, 0.0039815144, 0.0042212834, -0.013460829, -0.006193467, -0.0063521876, 0.012467983, 0.009759608, -0.006389335, -0.01877627, -0.02647589, 0.0067574307, -0.003802532, 0.012123526, 0.0063521876, -0.0029211282, -0.017452475, 0.007949521, 0.005930059, -0.0057341913, -0.011123926, -0.031879134, 0.01626376, 0.04287473, -0.0111104185, 0.0058321254, 0.019438166, 0.01366345, 0.019735344, -0.019032924, 0.009556985, 0.021450873, 0.031149695, 0.0010232391, 0.016277269, -0.025354717, -0.047224343, 0.010448521, 0.001762808, 0.021302285, -0.019316593, -0.021383334, 0.010212129, -0.016506907, -0.038281977, -0.07359217, -0.0037316147, 0.018803285, 0.035850517, -0.020154096, 0.0033280598, -0.0062137293, 0.03033921, 0.0025344586, 0.03590455, -0.01977587, -0.034148496, 0.0011532546, 0.028961381, 0.010718683, 0.020154096, 0.0056126183, -0.0041199727, -0.04703523, 0.03117671, -0.01884381, -0.025300685, -0.0027674735, 1.0954231E-4, -0.019870427, 0.0015382357, -0.022450473, 0.031771068, 0.03169002, 0.010252654, -7.670072E-4, -0.020451274, -0.0149534745, 0.015588355, -0.014656296, -0.01841155, -8.011996E-4, -0.008044078, 0.029933965, -0.03285172, -0.0015618749, -0.0011422794, -0.009043678, -0.033554137, -0.012711129, -0.0069364132, -0.0218291, 0.034580756, -0.0029869801, -0.013859318, -0.017492998, -0.010772715, 0.005697044, -7.898021E-4, 0.003295978, -0.024962982, -9.1686274E-4, -0.0068722493, -0.009023416, -0.00706474, -0.0070985104, 0.002213641, -0.016452875, 0.012332901, 0.01269762, -0.020356717, -0.0024331477, 0.006956675, 0.040578354, 2.2436121E-4, 0.0017948897, 0.01834401, -0.020019015, 0.027286377, -0.037633587, 0.0024230168, -0.029771868, -0.005416751, 0.0012039101, -0.008969383, -0.025597863, -0.015831502, 0.0129069965, -0.032203328, 0.011373826, 0.057760667, -4.6560756E-4, -0.0150750475, 0.006669628, -0.0398219, 0.031149695, 0.019505708, 0.05122274, 0.004059186, -0.011853364, -0.019019416, -0.0047751158, -0.0023824924, -0.018897843, -0.022828702, -0.044846915, -3.3791375E-4, -0.088721246, 0.02376076, 3.9279042E-4, -0.016641987, -0.019492198, 9.202398E-4, 0.026840609, -0.0067304145, 0.011265761, 0.02312588, 0.0050689173, 0.013082602, 0.0028096864, 0.0048190174, -0.024138987, 0.018114371, 0.007605064, -0.01712828, 0.012657097, 0.032176312, -0.004194267, 0.0040828255, -0.011988445, 0.02526016, -0.02397689, 0.016223237, -0.026178712, 0.011009107, 0.0015230391, -0.012690866, 0.027853716, -0.014467183, 0.0016319482, 0.061596967, -0.002831637, -0.013778269, 0.0032875356, 0.01202897, -0.0035087308, -0.033446074, -0.027772669, -0.017425459, -0.013758007, 0.0058422564, 0.0068148402, 0.01491295, 0.004771739, 0.0056193727, 0.008638434, 0.022599064, 0.01263008, 0.0070039537, 0.009482691, -0.029528722, 9.354364E-4, -0.017371425, -0.0026526544, 5.3821364E-4, 0.010765961, -0.015426259, 0.0468191, -1.5154408E-4, 0.0037484998, -0.012150543, 0.004879804, -0.013447321, -0.013535123, -0.007800932, 0.004677182, -0.014007907, -0.021464381, -0.0069904453, 0.019654296, 0.02011357, -0.017492998, 0.010765961, 9.5232157E-4, 0.0074767373, -0.019883934, 0.008307486, 0.0031912904, 0.0121978205, -0.0038295484, -8.55232E-4, 0.016966183, -0.0024078202, -0.011299532, 0.022369426, -0.022031723, 0.025530323, -0.03560737, 0.027002705, -1.4584535E-4, -0.0063960887, 0.026637988, 0.032770667, -0.0068654954, 4.288824E-4, 0.052276373, 0.015304686, -0.0144806905, 0.009827148, -0.018951874, -0.015534324, 0.0044711833, 0.013143389, -0.015331701, -0.024679312, 0.0078684725, 0.019168004, -0.0032183065, -0.022072246, -0.0020110195, 0.018452074, -0.009820394, 0.005079048, 0.0120694935, -0.012724637, -0.032419458, 0.029312592, 0.025868025, 0.009563739, -0.0037045984, 0.017857717, 0.028204927, -0.014264561, 0.016196221, 0.002502377, 0.019897442, -0.01134681, 0.0138728265, 0.012616572, 4.926238E-4, -0.010799732, -0.028718235, 0.005089179, -0.0024871803, 0.005980714, 0.02284221, 0.10752453, 0.014156496, -0.0107524535, 0.0049473443, -0.00228287, 0.03855214, 0.011549432, -0.006304909, -0.015291178, -0.028285976, 0.0068148402, 2.6425233E-4, -0.021005107, -0.012832702, -0.03660697, 0.040632386, 0.027461981, 0.01656094, 4.4450114E-4, -0.005534947, 0.017357918, -0.022180311, 0.013264962, -0.001512908, -0.0050722943, 0.00431584, 0.036769066, 0.025314193, -0.012393688, -0.02947469, 0.016601464, 0.004933836, -0.016371826, -0.0043529877, 0.017830702, 0.008854564, -0.012022215, -0.010394488, 0.028529122, -0.012940766, -0.0020836254, 0.0013136634, -0.009475937, -0.009388135, -0.003984892, -0.010462029, -0.012413951, -0.024287576, -0.06835102 ], - "id" : "a86d2889-2ce3-402d-b585-ce4bc572c902", - "metadata" : { - "name" : "VeloCore X9 eMTB" - }, - "text" : "Cassette\tShimano XT M8100, 10-51T, 12-speed\nChain\tShimano CN-M8100, 12-speed\nPedals\tNot included\n\nComponents\nSaddle\tBontrager Arvada, hollow chromoly rails\nSeatpost\tDrop Line, internal routing, 31.6mm (15.5: 100mm, 17.5 & 18.5: 125mm, 19.5 & 21.5: 150mm)\nHandlebar\tBontrager Line Pro, ADV Carbon, 35mm, 27.5mm rise, 780mm width\nStem\tBontrager Line Pro, 35mm, Knock Block, 0 degree, 50mm length\nGrips\tBontrager XR Trail Elite, alloy lock-on\nHeadset\tIntegrated, sealed cartridge bearing, 1-1/8\" top, 1.5\" bottom\nBrakeset\tShimano SLX M7120, 4-piston hydraulic disc\n\nAccessories\nBattery\tShimano STEPS BT-E8010, 504Wh\nCharger\tShimano STEPS EC-E8004, 4A\nController\tShimano STEPS E8000 display\nBike weight\tM - 22.5 kg / 49.6 lbs (with tubes)\n\n## Sizing & fit\n\n| Size | Rider Height |\n|:----:|:------------------------:|\n| S | 162 - 170 cm 5'4\" - 5'7\" |\n| M | 170 - 178 cm 5'7\" - 5'10\"|\n| L | 178 - 186 cm 5'10\" - 6'1\"|\n| XL | 186 - 196 cm 6'1\" - 6'5\" |\n\n## Geometry\n\nAll measurements provided in cm unless otherwise noted.\n\n| Frame size | S | M | L | XL |\n|---------------------------|-------|-------|-------|-------|\n| A — Seat tube | 40.6 | 43.2 | 47.0 | 51.0 |\n| B — Seat tube angle | 75.0° | 75.0° | 75.0° | 75.0° |\n| C — Head tube length | 9.6 | 10.6 | 11.6 | 12.6 |\n| D — Head angle | 66.5° | 66.5° | 66.5° | 66.5° |\n| E — Effective top tube | 60.4 | 62.6 | 64.8 | 66.9 |\n| F — Bottom bracket height | 33.2 | 33.2 | 33.2 | 33.2 |\n| G — Bottom bracket drop | 3.0 | 3.0 | 3.0 | 3.0 |\n| H — Chainstay length | 45.5 | 45.5 | 45.5 | 45.5 |\n| I — Offset | 4.6 | 4.6 | 4.6 | 4.6 |\n| J — Trail | 11.9 | 11.9 | 11.9 | 11.9 |\n| K — Wheelbase | 117.0 | 119.3 | 121.6 | 123.9 |\n| L — Standover | 75." - }, - "d6aa845b-224f-4800-af25-2ed541a781d4" : { - "embedding" : [ 0.03507578, 0.008490242, -0.038528975, -0.015892863, 0.017904961, 0.0049384795, -8.3908264E-4, -0.016830936, -0.009856566, -0.028495671, 0.012371689, 8.6032524E-4, -0.012038605, -0.008463051, 0.00309972, 0.008163955, 0.019087749, -0.008823326, 0.01805451, -0.009475898, 0.004061585, -8.012708E-4, -0.0063387915, -0.008286313, -0.017225198, -0.018788654, 0.0370335, -0.0085038375, -7.0865307E-4, -0.009904149, 0.0137720015, 0.013296167, -0.025953358, 0.0035517626, -0.011657938, 0.006444155, 0.02763917, 0.018843034, 0.031133153, 0.034232873, 0.029528912, -0.0054652956, -4.1784192E-4, 0.01369043, -0.01136564, -0.008218337, 0.010549924, 0.004683568, 0.008055193, -0.004483038, -0.015634552, 0.04241722, -0.022595327, -0.006274214, 4.135934E-4, -0.043803938, 0.0014309015, 0.012956286, 0.047773756, 0.015974434, 0.0023145936, 0.026007738, -0.043042604, 9.474199E-4, -0.022826446, -0.004799128, -0.012405678, 0.012922297, 0.0025440136, 0.0069267866, 0.037794832, 0.025994143, 0.02218747, 0.013799192, -0.0024539449, -0.0013399831, -0.015389838, -0.009992518, 0.0040309955, 0.026021333, 0.026918622, -5.62504E-4, -0.0031116158, 0.0026646715, 0.026687501, 0.013670037, -0.007321049, -0.006957376, -0.014778051, 0.013724418, 0.014560527, 0.031160343, 0.0034905837, 0.01991706, 6.164602E-4, 0.0038678523, -0.01653184, 0.017755413, -0.01575691, -0.003946025, 0.008218337, 0.007545371, -0.015281076, -0.015838481, -0.019237297, -0.0021361557, -0.018666295, 0.0058017783, 0.014179859, -0.0013476304, -0.014941194, 0.036353733, 0.02014818, -0.01254163, 0.011963831, -0.021874778, 0.055387102, 0.007946432, 0.016694983, -0.0025610076, 0.016096791, 0.024566641, 0.007436609, -0.012201749, 0.016382292, -0.001679015, -0.023302281, -0.012718368, 0.035320494, 9.4232167E-4, 0.0118822595, 0.005400718, 0.021358158, 0.03567397, -0.01645027, 0.020569634, -0.02838691, 0.023315877, -0.03154101, -0.02838691, 0.011746307, 0.01199782, -0.01653184, -0.012677583, -0.018775059, -0.0026493769, -0.010611103, 0.001368873, 0.014397384, 0.010325602, 0.028332528, 0.0036197389, 0.009992518, 0.021888373, 0.016219148, 9.618649E-4, 0.0056726234, 0.027788717, -0.03319963, 0.004775336, 0.003942626, 0.015077147, 0.013880763, -2.9463484E-4, 0.025586285, 0.018747868, 0.0063557853, 0.006396571, -0.012296915, -0.032873347, -0.022309827, 0.0023230906, -0.0175107, 0.0059003443, 0.009645839, 0.0052851583, -5.4508506E-4, -0.010121673, -0.0037556915, -0.0027105557, 0.032954916, -0.0027071568, 0.015172314, 0.013826382, 0.0026323828, 0.011868665, 0.0203793, -0.025790215, 0.016722174, -0.0028652018, 0.02020256, 0.016436674, 0.01099177, 0.0044218595, -0.6190739, -0.02787029, -0.023166329, -0.014614908, 0.0022602126, 0.02990958, 0.0031286099, 0.011555973, -8.288862E-4, -0.0058153737, -0.016042411, -0.0010638293, 0.007504585, -0.0028550052, -0.018272033, -0.025368761, 0.02014818, -0.009224386, -0.01787777, -0.024117997, -0.016423078, -0.00361634, -0.01725239, 0.0033257413, 0.008259122, 0.012589213, -0.008850516, -0.005410915, -0.016110387, 0.016477458, -0.025436737, 0.044864368, 4.4354546E-4, -0.004299502, 0.03619059, -0.03812112, 0.016083196, 0.008932088, 0.020324918, 0.020433681, 0.0025491118, 0.011406425, 0.005329343, -0.02993677, -4.10407E-4, 0.015158718, 0.025409546, -0.009183601, 0.012113379, -0.019590775, 0.004292704, -0.0049180863, 0.005648832, -0.004262115, -0.012276523, -0.012466856, 0.031241914, -0.018380797, 8.0551935E-4, 0.013724418, 0.009605054, 0.01598803, -0.01645027, -0.017130032, -0.016463863, 0.016545435, -0.050302472, -0.041601505, 0.009265171, -0.009543874, 0.028740386, 0.01650465, 0.0061416603, 0.02939296, 0.010461555, 0.027040979, 0.03681597, 0.0017758813, -0.014003121, 0.023207113, 0.01988987, 0.01305825, 0.0013935145, -0.028604433, 0.025640666, 0.0053565335, -0.0063557853, 8.084933E-4, 0.017578674, -0.006039696, 0.016287126, 0.003154101, -0.008938885, -0.0035177744, 0.011263675, 0.04336889, -2.534242E-4, 0.0013093938, 0.016191958, -0.041954983, -0.010787841, -0.008048396, 0.0073006563, 0.0132689765, 0.012881512, -0.0020002031, 0.012419273, -0.03455916, 0.020216156, -0.011685128, -0.0013824683, -0.042988222, -0.028522862, -0.00304194, 0.0010595808, -0.015213099, -0.0017690836, 0.015213099, 0.014519741, -0.03363468, -0.002916184, -0.022921614, 0.039507836, -0.0031591991, -0.013785597, -0.0027445438, 0.041655887, 0.0071443105, -0.012956286, -0.021086253, 0.035266113, 0.027190527, 0.039127167, -0.0036877152, 0.03610902, 0.0010493844, 0.013540882, 0.008395075, 0.018367201, -0.020882323, -0.036054637, -0.0014147571, -0.0036979115, -0.014247836, -0.01328937, -0.014791646, -0.015824886, -0.00826592, -0.006607298, -0.0029943567, -0.014737265, 0.0026187876, -0.01862551, -0.01423424, 0.0019730125, -0.019794703, -0.018951796, -0.028332528, -0.038420215, -0.017565079, 0.021942755, -0.011678331, 0.005886749, 0.011440414, 0.00826592, 0.01934606, 0.0066718752, 0.032275155, -0.015539385, -0.034069728, 0.008592206, 0.024675403, -0.01392155, 0.03469511, -0.0017452919, -0.0020171972, -0.027489621, 0.007790086, 0.006838417, -0.021086253, 0.010284817, 0.030290246, -0.049921807, 0.007178299, 0.004690366, 0.004061585, 0.028631624, 0.026646717, -0.024607426, 0.0058969455, -0.005794981, 0.011454009, -0.010379983, 0.019726727, -0.0103324, -0.023954853, 0.020338513, 0.002229623, -0.00355856, 0.008585408, 0.022024326, -0.008864111, 0.014682884, -0.011685128, 0.010339198, -0.015389838, 0.015294671, -0.0077221096, 0.012847523, -0.014791646, 0.019128535, -0.023954853, -0.02138535, -0.007355037, -0.012623202, 0.0073278467, 0.011406425, 0.03567397, -0.0036843163, -0.021698039, -0.004527223, 0.030099912, 0.008571814, -0.013275774, -0.00421793, 0.014261431, 0.006291208, 0.040894553, 0.009509887, -0.043232936, 8.4885425E-4, 0.028876338, 0.016803745, -0.018584725, 0.014846027, 0.01190945, 0.012854321, -0.013901156, 0.036897544, -0.0203793, 0.021602873, 0.01785058, 0.018095296, -0.0032254762, 0.0142750265, 5.5868033E-4, 0.022880828, 0.014098288, 0.018802248, 0.026714692, -0.0154986, 0.010352793, 0.006345589, 0.0070219534, 0.013133024, -0.003949424, 0.020651205, 0.009394327, 0.004574806, 0.008551421, 0.013962335, 0.015933648, 0.017415533, 0.0038848463, 0.0069063934, 0.0013680233, -0.003762489, -0.02761198, 0.0055978494, -0.027285693, 0.016300721, -0.005492486, 0.011086937, -0.007266668, 0.02451226, 0.0041431566, 0.0039528226, -0.011637545, 0.0058935466, 0.036462497, -0.014478955, -0.041084886, 0.018870225, 0.044293366, -0.017320365, 0.005720207, -0.0061824457, -0.001816667, -0.0047175563, 0.034287255, 0.012262927, 0.016966889, 0.0012099784, -0.0053021526, -0.022948803, -0.00906804, 0.0077560977, -0.020542443, -0.004741348, -0.019264488, -0.011821081, -1.10886365E-4, -0.01785058, -0.020841539, 0.02694581, 0.0071443105, 0.011141318, -0.028522862, 0.0180817, -0.021330968, 0.017918557, -0.03929031, -0.016898911, -0.0189382, 0.008626195, 0.008592206, 0.0022398196, -0.033933777, 0.0080755865, -0.025395952, -0.013323358, -0.0061484575, -0.012242534, 4.3674783E-4, 0.04187341, 0.016205553, -0.0077560977, 0.017374747, -0.016735768, 0.0015320162, -0.020814348, -0.012963084, 0.01725239, 0.026075715, -0.01575691, 0.005410915, -0.003179592, -0.012663987, -0.0033886193, -0.015838481, 0.010842223, -0.044211794, 0.0060668862, 0.018122485, -0.022622518, -0.008279515, 0.022568136, 0.0013629252, 0.017986532, 0.0012150767, 0.013812787, 0.010617901, 0.0046223896, -0.0079260385, 0.0021990337, -0.006532524, 0.006637887, -0.011440414, -0.03050777, 0.017401937, -1.49893085E-5, -0.008646587, 0.018448772, 0.018040914, -0.010216841, 0.01018965, -0.0017418931, 0.0027513413, 0.0046427823, -0.015049956, 0.0011844872, -0.013357346, 0.005006456, -0.039480645, 0.011963831, 0.020501656, -0.009346743, -0.007715312, 0.00826592, 0.015036361, -0.0016110387, -0.02990958, -0.022772066, -0.03194887, -0.002987559, -0.010128471, 0.0059105405, 0.008469849, 0.0010400376, -0.019196512, 0.0074841925, -0.0028736987, -0.0071850964, -0.0035517626, -0.011447212, -0.005536671, -0.0072530727, 0.026225263, -0.0040717814, 0.005842564, 0.03401535, -0.056066863, 0.01839439, 0.0077425023, -0.005407516, -0.0056556296, -0.0015838481, -0.020175371, 0.0049894615, 0.0032424703, 0.023941258, -0.016599815, 0.029420149, 0.007592954, 0.0019305274, -0.031214723, 0.027136145, -0.013139822, -0.0015371144, -0.0097138155, 0.01831282, 0.026592335, 0.0065019345, -0.017836984, -0.007321049, -0.014261431, 0.012371689, 0.015457815, 0.023778114, 0.0038406618, 0.004561211, -0.003670721, -0.012983476, -0.026130095, -0.02471619, 0.016164768, -0.0026476774, 4.537419E-4, -0.027557598, 0.008306705, 0.012663987, 0.013642847, 0.01328937, -0.009482696, 0.01239888, -0.047800943, 0.028495671, -0.0025525107, -0.007028751, 0.019101344, -0.0034446998, -0.0078104786, 0.012426071, 0.02459383, 0.033362776, 0.029039482, -0.0059139393, -0.00826592, -0.02738086, -0.041438363, -0.017524295, 0.009870161, -0.0016611712, -0.005992112, -0.01857113, 0.009217588, 0.0076269424, 0.03776764, 0.009863364, -0.023750925, -0.04456527, -0.0072462754, -0.01994425, 0.03374344, -0.0024947308, -0.011603557, -0.020066608, -0.024403498, -0.02758479, -0.00763374, -0.0025389155, -0.04135679, 0.0016739168, 0.044674035, 0.027530408, -0.0016212352, 0.010012912, 0.024621021, 0.0012040305, 0.012031808, -0.014519741, -0.016586222, -0.028631624, 0.010481948, 0.029528912, 0.0033886193, -0.010692675, -0.03053496, -0.014438169, 0.024661807, -0.014900409, -0.017401937, -0.008055193, -0.020420086, 0.004279109, -0.02694581, -0.011923046, -0.004809324, -0.023152733, -0.018068105, 0.026306834, -0.0101692565, 0.032220773, 0.034042537, 0.014873218, -0.001498028, 0.033145253, 6.5767084E-4, 0.03412411, 0.010774246, -0.016056005, -0.018258438, -0.013316561, 0.023642162, -0.010889806, 0.008483444, 0.017198008, -0.02893072, -0.025164831, 0.02893072, 0.012262927, -0.025232809, 0.009373934, -0.0049894615, -0.02373733, -0.018108891, -0.010631496, -0.041003313, -0.021969944, 0.02402283, -0.013907954, 0.016300721, -0.010645091, -0.010611103, 0.040187597, 0.007321049, 0.007042346, -0.015607362, -0.001716402, 0.01859832, -0.02895791, 0.004799128, -0.036353733, -0.0014402482, 0.010794639, 0.030616533, 0.028604433, -0.016382292, -0.006719459, -0.009577863, 0.006549518, -0.022554541, -0.008578611, -2.640455E-4, 0.00967303, 0.037115067, 0.017374747, -0.01834001, -0.0026986597, 0.021915564, -0.005438105, -0.010971378, 0.022228256, -0.019468417, 0.009190398, 0.021616468, -0.027979052, 0.0094691, 0.025273593, -0.017143628, 0.008972874, -0.014397384, -0.010345995, 0.0012507642, 0.0074841925, 0.036462497, -0.011263675, 0.008612599, 0.025763024, 0.0039596204, -0.02787029, -0.0049554734, 0.016028816, 0.019046964, -0.002224525, 0.0026765675, -0.02758479, -0.012283321, -0.01225613, -0.027136145, -0.028142195, -0.019006178, 0.018761463, -0.009910947, -0.011583164, 0.013234989, -0.014438169, -0.018272033, -0.0015541085, -0.02100468, -0.024743378, 0.0071647037, 0.005754195, -0.02407721, -0.013302965, -0.019767512, 0.005203587, 0.0042689126, 0.0232479, -0.0077493, -0.011270473, 0.0051186164, -0.03556521, -0.01730677, 0.017265985, 0.0013510293, 0.0024403497, 0.022309827, -0.006733054, -9.49969E-4, 0.013670037, -0.013248584, -0.02319352, -0.020569634, 0.0027819306, -0.020678395, 0.011725915, -0.022894423, 0.0038644536, 0.010121673, -0.007524978, -0.020216156, -0.022364208, -0.005461897, 0.01787777, -0.0024862338, 0.017483508, -0.03880088, 0.007470597, 0.003366527, -0.0016934599, 0.017347556, -0.013234989, -0.005958124, 0.013404929, 0.018013723, -0.009074838, 0.0048297173, -0.037903592, 2.7912774E-4, -0.030426199, 0.007287061, -0.032275155, 0.016694983, 0.005553665, -0.018815843, -0.032383915, 0.019305274, -0.037414163, -0.029121054, 0.025627071, -0.0041907397, -0.01991706, -0.027108954, -0.0033342382, 0.036924735, 0.014003121, -0.0330093, 0.013642847, -0.0038644536, -0.028359719, 0.002146352, -0.019903464, 0.023438234, 0.0031642974, 0.013554477, 0.0051390096, 0.005842564, 0.009027255, 0.023900472, -0.01753789, -0.02100468, -0.01495479, 0.016056005, 0.0069335843, -0.012820333, -0.053075906, -0.0330093, 0.017089246, 0.01888382, 0.004149954, 0.011610354, -0.008918492, 0.004255317, 0.012806738, -0.012596011, 0.02198354, 0.020243347, -0.0059003443, -0.048453517, -0.016722174, 0.0011326553, -4.307999E-4, 0.013282572, 0.0129154995, -0.005074432, -0.0125620235, 0.0070015606, -0.0065427204, -0.0059683206, -0.0054550995, -5.667525E-4, 0.018367201, -0.00180817, -0.009550672, 0.054517005, 0.015444219, -0.026823454, 0.0059513263, 0.022418588, -0.010325602, -0.003891644, 0.003891644, -0.029148243, -0.013221393, -0.006053291, 0.021874778, 0.014778051, -0.0118822595, -9.1258204E-4, -0.008456253, -0.016423078, 0.024566641, 0.0107470555, -0.016355101, -0.025232809, 0.010060495, -0.010536329, 0.0076269424, 0.001581299, -0.0036129411, -0.03774045, 0.028522862, -0.010801436, -0.022867233, -0.025830999, 0.041275218, 0.005217182, -0.0048263185, 0.0073754303, 0.18750587, 0.013636049, 0.0010085986, 0.037550118, 0.018911012, 4.2145315E-4, -0.013309763, -0.0075317756, -0.013493299, -0.0142750265, 0.014941194, 0.018217653, -0.024743378, -0.004415062, 0.05016652, -0.007069537, -0.03319963, -0.017265985, 0.0030147496, -0.0052273786, -0.0062436247, -0.005332742, 0.0026493769, -0.024906522, -0.009978923, 0.014410979, -0.01357487, -0.03768607, 0.02689143, 0.0036231377, 0.015049956, -0.001971313, -0.01162395, 0.019767512, -0.034994207, 0.006124666, 0.014139074, 0.01173951, -0.006919989, 0.021779612, 0.0044320556, 0.012378487, 0.024974499, -0.011127722, -0.016627006, -0.011304461, -0.03466792, 0.0022364208, -0.017469913, -0.0177962, -0.026170881, 0.0102440305, 0.012731964, 0.016219148, -0.020814348, -0.0143022165, -0.016694983, -0.032628633, 8.395075E-4, 0.0066650775, -0.036544066, 0.048235994, 0.004833116, 0.014343003, -0.0050710333, 0.0106722815, -0.029175434, -0.021249397, 0.028740386, 0.0045816037, -0.023111947, 0.0041431566, 0.008068789, 0.004445651, -0.0018642504, -0.004595199, 0.009904149, -0.0038882452, 0.009870161, -0.008653385, 0.024172377, 0.014601313, 0.01885663, 0.0050812294, 0.008796135, -0.017864175, 0.013377739, 0.010760651, 0.0038780489, -0.015362647, -0.007103525, -0.026361216, -0.012990274, -0.013656442, -0.0027938266, -0.0206648, -0.0074094185, 0.01960437, -0.008748552, 0.0017877771, -0.030099912, 0.06590983, -0.022676898, -0.0032934526, -0.030317437, -0.0042383233, -0.01957718, 0.046115134, 0.025640666, -0.01733396, 0.014084692, -0.03719664, -0.00588335, -0.022608923, 0.001962816, 0.0028193176, -0.0111753065, -0.022785662, 0.013500096, -0.003980013, 0.012793142, -0.004890896, 0.007416216, -0.008836921, 0.020039417, -0.032084823, -0.005917338, 0.014220645, -0.009822577, -0.014125478, -0.0014776351, 0.0052103847, -0.0051933904, -0.0022194267, -0.023750925, -0.0058561596, 0.011977427, -0.018380797, 0.011698724, -0.016042411, -0.0076541333, 0.022500161, 0.0052715633, 0.015947243, 0.0142750265, -0.01225613, -0.007960026, 0.0040819775, -0.0015549582, -0.008707766, -0.009720613, -0.0061348625, 0.0020324918, -0.01392155, 0.005808576, 0.017986532, -0.013207798, -0.018231248, -0.013819585, 0.013704025, -0.03309087, -0.013935145, 0.009183601, -0.011562771, -0.02901229, -0.015580172, -0.17217042, 0.01383318, 0.0315682, -0.0111005325, 0.01423424, -6.784886E-4, 0.0077017164, 0.0051933904, -0.026034929, 0.003912037, 0.02451226, -0.015920052, -0.011440414, -0.036027446, 0.014111883, -0.008714563, -0.02999115, 0.025246404, 0.012120177, 0.0017223499, -0.02195635, -0.03162258, 0.020134585, -0.008911695, -9.839572E-4, -0.005832368, 0.008272718, 0.03344435, 0.02844129, -0.012113379, 0.0015362648, -0.03662564, 0.044048652, -0.0076609305, 0.009808983, -0.015770504, -0.012895107, 0.0054720934, -4.962271E-4, 0.03572835, -0.0047923303, 0.003295152, 0.023628566, -0.008068789, 0.01110733, 0.0309972, 6.0966256E-4, 0.0037522926, 0.004870503, 0.0122357365, 0.04693085, -0.02192916, 0.0032968512, -0.003796477, 0.0014623405, 0.013717621, -0.011311259, 0.006790834, 0.020134585, -0.015661743, -0.030235864, -0.022595327, 0.008843719, -0.006396571, 0.010699472, -0.021942755, 0.020107394, 0.055414293, -0.023465425, 0.006566512, 0.011501593, 0.010916996, 0.004098972, 0.012392082, 0.0058935466, -6.6191936E-4, -0.03972536, 0.010509138, 0.039535023, -0.019019773, 0.010957782, 0.04342327, 0.0026187876, 0.02345183, -0.031160343, -0.027897479, -0.00444905, 0.013907954, -0.025491118, 0.0021820397, 0.002408061, -0.009475898, -0.030752486, 0.011182104, 0.0041907397, 0.022255445, -0.0029926572, -0.016423078, 0.011746307, -0.020175371, 0.005054039, -0.004761741, -0.035891496, -0.009278767, 0.05318467, 0.02146692, 0.011297664, 0.017116437, 0.027054574, 3.6324843E-4, -0.031649772, 0.038066737, 0.035374876, 0.025246404, -0.0061552553, 0.030181484, 0.0014563926, -0.027000193, -0.0032560655, -5.8969454E-4, 0.026306834, -0.022133088, -0.013364144, 5.5071436E-5, -0.014546932, -0.026565144, -0.07216366, -0.01655903, 0.029664865, 0.018176867, -0.025627071, -0.0060668862, -0.003137107, 0.030127103, -0.032927725, 0.017891366, -0.021480516, -0.017238794, -0.004894295, 0.021915564, 0.016939698, -0.006277613, 0.0063761785, -0.0070559415, -0.016885316, 0.008442658, -0.021262992, -0.02092311, -0.013377739, 0.010203245, -0.0013306363, -0.010386781, 0.0022721083, 0.012215344, 0.022173874, -0.0014759358, -0.0014181559, -0.016885316, 0.008578611, -0.009088433, -0.002962068, -0.020297728, -0.009394327, -0.0321392, 0.00880973, -0.032247964, 0.0027190526, 0.0014071098, 0.021602873, -0.029692054, -0.015444219, -0.010312007, -0.007198692, 0.020093799, -0.008041598, -0.014424575, -0.01965875, -0.012895107, 0.018000128, -0.013989526, 0.019264488, -0.015512195, 0.0045646094, -0.0067976317, -0.017741818, 0.014111883, -0.008986468, 0.01991706, -0.015648147, 0.009047648, 0.0175107, -0.012174558, 0.014873218, 0.009802185, 0.030290246, 0.0021922363, -0.012521237, 0.01937325, -0.008836921, 0.019672345, -0.023438234, -0.013513692, -0.009822577, -0.02999115, 0.031812917, -0.0024726384, -0.028658815, -0.024920117, -0.0010570317, -0.032383915, -0.0058765523, 0.049513947, 0.0177962, -0.008768945, 0.006236827, -0.059764776, 0.016912507, 0.034831066, 0.050927855, 0.0049112886, -0.025192022, -0.015974434, 0.00995853, -1.15134884E-4, -0.014383788, -0.025096856, -0.050927855, -0.027462432, -0.07754738, 0.035918687, 0.018475963, -0.005200188, -0.0046971636, 0.02895791, 0.012092986, -0.009822577, 0.0044558477, 0.0122357365, -0.008891302, -0.0018234646, 0.005257968, 0.009353541, -0.014111883, -0.006274214, 0.020787157, -0.023084756, 0.0057405997, -0.004652979, 0.022160279, 0.024226759, -0.016164768, 0.013839978, -0.027707146, -0.0074026207, -0.01862551, 0.016898911, 0.014995575, 0.019414036, 0.04336889, -0.014614908, -0.002149751, 0.046686135, -0.0052137836, -0.0012142269, -0.017687438, -0.006216434, -0.019291678, -0.017469913, -8.9558796E-4, -0.0036027448, -1.7525144E-4, -0.017782604, -0.010794639, -0.004595199, 0.0040343944, 0.005074432, 0.012120177, 0.0061144694, 0.0069233878, -0.007912443, -0.0068724053, -0.053946003, -8.288862E-4, -0.021195015, 0.002737746, -0.0055842544, 0.0017070553, -0.0068214233, 0.035945874, 0.021276588, 1.9681267E-4, -0.013778799, -0.018122485, -0.02471619, -0.01469648, -0.0027156537, 0.0016552233, -2.9527213E-4, -0.020270538, -0.0059309336, -0.0021548492, 0.023546996, 0.0050812294, -0.0016441771, 0.027231311, -0.0025678053, -0.03306368, 0.0046359845, -0.0031524017, -0.011080139, -0.013350548, 0.009720613, 0.014356598, -0.020012228, -0.01867989, -9.797086E-4, -0.011454009, 0.018149676, -0.020637609, 0.02399564, -0.011263675, 0.010148864, 0.019033369, -0.007973622, -0.012616404, -0.03154101, 0.031269103, 0.008578611, 0.012677583, -0.005319147, 0.01159676, -0.0050336462, 0.00304194, -0.010080888, -0.034858253, -0.02226904, 0.0057032127, -0.012663987, -0.0025491118, -0.005040444, 0.011032556, 0.023723735, -0.012840726, 0.00978859, -0.008231931, -0.014873218, -0.029148243, 8.2761166E-4, 0.005570659, 0.0034446998, 0.0046631754, 0.0013790695, 0.019590775, -0.0034871849, 0.017483508, -0.0069403816, 0.02993677, -0.0076541333, 0.01277275, 0.006994763, -0.009849768, -0.018557534, 0.0013969133, -0.011263675, -0.004931682, 0.01136564, -0.0102440305, 0.091849595, 0.016191958, -0.0034633933, -0.0034565956, 0.008048396, 0.004703961, 0.0046223896, -0.012324106, -0.008463051, -0.03145944, 1.9999906E-4, -0.01010128, -0.009489493, 0.018272033, -0.029664865, 0.019509202, 0.018190462, -0.006032898, -0.016042411, -0.0107470555, 0.028550053, -0.018611915, 0.004652979, -0.017551485, -0.009686625, 0.0074230134, 0.013262179, 0.028332528, 0.0042723115, -0.030589342, 0.0065427204, 0.0068350183, -0.008972874, -0.03610902, -7.617596E-4, 0.005291956, -0.023859687, 0.017728223, 0.0125620235, 0.01265719, 0.006049892, 0.036054637, -0.013676834, -0.01707565, 0.0044184607, -0.02632043, -0.0034311046, -0.03464073, -0.055794958 ], - "id" : "d6aa845b-224f-4800-af25-2ed541a781d4", - "metadata" : { - "name" : "Aero Pro X" - }, - "text" : "price: 1599.99\nname: Aero Pro X\nshortDescription: Aero Pro X is a high-end racing bike designed for serious cyclists who demand speed, agility, and superior performance. The lightweight carbon frame and fork, combined with the aerodynamic design, provide optimal stiffness and efficiency to maximize your speed. The bike features a 2x Shimano Ultegra drivetrain, hydraulic disc brakes, and 700c wheels with high-quality tires. Whether you're competing in a triathlon or climbing steep hills, Aero Pro X delivers exceptional performance and precision handling.\ndescription: ## Overview\nIt's right for you if...\nYou are a competitive cyclist looking for a bike that is designed for racing. You want a bike that delivers exceptional speed, agility, and precision handling. You demand superior performance and reliability from your equipment.\n\nThe tech you get\nA lightweight carbon frame with an aerodynamic design, a carbon fork with hidden fender mounts, a 2x Shimano Ultegra drivetrain with a wide range of gearing, hydraulic disc brakes, and 700c wheels with high-quality tires. Aero Pro X is designed for serious cyclists who demand nothing but the best.\n\nThe final word\nAero Pro X is the ultimate racing bike for serious cyclists. The lightweight carbon frame and aerodynamic design deliver maximum speed and efficiency, while the 2x Shimano Ultegra drivetrain and hydraulic disc brakes ensure precise shifting and stopping power. Whether you're competing in a triathlon or a criterium race, Aero Pro X delivers the performance you need to win.\n\n## Features\n\nAerodynamic design\nThe Aero Pro X features an aerodynamic design that reduces drag and maximizes efficiency. The bike is optimized for speed and agility, so you can ride faster and farther with less effort.\n\nHydraulic disc brakes\nHydraulic disc brakes provide unrivaled stopping power and modulation in any weather condition. You'll feel confident and in control no matter where you ride.\n\nCarbon components\nThe Aero Pro X features a carbon fork with hidden fender mounts to provide optimal stiffness and absorption. This means you can ride faster and more comfortably over any terrain.\n\n## Specifications\nFrameset\nFrame with Fork\tCarbon frame with an aerodynamic design, internal cable routing, 3s chain keeper, 142x12mm thru-axle\nFork\tCarbon fork with hidden fender mounts, flat mount disc, 100x12mm thru-axle\n\nWheels\nWheel front\tDouble wall carbon rims, 700c, thru-axle hub\nWheel rear\tDouble wall carbon rims, 700c, thru-axle hub\nTire\tContinental Grand Prix 5000, folding bead, 700x25c\nMax tire size\t700x28c without fenders, 700x25c with fenders\n\nDrivetrain\nShifter\tShimano Ultegra, 11 speed\nFront derailleur\tShimano Ultegra\nRear derailleur\tShimano Ultegra\nCrank\tShimano Ultegra, 52-36T, 170mm (S), 172.5mm (M), 175mm (L/XL)\nBottom bracket\tShimano BB72, 68mm, PressFit\nCassette\tShimano Ultegra, 11-30T, 11 speed\nChain\tShimano HG701, 11 speed\nPedal\tNot included\n\nComponents\nSaddle\tBontrager Montrose Elite, carbon rails, 138mm width\nSeatpost\tCarbon seat post, 27.2mm, 20mm offset\nHandlebar\tBontrager XXX Aero, carbon, 31.8mm clamp, 75mm reach, 125mm drop\nGrips\tBontrager Supertack Perf tape\nStem\tBontrager Pro, 31." - } -} \ No newline at end of file diff --git a/apps/acme-assist/src/test/java/com/example/acme/assist/FitAssistApplicationTest.java b/apps/acme-assist/src/test/java/com/example/acme/assist/FitAssistApplicationTest.java new file mode 100644 index 00000000..97db6034 --- /dev/null +++ b/apps/acme-assist/src/test/java/com/example/acme/assist/FitAssistApplicationTest.java @@ -0,0 +1,33 @@ +package com.example.acme.assist; + +import static org.assertj.core.api.Assertions.assertThat; +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.testcontainers.service.connection.ServiceConnection; +import org.springframework.test.context.ActiveProfiles; +import org.testcontainers.containers.PostgreSQLContainer; +import org.testcontainers.junit.jupiter.Container; +import org.testcontainers.junit.jupiter.Testcontainers; +import org.testcontainers.utility.DockerImageName; + +@Testcontainers +@SpringBootTest +@ActiveProfiles({"test"}) +class FitAssistApplicationTest { + + @Container + @ServiceConnection + public static final PostgreSQLContainer postgreSQLContainer = + new PostgreSQLContainer<>(DockerImageName.parse("pgvector/pgvector:pg16") + .asCompatibleSubstituteFor("postgres")); + + @Test + void contextLoads() { + } + + @Test + public void testConnectToDB() { + assertThat(postgreSQLContainer.isRunning()).isTrue(); + } + +} diff --git a/apps/acme-assist/src/test/java/com/example/acme/assist/FitAssistControllerTest.java b/apps/acme-assist/src/test/java/com/example/acme/assist/FitAssistControllerTest.java new file mode 100644 index 00000000..1ffbf9b0 --- /dev/null +++ b/apps/acme-assist/src/test/java/com/example/acme/assist/FitAssistControllerTest.java @@ -0,0 +1,91 @@ +package com.example.acme.assist; + +import org.json.JSONObject; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.skyscreamer.jsonassert.JSONAssert; +import org.skyscreamer.jsonassert.JSONCompareMode; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.testcontainers.service.connection.ServiceConnection; +import org.springframework.http.MediaType; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.MvcResult; + +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; +import org.testcontainers.containers.PostgreSQLContainer; +import org.testcontainers.junit.jupiter.Container; +import org.testcontainers.junit.jupiter.Testcontainers; +import org.testcontainers.utility.DockerImageName; + +@Testcontainers +@SpringBootTest +@AutoConfigureMockMvc +class FitAssistControllerTest { + + @Container + @ServiceConnection + public static final PostgreSQLContainer postgreSQLContainer = + new PostgreSQLContainer<>(DockerImageName.parse("pgvector/pgvector:pg16") + .asCompatibleSubstituteFor("postgres")); + + @Autowired + private MockMvc mockMvc; + + @Test + public void testGreetingsEndpoint() throws Exception { + final MvcResult mvcResult = mockMvc.perform( + post("/ai/hello") + .contentType(MediaType.APPLICATION_JSON) + .content(""" + { + "page": "foobar page", + "userId": "foobar userId", + "conversationId": "foobar conversationId" + } + """)) + .andExpect(status().isOk()) + .andReturn(); + final String content = mvcResult.getResponse().getContentAsString(); + JSONAssert.assertEquals(""" + { + "conversationId": "foobar conversationId", + "greeting": "Welcome to ACME FITNESS! Looking for the perfect e-bike and accessories? I'm here to assist you. To get started, I can suggest some popular e-bike models based on your preferences. Just let me know your riding style, desired speed, and approximate range, and we'll find the ideal match for you.", + "suggestedPrompts": [ + "I want an e-bike that can keep up with city traffic.", + "Show me e-bikes with long battery life for my daily commute.", + "What are the most popular e-bike models for city riders?" + ] + } + """, + new JSONObject(content), + JSONCompareMode.STRICT + ); + } + + @Test + @Disabled + public void testQuestionDeliveryTime() throws Exception { + final MvcResult mvcResult = mockMvc.perform( + post("/ai/question") + .contentType(MediaType.APPLICATION_JSON) + .content(""" + { + "page": "foobar page", + "userId": "foobar userId", + "messages": [ + { + "role": "USER", + "content": "How long will it take to get the bike delivered to me?" + } + ] + } + """)) + .andExpect(status().isOk()) + .andReturn(); + final String content = mvcResult.getResponse().getContentAsString(); + //todo Figure out whether to mock or talk to OpenAPI for this area. + } +} diff --git a/apps/acme-assist/src/test/resources/application.yml b/apps/acme-assist/src/test/resources/application.yml new file mode 100644 index 00000000..3975a6da --- /dev/null +++ b/apps/acme-assist/src/test/resources/application.yml @@ -0,0 +1,8 @@ +spring: + ai: + openai: + api-key: foobar-openai-key + base-url: foobar-openai-baseurl +eureka: + client: + enabled: false diff --git a/apps/acme-assist/src/test/resources/requests/example.http b/apps/acme-assist/src/test/resources/requests/example.http new file mode 100644 index 00000000..f0aaafb5 --- /dev/null +++ b/apps/acme-assist/src/test/resources/requests/example.http @@ -0,0 +1,91 @@ +### GET request to example server + + +POST {{assist-base-url}}/ai/hello +Content-Type: application/json + +{ + "page": "foobar page", + "userId": "foobar userId", + "conversationId": "foobar conversationId" +} + +### +POST {{assist-base-url}}/ai/question +Content-Type: application/json + +{ + "page": "foobar page", + "userId": "foobar userId", + "messages": [ + { + "role": "USER", + "content": "How long will it take to get the bike delivered to me?" + } + ] +} + +#### +POST {{assist-base-url}}/ai/question +Content-Type: application/json + +{ + "page": "foobar page", + "productId": "foobar userId", + "messages": [ + { + "role": "USER", + "content": "tell me more about Stealth R1X Pro" + } + ] +} + + +#### +POST {{assist-base-url}}/ai/question +Content-Type: application/json + +{ + "page": "foobar page", + "productId": "foobar userId", + "messages": [ + { + "role": "USER", + "content": "I'm new to ebikes, and I'm looking for one that suits my daily commute in the city. I want something comfortable and reliable." + } + ] +} + +#### +POST {{assist-base-url}}/ai/question +Content-Type: application/json + +{ + "page": "foobar page", + "productId": "d82e62b3-63e4-4496-ae2a-2af01a08cb39", + "messages": [ + { + "role": "USER", + "content": "what is the price of Stealth R1X Pro cost" + } + ] +} + +#### +POST {{assist-base-url}}/ai/question +Content-Type: application/json + +{ + "page": "foobar page", + "productId": "d82e62b3-63e4-4496-ae2a-2af01a08cb39", + "messages": [ + { + "role": "USER", + "content": "what are accessories that pair well with Stealth R1X Pro" + } + ] +} + + +### +POST {{assist-base-url}}/ai/admin/load-vector-json diff --git a/apps/acme-cart/.gitignore b/apps/acme-cart/.gitignore index 521716d6..b35b8127 100644 --- a/apps/acme-cart/.gitignore +++ b/apps/acme-cart/.gitignore @@ -1 +1,2 @@ redis.db +*.iml diff --git a/apps/acme-cart/README.md b/apps/acme-cart/README.md index 319dc72b..46a12de0 100644 --- a/apps/acme-cart/README.md +++ b/apps/acme-cart/README.md @@ -3,7 +3,7 @@ > A cart service, because what is a shop without a cart to put stuff in? -The Cart service is part of the [ACME Fitness Shop](https://github.com/vmwarecloudadvocacy/acme_fitness_demo). The goal of this specific service is to keep track of carts and items in the different carts. +The goal of this specific service is to keep track of carts and items in the different carts. ## Prerequisites @@ -52,7 +52,7 @@ The acme-cart image is based on the official Python image. To run the acme-cart and the redis dependency for local test, use the `docker-compose` file: ```bash -# Run the Redis container +# Run the acme-cart image and Redis container docker-compose up ``` @@ -66,7 +66,7 @@ Get total amount in users cart ```bash curl --request GET \ - --url http://localhost:5000/cart/total/dan + --url http://localhost:8085/cart/total/dan ``` ```json @@ -82,7 +82,7 @@ Update an item in the cart of a user ```bash curl --request POST \ - --url http://localhost:5000/cart/item/modify/dan \ + --url http://localhost:8085/cart/item/modify/dan \ --header 'content-type: application/json' \ --data '{"itemid":"sfsdsda3343", "quantity":2}' ``` @@ -107,7 +107,7 @@ Modify the contents of a cart ```bash curl --request POST \ - --url http://localhost:5000/cart/modify/dan \ + --url http://localhost:8085/cart/modify/dan \ --header 'content-type: application/json' \ --data '{ "cart": [ @@ -161,7 +161,7 @@ Add item to cart ```bash curl --request POST \ - --url http://localhost:5000/cart/item/add/shri \ + --url http://localhost:8085/cart/item/add/shri \ --header 'content-type: application/json' \ --data '{"itemid":"xyz", "quantity":3}' ``` @@ -186,7 +186,7 @@ Get the total number of items in a cart ```bash curl --request GET \ - --url http://localhost:5000/cart/items/total/shri + --url http://localhost:8085/cart/items/total/shri ``` ```json @@ -202,7 +202,7 @@ Clear all items from the cart ```bash curl --request GET \ - --url http://localhost:5000/cart/clear/dan + --url http://localhost:8085/cart/clear/dan ``` ```text @@ -215,7 +215,7 @@ Get all items in a cart ```bash curl --request GET \ - --url http://localhost:5000/cart/items/dan + --url http://localhost:8085/cart/items/dan ``` ```json @@ -246,7 +246,7 @@ Get all the carts ```bash curl --request GET \ - --url http://localhost:5000/cart/all + --url http://localhost:8085/cart/all ``` ```json @@ -275,12 +275,6 @@ curl --request GET \ } ``` -## Contributing - -[Pull requests](https://github.com/vmwarecloudadvocacy/order/pulls) are welcome. For major changes, please open [an issue](https://github.com/vmwarecloudadvocacy/order/issues) first to discuss what you would like to change. - -Please make sure to update tests as appropriate. - ## License -See the [LICENSE](./LICENSE) file in the repository +See the [LICENSE](../../LICENSE) file in the repository diff --git a/azure-spring-apps-enterprise/resources/json/routes/cart-service.json b/apps/acme-cart/cart-routes.json similarity index 78% rename from azure-spring-apps-enterprise/resources/json/routes/cart-service.json rename to apps/acme-cart/cart-routes.json index c34e2a1d..0f7d8541 100644 --- a/azure-spring-apps-enterprise/resources/json/routes/cart-service.json +++ b/apps/acme-cart/cart-routes.json @@ -1,4 +1,4 @@ -[ +{"routes": [ { "predicates": [ "Path=/cart/item/add/{userId}", @@ -10,8 +10,7 @@ "tags": [ "cart" ], - "ssoEnabled": true, - "tokenRelay": true + "token-relay": true }, { "predicates": [ @@ -24,8 +23,7 @@ "tags": [ "cart" ], - "ssoEnabled": true, - "tokenRelay": true + "token-relay": true }, { "predicates": [ @@ -38,8 +36,7 @@ "tags": [ "cart" ], - "ssoEnabled": true, - "tokenRelay": true + "token-relay": true }, { "predicates": [ @@ -52,8 +49,7 @@ "tags": [ "cart" ], - "ssoEnabled": true, - "tokenRelay": true + "token-relay": true }, { "predicates": [ @@ -66,7 +62,6 @@ "tags": [ "cart" ], - "ssoEnabled": true, - "tokenRelay": true + "token-relay": true } -] \ No newline at end of file +]} diff --git a/apps/acme-cart/cart.py b/apps/acme-cart/cart.py index 51304e4c..7b7bcd33 100644 --- a/apps/acme-cart/cart.py +++ b/apps/acme-cart/cart.py @@ -14,12 +14,8 @@ from flask_httpauth import HTTPTokenAuth from sentry_sdk.integrations.flask import FlaskIntegration from flask import Flask -from opencensus.ext.azure.trace_exporter import AzureExporter -from opencensus.ext.flask.flask_middleware import FlaskMiddleware -from opencensus.trace.samplers import ProbabilitySampler from lib.tracing import init_tracer from redis_conn import redis_connection -from azure_vault import vault_secret # sentry_sdk.init("https://c0f58a327f2c4cd8b29e8cd0a606f0e9@sentry.io/1722363") @@ -48,7 +44,7 @@ auth_mode = int(environ['AUTH_MODE']) if environ.get('AUTH_MODE') not in (None, '') else 1 -instrumentation_key = vault_secret('ApplicationInsights--ConnectionString') +instrumentation_key = None if instrumentation_key is None and environ.get('INSTRUMENTATION_KEY') not in (None, ''): instrumentation_key = environ['INSTRUMENTATION_KEY'] @@ -69,13 +65,14 @@ def set_cloud_role(envelope): envelope.tags['ai.cloud.role'] = 'cart-service' -if instrumentation_key not in (None, ''): - middleware = FlaskMiddleware( - app, - exporter=AzureExporter(connection_string=instrumentation_key), - sampler=ProbabilitySampler(rate=1.0), - ) - middleware.exporter.add_telemetry_processor(set_cloud_role) +### Azure / Prometheus / ETC +# if instrumentation_key not in (None, ''): +# middleware = FlaskMiddleware( +# app, +# exporter=AzureExporter(connection_string=instrumentation_key), +# sampler=ProbabilitySampler(rate=1.0), +# ) +# middleware.exporter.add_telemetry_processor(set_cloud_role) app.debug = True auth = HTTPTokenAuth('Bearer') diff --git a/apps/acme-cart/credhub.py b/apps/acme-cart/credhub.py new file mode 100644 index 00000000..2b259541 --- /dev/null +++ b/apps/acme-cart/credhub.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +from os import environ +import json +import requests + +CREDHUB_URI = 'https://credhub.service.cf.internal:8844/api/v1/interpolate' +VCAP_SERVICES_KEY = 'VCAP_SERVICES' +CF_KEY_PATH = 'CF_INSTANCE_KEY' +CF_CERT_PATH = 'CF_INSTANCE_CERT' + +def credhub_secret(key): + if environ.get(VCAP_SERVICES_KEY) not in (None, ''): + key_path = environ[CF_KEY_PATH] + cert_path = environ[CF_CERT_PATH] + vcap_services_json = json.loads(environ[VCAP_SERVICES_KEY]) + interpolated_vcap_services = requests.post(CREDHUB_URI,cert=(cert_path, key_path), verify='/etc/ssl/certs/ca-certificates.crt', json=vcap_services_json).json() + service_json = interpolated_vcap_services[key] + if service_json not in (None, ''): + return service_json[0]['credentials'] + return None diff --git a/apps/acme-cart/docker-compose.yaml b/apps/acme-cart/docker-compose.yaml deleted file mode 100644 index ca88d722..00000000 --- a/apps/acme-cart/docker-compose.yaml +++ /dev/null @@ -1,30 +0,0 @@ -version: '2' - -services: - cart: - image: acmeshop-cart:latest - hostname: cart - restart: always - ports: - - '5000:5000' - cap_drop: - - all - cap_add: - - NET_BIND_SERVICE - read_only: true - environment: - - REDIS_HOST=reddb - - REDIS_PORT=6379 - - AUTH_MODE=0 - reddb: - image: bitnami/redis:latest - hostname: reddb - restart: always - cap_drop: - - all - cap_add: - - NET_BIND_SERVICE - ports: - - '6379:6379' - environment: - - ALLOW_EMPTY_PASSWORD=yes diff --git a/apps/acme-cart/manifest.yml b/apps/acme-cart/manifest.yml new file mode 100644 index 00000000..2c8e0c73 --- /dev/null +++ b/apps/acme-cart/manifest.yml @@ -0,0 +1,12 @@ +--- +applications: +- name: acme-cart + memory: 1G + buildpack: python_buildpack + services: + - acme-redis + routes: + - route: acme-cart.apps.internal + env: + AUTH_URL: "https://acme-fitness.apps.tas.vmtanzu.com" + CART_PORT: 8080 diff --git a/apps/acme-cart/redis_conn.py b/apps/acme-cart/redis_conn.py index b7984ddf..b52c85a5 100644 --- a/apps/acme-cart/redis_conn.py +++ b/apps/acme-cart/redis_conn.py @@ -3,40 +3,39 @@ import redis from redislite import Redis from os import environ -from azure_vault import vault_secret +from credhub import credhub_secret from distutils.util import strtobool def redis_connection(logger): - - redis_conn_str = vault_secret('CART-REDIS-CONNECTION-STRING') - if redis_conn_str is None and environ.get('REDIS_CONNECTIONSTRING') not in (None, ''): - redis_conn_str = str(environ['REDIS_CONNECTIONSTRING']) - - redis_host = environ['REDIS_HOST'] if environ.get('REDIS_HOST') not in (None, '') else None - - redis_port = environ['REDIS_PORT'] if environ.get('REDIS_PORT') not in (None, '') else 6380 - - redis_password = environ['REDIS_PASSWORD'] if environ.get('REDIS_PASSWORD') not in (None, '') else None - - tlsEnabledEnv = auth_url = environ['REDIS_TLS_ENABLED'] if environ.get('REDIS_TLS_ENABLED') not in (None, '') else 'true' - tlsEnabled = strtobool(tlsEnabledEnv) - - logger.info('Redis TLS setting %s', tlsEnabled) - - try: + if environ.get('VCAP_SERVICES') not in (None, ''): + redis_creds = credhub_secret('p.redis') + redis_host = redis_creds['host'] + redis_port = redis_creds['tls_port'] + redis_password = redis_creds['password'] + + logger.info('initiating redis connection with password') + redis_conn = redis.StrictRedis(host=redis_host, port=redis_port, password=redis_password, db=0, ssl=True) + else: + redis_conn_str = None + redis_host = environ['REDIS_HOST'] if environ.get('REDIS_HOST') not in (None, '') else None + redis_port = environ['REDIS_PORT'] if environ.get('REDIS_PORT') not in (None, '') else 6380 + redis_password = environ['REDIS_PASSWORD'] if environ.get('REDIS_PASSWORD') not in (None, '') else None + tlsEnabledEnv = auth_url = environ['REDIS_TLS_ENABLED'] if environ.get('REDIS_TLS_ENABLED') not in (None, '') else 'true' + tlsEnabled = strtobool(tlsEnabledEnv) + logger.info('Redis TLS setting %s', tlsEnabled) if redis_conn_str not in (None, ''): - logger.info('initiating redis connection using connection string') - redis_conn = redis.from_url(redis_conn_str) + logger.info('initiating redis connection using connection string') + redis_conn = redis.from_url(redis_conn_str) elif redis_password is not None: - logger.info('initiating redis connection with password') - redis_conn = redis.StrictRedis(host=redis_host, port=redis_port, password=redis_password, db=0, ssl=tlsEnabled) + logger.info('initiating redis connection with password') + redis_conn = redis.StrictRedis(host=redis_host, port=redis_port, password=redis_password, db=0, ssl=tlsEnabled) elif redis_host not in (None, ''): - logger.info('initiating redis connection with no password') - redis_conn = redis.StrictRedis(host=redis_host, port=redis_port, password=None, db=0) + logger.info('initiating redis connection with no password') + redis_conn = redis.StrictRedis(host=redis_host, port=redis_port, password=None, db=0) else: - logger.info('initiating redis connection with no host or password (using redislite)') - redis_conn = Redis('redis.db') - + logger.info('initiating redis connection with no host or password (using redislite)') + redis_conn = Redis('redis.db') + try: logger.info('initiated redis connection %s', redis_conn) redis_conn.ping() logger.info('Connected to redis') diff --git a/apps/acme-cart/requirements.txt b/apps/acme-cart/requirements.txt index 3292cdd2..ee057e91 100644 --- a/apps/acme-cart/requirements.txt +++ b/apps/acme-cart/requirements.txt @@ -24,8 +24,3 @@ tornado==6.4 urllib3==1.25.7 Werkzeug~=2.0.1 wrapt==1.11.1 -opencensus~=0.11.4 -opencensus-ext-azure==1.1.3 -opencensus-ext-flask==0.8.2 -azure-identity==1.9.0 -azure-keyvault-secrets==4.4.0 \ No newline at end of file diff --git a/apps/acme-catalog/README.md b/apps/acme-catalog/README.md new file mode 100644 index 00000000..e9503a10 --- /dev/null +++ b/apps/acme-catalog/README.md @@ -0,0 +1,27 @@ +# Catalog + + +> A Catalog service, used to service the bikes and accessories sold by acme fitness + +The goal of this specific service is to keep track of bikes and accessories. + +Catalog contains a database it talks to store the information it needs. + +### Run + +* [Docker](https://www.docker.com/docker-community) + + +## Local running + +Ensure the local development dependencies are running. (See main [README](../../README.md)) + +Setup Docker database dependency + +`docker compose -d up` + +To run locally + + +`./gradlew bootRun --args="--spring.profiles.active=local"` + diff --git a/apps/acme-catalog/build.gradle b/apps/acme-catalog/build.gradle index 965fec16..fd203e13 100644 --- a/apps/acme-catalog/build.gradle +++ b/apps/acme-catalog/build.gradle @@ -1,12 +1,13 @@ plugins { id 'java' id 'org.springframework.boot' version "${springBootVersion}" - id 'io.spring.dependency-management' version '1.1.0' + id 'io.spring.dependency-management' version '1.1.6' + id 'org.flywaydb.flyway' version '10.17.1' } group = 'com.vmware' version = '0.0.1-SNAPSHOT' -sourceCompatibility = '17' +sourceCompatibility = '21' repositories { @@ -30,13 +31,15 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-validation' - implementation 'org.flywaydb:flyway-core' + implementation 'org.flywaydb:flyway-database-postgresql' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client' - implementation 'com.azure.spring:spring-cloud-azure-starter-keyvault-secrets' - - runtimeOnly 'com.azure.spring:spring-cloud-azure-starter-jdbc-postgresql' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-config-client' + implementation group: 'io.pivotal.cfenv', name: 'java-cfenv-boot', version: '3.1.5' + implementation group: 'io.pivotal.cfenv', name: 'java-cfenv-boot-pivotal-sso', version: '3.1.5' + implementation 'org.springframework.credhub:spring-credhub-starter:3.1.0' runtimeOnly 'org.postgresql:postgresql' runtimeOnly 'com.h2database:h2' @@ -50,12 +53,13 @@ dependencies { dependencyManagement { imports { - mavenBom "com.azure.spring:spring-cloud-azure-dependencies:${springCloudAzureVersion}" mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}" mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" + mavenBom "io.pivotal.spring.cloud:spring-cloud-services-dependencies:4.1.3" + } } tasks.named('test') { useJUnitPlatform() -} \ No newline at end of file +} diff --git a/azure-spring-apps-enterprise/resources/json/routes/catalog-service_rate-limit.json b/apps/acme-catalog/catalog-service_rate-limit.json similarity index 97% rename from azure-spring-apps-enterprise/resources/json/routes/catalog-service_rate-limit.json rename to apps/acme-catalog/catalog-service_rate-limit.json index e85fd542..d2cd0929 100644 --- a/azure-spring-apps-enterprise/resources/json/routes/catalog-service_rate-limit.json +++ b/apps/acme-catalog/catalog-service_rate-limit.json @@ -9,7 +9,7 @@ ], "filters": [ "StripPrefix=0", - "RateLimit=2,5s" + "RateLimit=5,5s" ], "tags": [ "catalog" diff --git a/apps/acme-catalog/docker-compose.yaml b/apps/acme-catalog/docker-compose.yaml deleted file mode 100644 index 4705075c..00000000 --- a/apps/acme-catalog/docker-compose.yaml +++ /dev/null @@ -1,11 +0,0 @@ -version: '3.7' -services: - postgres: - container_name: postgres_container - image: postgres - environment: - POSTGRES_USER: root - POSTGRES_PASSWORD: rootpassword - POSTGRES_DB: acmefit - ports: - - "5432:5432" diff --git a/apps/acme-catalog/gradle.properties b/apps/acme-catalog/gradle.properties index 0c77289b..e3a9a410 100644 --- a/apps/acme-catalog/gradle.properties +++ b/apps/acme-catalog/gradle.properties @@ -1,4 +1,3 @@ -springBootVersion=3.2.1 -springCloudVersion=2023.0.0 -springCloudAzureVersion=5.8.0 +springBootVersion=3.3.2 +springCloudVersion=2023.0.3 testcontainersVersion=1.19.3 \ No newline at end of file diff --git a/apps/acme-catalog/gradle/wrapper/gradle-wrapper.properties b/apps/acme-catalog/gradle/wrapper/gradle-wrapper.properties index 774fae87..0d184210 100644 --- a/apps/acme-catalog/gradle/wrapper/gradle-wrapper.properties +++ b/apps/acme-catalog/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/apps/acme-catalog/manifest.yml b/apps/acme-catalog/manifest.yml new file mode 100644 index 00000000..d0d8e541 --- /dev/null +++ b/apps/acme-catalog/manifest.yml @@ -0,0 +1,17 @@ +--- +applications: +- name: acme-catalog + memory: 1G + path: build/libs/acme-catalog-0.0.1-SNAPSHOT.jar + buildpack: java_buildpack_offline + services: + - acme-config + - acme-registry + - acme-postgres + routes: + - route: acme-catalog.apps.internal + env: + JBP_CONFIG_SPRING_AUTO_RECONFIGURATION: '{enabled: false}' + SPRING_PROFILES_ACTIVE: http2,cloud + JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 21.+ } }' + SPRING_MVC_STATIC_PATH_PATTERN: /static/images/** diff --git a/apps/acme-catalog/src/main/java/com/example/acme/catalog/Product.java b/apps/acme-catalog/src/main/java/com/example/acme/catalog/Product.java index 427db3e9..8ae4c90d 100644 --- a/apps/acme-catalog/src/main/java/com/example/acme/catalog/Product.java +++ b/apps/acme-catalog/src/main/java/com/example/acme/catalog/Product.java @@ -28,23 +28,24 @@ public class Product { private Double price; private String tags; - public static Product fromProductRequestToProduct(ProductResponse productResponse) { + public static Product fromProductRequestToProduct(ProductResponse productVO) { Product product = new Product(); - product.setPrice(productResponse.getPrice()); - product.setDescription(productResponse.getDescription()); - product.setName(productResponse.getName()); - product.setImageUrl1(productResponse.getImageUrl1()); - product.setImageUrl2(productResponse.getImageUrl2()); - product.setImageUrl3(productResponse.getImageUrl3()); - product.setShortDescription(productResponse.getShortDescription()); - - var tags = ""; - - if (productResponse.getTags() != null && !productResponse.getTags().isEmpty()) { - for (int i = 0; i < productResponse.getTags().size(); i++) { - tags = tags + productResponse.getTags().get(i); - if (i < productResponse.getTags().size() - 1) { + product.setPrice(productVO.getPrice()); + product.setDescription(productVO.getDescription()); + product.setName(productVO.getName()); + product.setImageUrl1(productVO.getImageUrl1()); + product.setImageUrl2(productVO.getImageUrl2()); + product.setImageUrl3(productVO.getImageUrl3()); + product.setShortDescription(productVO.getShortDescription()); + + String tags = null; + + if (productVO.getTags() != null && !productVO.getTags().isEmpty()) { + tags = ""; + for (int i = 0; i < productVO.getTags().size(); i++) { + tags = tags + productVO.getTags().get(i); + if (i < productVO.getTags().size() - 1) { tags = tags + ","; } } diff --git a/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductController.java b/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductController.java index d2aaccc2..f4c3b071 100644 --- a/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductController.java +++ b/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductController.java @@ -1,14 +1,17 @@ package com.example.acme.catalog; -import java.util.stream.Collectors; - import io.micrometer.core.annotation.Timed; - import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; +import java.util.stream.Collectors; + @Timed("store.products") @RestController public class ProductController { @@ -30,4 +33,22 @@ public GetProductsResponse getProducts() { public GetProductResponse getProduct(@PathVariable String id) { return new GetProductResponse(new ProductResponse(productService.getProduct(id)), HttpStatus.OK.value()); } + + @PostMapping("/products") + public ResponseEntity createProduct(@RequestBody ProductResponse productVO) { + Product product = productService.createProduct(Product.fromProductRequestToProduct(productVO)); + return ResponseEntity.ok(new ProductResponse(product)); + } + + @PostMapping("/products/{id}") + public ResponseEntity updateProduct(@PathVariable String id, @RequestBody ProductResponse productVO) { + Product product = productService.updateProduct(id, Product.fromProductRequestToProduct(productVO)); + return ResponseEntity.ok(new ProductResponse(product)); + } + + @DeleteMapping("/products/{id}") + public ResponseEntity deleteProduct(@PathVariable String id) { + productService.deleteProduct(id); + return ResponseEntity.noContent().build(); + } } diff --git a/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductResponse.java b/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductResponse.java index 2e7baed5..e97f814a 100644 --- a/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductResponse.java +++ b/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductResponse.java @@ -18,6 +18,9 @@ public class ProductResponse { private Double price; private List tags = new ArrayList<>(); + public ProductResponse() { + } + public ProductResponse(Product product) { id = product.getId(); price = product.getPrice(); @@ -31,7 +34,6 @@ public ProductResponse(Product product) { if (StringUtils.hasText(product.getTags())) { tags = Arrays.asList(product.getTags().split(",")); } - } public String getId() { diff --git a/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductService.java b/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductService.java index 3f2ff1fa..5bcf1bf8 100644 --- a/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductService.java +++ b/apps/acme-catalog/src/main/java/com/example/acme/catalog/ProductService.java @@ -1,6 +1,7 @@ package com.example.acme.catalog; import java.util.List; +import java.util.function.Consumer; import java.util.stream.Collectors; import org.springframework.http.HttpStatus; @@ -29,4 +30,38 @@ public Product getProduct(String id) { } + public Product createProduct(Product product) { + return productRepository.save(product); + } + + public Product updateProduct(String id, Product product) { + Product updatedEntity = productRepository.findById(id) + .map(entity -> updateProductEntity(entity, product)) + .orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND, "Unable to find product with id " + id)); + + return productRepository.save(updatedEntity); + } + + public void deleteProduct(String id) { + productRepository.deleteById(id); + } + + private static Product updateProductEntity(Product existing, Product product) { + updateIfNotNull(product.getImageUrl1(), existing::setImageUrl1); + updateIfNotNull(product.getImageUrl2(), existing::setImageUrl2); + updateIfNotNull(product.getImageUrl3(), existing::setImageUrl3); + updateIfNotNull(product.getName(), existing::setName); + updateIfNotNull(product.getShortDescription(), existing::setShortDescription); + updateIfNotNull(product.getDescription(), existing::setDescription); + updateIfNotNull(product.getPrice(), existing::setPrice); + updateIfNotNull(product.getTags(), existing::setTags); + return existing; + } + + private static void updateIfNotNull(T value, Consumer setter) { + if (value != null) { + setter.accept(value); + } + } + } diff --git a/apps/acme-catalog/src/main/resources/application-local.yaml b/apps/acme-catalog/src/main/resources/application-local.yaml new file mode 100644 index 00000000..8b5a0748 --- /dev/null +++ b/apps/acme-catalog/src/main/resources/application-local.yaml @@ -0,0 +1,9 @@ +spring: + application: + name: acme-catalog + cloud: + config: + enabled: true + config: + import: + - configserver:http://localhost:8888 diff --git a/apps/acme-catalog/src/main/resources/application.yaml b/apps/acme-catalog/src/main/resources/application.yaml index 08e9c5c3..6e192d81 100644 --- a/apps/acme-catalog/src/main/resources/application.yaml +++ b/apps/acme-catalog/src/main/resources/application.yaml @@ -1,4 +1,6 @@ spring: + application: + name: acme-catalog datasource: url: jdbc:h2:mem:db;DB_CLOSE_DELAY=-1 jpa: @@ -8,9 +10,9 @@ spring: encoding: UTF-8 eureka: client: - enabled: false + enabled: true management: endpoints: web: exposure: - include: info,health \ No newline at end of file + include: info,health diff --git a/apps/acme-catalog/src/main/resources/db/migration/V1_1__insert_products.sql b/apps/acme-catalog/src/main/resources/db/migration/V1_1__insert_products.sql index 9974b69f..e2141dfa 100644 --- a/apps/acme-catalog/src/main/resources/db/migration/V1_1__insert_products.sql +++ b/apps/acme-catalog/src/main/resources/db/migration/V1_1__insert_products.sql @@ -1815,103 +1815,6 @@ Sizing table | M — Frame reach | 36.5 | 38.5 | 38.5 | 38.5 | | N — Frame stack | 63.0 | 63.0 | 64.9 | 66.8 | | Stem length | 8.5 | 9.0 | 9.0 | 11.0 |', '/static/images/new_bikes_19.jpg', '/static/images/new_bikes_19.jpg', '/static/images/new_bikes_19.jpg', 'Horizon+ Evo Lowstep', 4499.99, 'The Horizon+ Evo Lowstep is a versatile electric hybrid bike designed for riders seeking a thrilling and efficient riding experience on a variety of terrains. With its powerful Bosch Performance Line Sport drive unit and integrated 500Wh battery, this e-bike enables riders to cover long distances with ease. Equipped with features prioritizing comfort and safety, such as a suspension seatpost, stable tires, and integrated lights, the Horizon+ Evo Lowstep is a reliable companion for everyday rides.', 'bicycle,road bike,professional'), -('2f26a20f-91ef-4407-a89c-be8bdc7cf7ee', '## Overview -It''s right for you if... -You''re looking for an e-bike that offers both speed and endurance. The FastRider X1 comes with a high-performance motor and a long-lasting battery, making it ideal for long-distance rides. - -The tech you get -The FastRider X1 features a state-of-the-art motor and a spacious battery, ensuring a fast and efficient ride. - -The final word -With the powerful motor and long-range battery, the FastRider X1 allows you to cover more distance at higher speeds. - -## Features -Connect Your Ride with the FastRider App -Download the FastRider app and transform your smartphone into an on-board computer. Easily dock and charge your phone with the smartphone controller, and use the thumb pad on your handlebar to make calls, listen to music, get turn-by-turn directions, and more. The app also allows you to connect with fitness and health apps, syncing your routes and ride data. - -Goodbye, Car. Hello, Extended Range! -With the option to add the Range Boost feature, you can attach a second long-range battery to your FastRider X1, doubling the distance and time between charges. This enhancement allows you to ride longer, commute farther, and take on more adventurous routes. - -What is the range? -To estimate the distance you can travel on a single charge, use our range calculator tool. It automatically fills in the variables for this specific bike model and assumes an average rider, but you can adjust the settings to get the most accurate estimate for your needs. - -## Specifications -Frameset -- Frame: High-performance hydroformed alloy, Removable Integrated Battery, Range Boost-compatible, internal cable routing, Motor Armour, post-mount disc, 135x5 mm QR -- Fork: FastRider rigid alloy fork, 1-1/8'''' steel steerer, 100x15mm thru axle, post mount disc brake -- Max compatible fork travel: 63mm - -Wheels -- Front Hub: FastRider sealed bearing, 32-hole 15mm alloy thru-axle -- Front Skewer: FastRider Switch thru axle, removable lever -- Rear Hub: FastRider alloy, sealed bearing, 6-bolt, 135x5mm QR -- Rear Skewer: 148x5mm bolt-on -- Rim: FastRider MD35, tubeless compatible, 32-hole, 35mm width, Presta valve -- Spokes: Size: M, L, XL - 14g stainless steel, black -- Tire: FastRider E6 Hard-Case Lite, reflective strip, 27.5x2.40'''' -- Max tire size: 27.5x2.40" - -Drivetrain -- Shifter: Shimano Deore M4100, 10 speed -- Rear derailleur: Size: M, L, XL - Shimano Deore M5120, long cage -- Crank: Size: M - FastRider alloy, 170mm length / Size: L, XL - FastRider alloy, 175mm length -- Chainring: FastRider 46T narrow/wide alloy, w/alloy guard -- Cassette: Size: M, L, XL - Shimano Deore M4100, 11-42, 10 speed -- Chain: Size: M, L, XL - KMC E10 / Size: M, L, XL - KMC X10e -- Pedal: Size: M, L, XL - FastRider City pedals / Size: M, L, XL - Wellgo C157, boron axle, plastic body / Size: M, L, XL - slip-proof aluminum pedals with reflectors -- Max chainring size: 1x: 48T - -Components -- Saddle: FastRider Commuter Comp -- Seatpost: FastRider Comp, 6061 alloy, 31.6mm, 8mm offset, 330mm length -- Handlebar: Size: M - FastRider alloy, 31.8mm, 15mm rise, 600mm width / Size: L, XL - FastRider alloy, 31.8mm, 15mm rise, 660mm width -- Grips: FastRider Satellite Elite, alloy lock-on -- Stem: Size: M - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 70mm length / Size: L - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 90mm length / Size: XL - FastRider alloy, 31.8mm, Blendr compatible, 7-degree, 100mm length -- Headset: Size: M, L, XL - FSA IS-2 alloy, integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom / Size: M, L, XL - FSA Integrated, sealed cartridge bearing, 1-1/8'''' top, 1.5'''' bottom -- Brake: Shimano MT520 4-piston hydraulic disc, post-mount, 180mm rotor -- Brake rotor: Shimano RT56, 6-bolt, 180mm -- Rotor size: Max brake rotor sizes: 180mm front & rear - -Accessories -- Battery: FastRider PowerTube 625Wh -- Charger: FastRider standard 4A, 100-240V -- Motor: FastRider Performance Speed, 85 Nm, 28 mph / 45 kph -- Light: Size: M, L, XL - FastRider taillight, 50 lumens / Size: M, L, XL - FastRider headlight, 500 lumens -- Kickstand: Size: M, L, XL - Rear mount, alloy / Size: M, L, XL - Adjustable length alloy kickstand -- Cargo rack: FastRider integrated rear rack, aluminum -- Fender: FastRider custom aluminum - -Weight -- Weight: M - 25.54 kg / 56.3 lbs - -Weight limit -- This bike has a maximum total weight limit (combined weight of bicycle, rider, and cargo) of 300 pounds (136 kg). - -## Sizing -| Size | Rider Height | Inseam | -|:----:|:------------------------:|:--------------------:| -| M | 165 - 175 cm 5''5" - 5''9" | 77 - 83 cm 30" - 33" | -| L | 175 - 186 cm 5''9" - 6''1" | 82 - 88 cm 32" - 35" | -| XL | 186 - 197 cm 6''1" - 6''6" | 87 - 93 cm 34" - 37" | - -## Geometry -| Frame size letter | M | L | XL | -|---------------------------|-------|-------|-------| -| Wheel size | 27.5" | 27.5" | 27.5" | -| A — Seat tube | 44.6 | 49.1 | 53.4 | -| B — Seat tube angle | 73.0° | 73.0° | 73.0° | -| C — Head tube length | 16.5 | 19.5 | 23.0 | -| D — Head angle | 69.5° | 70.0° | 70.5° | -| E — Effective top tube | 59.5 | 60.7 | 62.2 | -| F — Bottom bracket height | 29.5 | 29.5 | 29.5 | -| G — Bottom bracket drop | 6.0 | 6.0 | 6.0 | -| H — Chainstay length | 48.7 | 48.7 | 48.7 | -| I — Offset | 4.4 | 4.4 | 4.4 | -| J — Trail | 8.6 | 8.1 | 7.9 | -| K — Wheelbase | 114.6 | 115.0 | 116.4 | -| L — Standover | 79.5 | 83.7 | 87.9 | -| M — Frame reach | 40.5 | 40.8 | 41.2 | -| N — Frame stack | 62.3 | 65.2 | 68.8 |', '/static/images/new_bikes_20.jpg', '/static/images/new_bikes_20.jpg', '/static/images/new_bikes_20.jpg', 'FastRider X1', 5499.99, 'FastRider X1 is a high-performance e-bike designed for riders seeking speed and long-distance capabilities. Equipped with a powerful motor and a high-capacity battery, the FastRider X1 is perfect for daily commuters and e-bike enthusiasts. It boasts a sleek and functional design, making it a great alternative to car transportation. The bike also features a smartphone controller for easy navigation and entertainment options.', 'bicycle,mountain bike,professional'), ('7b593451-c042-4b1b-9457-d8b640f44327', '## Overview It''s right for you if... You want a fast and efficient e-bike that can take you long distances. The SonicRide 8S features a hydroformed aluminum frame with a concealed 625Wh battery, a high-powered SonicDrive motor, and a Smartphone Controller. It also includes essential accessories such as lights, fenders, and a rear rack. diff --git a/apps/acme-catalog/src/main/resources/static/basketball_square.jpg b/apps/acme-catalog/src/main/resources/static/basketball_square.jpg index 2c7b2bd7..12ae5ed5 100644 Binary files a/apps/acme-catalog/src/main/resources/static/basketball_square.jpg and b/apps/acme-catalog/src/main/resources/static/basketball_square.jpg differ diff --git a/apps/acme-catalog/src/main/resources/static/bicycle_square.jpg b/apps/acme-catalog/src/main/resources/static/bicycle_square.jpg index bcfbc170..4d379e15 100644 Binary files a/apps/acme-catalog/src/main/resources/static/bicycle_square.jpg and b/apps/acme-catalog/src/main/resources/static/bicycle_square.jpg differ diff --git a/apps/acme-catalog/src/main/resources/static/bottle_square.jpg b/apps/acme-catalog/src/main/resources/static/bottle_square.jpg index cd5d1003..eee87cb9 100644 Binary files a/apps/acme-catalog/src/main/resources/static/bottle_square.jpg and b/apps/acme-catalog/src/main/resources/static/bottle_square.jpg differ diff --git a/apps/acme-catalog/src/main/resources/static/bottle_thumb3.jpg b/apps/acme-catalog/src/main/resources/static/bottle_thumb3.jpg index 15871c45..c4211a6e 100644 Binary files a/apps/acme-catalog/src/main/resources/static/bottle_thumb3.jpg and b/apps/acme-catalog/src/main/resources/static/bottle_thumb3.jpg differ diff --git a/apps/acme-catalog/src/main/resources/static/weights_square.jpg b/apps/acme-catalog/src/main/resources/static/weights_square.jpg index baf7e855..32559ff3 100644 Binary files a/apps/acme-catalog/src/main/resources/static/weights_square.jpg and b/apps/acme-catalog/src/main/resources/static/weights_square.jpg differ diff --git a/apps/acme-catalog/src/main/resources/static/yogamat_square.jpg b/apps/acme-catalog/src/main/resources/static/yogamat_square.jpg index 6f6c207a..06af3ceb 100644 Binary files a/apps/acme-catalog/src/main/resources/static/yogamat_square.jpg and b/apps/acme-catalog/src/main/resources/static/yogamat_square.jpg differ diff --git a/apps/acme-catalog/src/main/resources/static/yogamat_thumb3.jpg b/apps/acme-catalog/src/main/resources/static/yogamat_thumb3.jpg index 78141482..59686a15 100644 Binary files a/apps/acme-catalog/src/main/resources/static/yogamat_thumb3.jpg and b/apps/acme-catalog/src/main/resources/static/yogamat_thumb3.jpg differ diff --git a/apps/acme-identity/README.md b/apps/acme-identity/README.md new file mode 100644 index 00000000..95f4143a --- /dev/null +++ b/apps/acme-identity/README.md @@ -0,0 +1,18 @@ +# Identity + + +> An identity service, as a wrapper for the provided SSO service. + +The goal of this specific service is to emulate a User account service. + +## Local running + +Ensure the local development dependencies are running. (See main [README](../../README.md)) + +Ensure the local authentication server is setup or have it connect to your preferred SSO provider. +`/local-development` + +To run locally + +`./gradlew bootRun --args="--spring.profiles.active=local"` + diff --git a/apps/acme-identity/build.gradle b/apps/acme-identity/build.gradle index 5ce94195..a18df4cf 100644 --- a/apps/acme-identity/build.gradle +++ b/apps/acme-identity/build.gradle @@ -25,17 +25,24 @@ springBoot { } dependencies { + implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springframework.security:spring-security-web' implementation 'org.springframework.boot:spring-boot-starter-security' + implementation 'org.springframework.security:spring-security-config' + implementation "org.springframework.security:spring-security-oauth2-resource-server" implementation "org.springframework.security:spring-security-oauth2-jose" implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' - implementation 'com.azure.spring:spring-cloud-azure-starter-keyvault-secrets' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client' + implementation group: 'io.pivotal.cfenv', name: 'java-cfenv-boot', version: '3.1.5' + implementation group: 'io.pivotal.cfenv', name: 'java-cfenv-boot-pivotal-sso', version: '3.1.5' + implementation 'org.springframework.credhub:spring-credhub-starter:3.1.0' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-config-client' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'io.projectreactor:reactor-test' @@ -44,8 +51,9 @@ dependencies { dependencyManagement { imports { - mavenBom "com.azure.spring:spring-cloud-azure-dependencies:${springCloudAzureVersion}" mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" + mavenBom "io.pivotal.spring.cloud:spring-cloud-services-dependencies:4.1.3" + } } diff --git a/apps/acme-identity/gradle.properties b/apps/acme-identity/gradle.properties index 9a6ff82d..3e90d368 100644 --- a/apps/acme-identity/gradle.properties +++ b/apps/acme-identity/gradle.properties @@ -1,3 +1,2 @@ -springBootVersion=3.2.1 -springCloudVersion=2023.0.0 -springCloudAzureVersion=5.8.0 \ No newline at end of file +springBootVersion=3.3.2 +springCloudVersion=2023.0.3 diff --git a/apps/acme-identity/gradle/wrapper/gradle-wrapper.jar b/apps/acme-identity/gradle/wrapper/gradle-wrapper.jar index 41d9927a..d64cd491 100644 Binary files a/apps/acme-identity/gradle/wrapper/gradle-wrapper.jar and b/apps/acme-identity/gradle/wrapper/gradle-wrapper.jar differ diff --git a/apps/acme-identity/gradle/wrapper/gradle-wrapper.properties b/apps/acme-identity/gradle/wrapper/gradle-wrapper.properties index 774fae87..0d184210 100644 --- a/apps/acme-identity/gradle/wrapper/gradle-wrapper.properties +++ b/apps/acme-identity/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/apps/acme-identity/gradlew b/apps/acme-identity/gradlew index 1b6c7873..1aa94a42 100755 --- a/apps/acme-identity/gradlew +++ b/apps/acme-identity/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +80,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ @@ -205,6 +214,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/apps/acme-identity/gradlew.bat b/apps/acme-identity/gradlew.bat index 107acd32..6689b85b 100644 --- a/apps/acme-identity/gradlew.bat +++ b/apps/acme-identity/gradlew.bat @@ -1,89 +1,92 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/apps/acme-identity/identity-routes.json b/apps/acme-identity/identity-routes.json new file mode 100644 index 00000000..5446cca9 --- /dev/null +++ b/apps/acme-identity/identity-routes.json @@ -0,0 +1,53 @@ +{"routes": [ + { + "order": 0, + "sso-enabled": true, + "predicates": [ + "Path=/acme-login", + "Method=GET" + ], + "filters": [ + "RedirectTo=302, /" + ], + "tags": [ + "sso" + ] + }, + { + "token-relay": true, + "predicates": [ + "Path=/userinfo", + "Method=GET" + ], + "filters": [ + "RedirectTo=302, /whoami", + "SetResponseHeader=Cache-Control, no-store" + ], + "tags": [ + "users" + ] + }, + { + "uri": "no://op", + "predicates": [ + "Path=/verify-token", + "Method=POST" + ], + "sso-enabled": true, + "tags": [ + "users" + ] + }, + { + "token-relay": true, + "predicates": [ + "Path=/whoami", + "Method=GET" + ], + "filters": [ + "StripPrefix=0" + ], + "tags": [ + "users" + ] + }]} diff --git a/apps/acme-identity/manifest.yml b/apps/acme-identity/manifest.yml new file mode 100644 index 00000000..134ca6d1 --- /dev/null +++ b/apps/acme-identity/manifest.yml @@ -0,0 +1,25 @@ +--- +applications: +- name: acme-identity + memory: 1G + path: build/libs/acme-identity-0.0.1-SNAPSHOT.jar + buildpack: java_buildpack_offline + services: + - acme-config + - acme-registry + - name: acme-sso + parameters: + grant_types: ["authorization_code"] + scopes: ["openid"] + authorities: ["openid"] + redirect_uris: ["https://acme-fitness.apps.tas.vmtanzu.com"] + auto_approved_scopes: ["openid"] + identity_providers: ["uaa"] + launch_url: "https://acme-fitness.apps.tas.vmtanzu.com" + show_on_home_page: false + routes: + - route: acme-identity.apps.internal + env: + JBP_CONFIG_SPRING_AUTO_RECONFIGURATION: '{enabled: false}' + SPRING_PROFILES_ACTIVE: http2,cloud + JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 21.+ } }' diff --git a/apps/acme-identity/src/main/java/com/example/acme/identity/UserNameJwtAuthenticationConverter.java b/apps/acme-identity/src/main/java/com/example/acme/identity/UserNameJwtAuthenticationConverter.java index faaedffd..37aade88 100644 --- a/apps/acme-identity/src/main/java/com/example/acme/identity/UserNameJwtAuthenticationConverter.java +++ b/apps/acme-identity/src/main/java/com/example/acme/identity/UserNameJwtAuthenticationConverter.java @@ -32,6 +32,9 @@ private String getUserName(Jwt jwt) { } else if (jwt.hasClaim("user_name")) { LOGGER.info("Username from claim 'user_name'"); return jwt.getClaimAsString("user_name"); + } else if (jwt.hasClaim("email")) { + LOGGER.info("Username from claim 'email'"); + return jwt.getClaimAsString("email"); } else { LOGGER.info("Username from claim 'subject'"); return jwt.getSubject(); diff --git a/apps/acme-identity/src/main/java/com/example/acme/identity/WhoAmIController.java b/apps/acme-identity/src/main/java/com/example/acme/identity/WhoAmIController.java index 4d812713..2380bda3 100644 --- a/apps/acme-identity/src/main/java/com/example/acme/identity/WhoAmIController.java +++ b/apps/acme-identity/src/main/java/com/example/acme/identity/WhoAmIController.java @@ -1,37 +1,34 @@ package com.example.acme.identity; -import java.security.Principal; +import static java.util.Collections.emptyMap; import java.util.Map; - import org.slf4j.Logger; import org.slf4j.LoggerFactory; - import org.springframework.security.core.Authentication; -import org.springframework.security.oauth2.core.oidc.user.OidcUser; +import org.springframework.security.oauth2.client.authentication.OAuth2AuthenticationToken; +import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; -import static java.util.Collections.emptyMap; - @RestController public class WhoAmIController { private final Logger log = LoggerFactory.getLogger(WhoAmIController.class); @GetMapping("/whoami") - public Map getUserInfo(Principal principal) { + public Map getUserInfo(Authentication authentication) { log.debug("/whoami endpoint is triggered."); - if (principal == null) { + if (authentication == null) { log.warn("Authentication is null cannot extract user info"); return emptyMap(); } - var user = ((OidcUser) ((Authentication) principal).getPrincipal()).getClaims(); return Map.of( - "userId", user.get("sub").toString(), - "userName", user.get("name").toString()); + "userId", authentication.getName(), + "userName", authentication.getName() + ); } } diff --git a/apps/acme-identity/src/main/resources/application-local.yaml b/apps/acme-identity/src/main/resources/application-local.yaml new file mode 100644 index 00000000..c9d101a4 --- /dev/null +++ b/apps/acme-identity/src/main/resources/application-local.yaml @@ -0,0 +1,17 @@ + +spring: + application: + name: acme-identity + cloud: + config: + enabled: true + security: + oauth2: + resourceserver: + jwt: + issuer-uri: "Needed value for Bean Initializer this comes from Config Server" + + config: + import: + - configserver:http://localhost:8888 + diff --git a/apps/acme-identity/src/main/resources/application.yaml b/apps/acme-identity/src/main/resources/application.yaml index 83ff70d9..6f8d60a1 100644 --- a/apps/acme-identity/src/main/resources/application.yaml +++ b/apps/acme-identity/src/main/resources/application.yaml @@ -5,9 +5,11 @@ management: include: info,health spring: + application: + name: acme-identity config: activate: - on-profile: tap + on-profile: default security: oauth2: resourceserver: diff --git a/apps/acme-identity/src/test/resources/application.yaml b/apps/acme-identity/src/test/resources/application.yaml index 1769d600..af1f675c 100644 --- a/apps/acme-identity/src/test/resources/application.yaml +++ b/apps/acme-identity/src/test/resources/application.yaml @@ -4,3 +4,6 @@ spring: resourceserver: jwt: jwk-set-uri: "http://example.com" + cloud: + config: + enabled: false diff --git a/apps/acme-order/.gitignore b/apps/acme-order/.gitignore index a5f2c0ef..fe17bb30 100755 --- a/apps/acme-order/.gitignore +++ b/apps/acme-order/.gitignore @@ -23,6 +23,7 @@ nupkg/ # Rider .idea +*.iml # User-specific files *.suo @@ -49,4 +50,5 @@ msbuild.wrn # Visual Studio 2015 .vs/ -publish/ \ No newline at end of file +publish/ +/http-client.private.env.json diff --git a/apps/acme-order/Auth/AuthorizeResource.cs b/apps/acme-order/Auth/AuthorizeResource.cs index 17bb6265..3f8850c6 100755 --- a/apps/acme-order/Auth/AuthorizeResource.cs +++ b/apps/acme-order/Auth/AuthorizeResource.cs @@ -1,63 +1,56 @@ -using System; using System.Linq; using System.Net.Http; -using System.Net.Http.Headers; using System.Security.Authentication; using System.Text; -using acme_order.Configuration; -using acme_order.Request; +using AcmeOrder.Configuration; +using AcmeOrder.Request; using Microsoft.AspNetCore.Mvc.Filters; using Microsoft.Net.Http.Headers; using Newtonsoft.Json; -namespace acme_order.Auth +namespace AcmeOrder.Auth; + +public sealed class AuthorizeResource : IActionFilter { - public sealed class AuthorizeResource : IActionFilter + private static IAcmeServiceSettings _acmeServiceSettings; + + public AuthorizeResource(IAcmeServiceSettings acmeServiceSettings) { - private static IAcmeServiceSettings _acmeServiceSettings; + _acmeServiceSettings = acmeServiceSettings; + } - public AuthorizeResource(IAcmeServiceSettings acmeServiceSettings) - { - _acmeServiceSettings = acmeServiceSettings; - } + public void OnActionExecuted(ActionExecutedContext context) + { + } - public void OnActionExecuted(ActionExecutedContext context) - { - - } + public void OnActionExecuting(ActionExecutingContext context) + { + var headers = context.HttpContext.Request.Headers; - public void OnActionExecuting(ActionExecutingContext context) - { - var headers = context.HttpContext.Request.Headers; + if (!headers.Keys.Any(x => x.Equals(HeaderNames.Authorization))) throw new AuthenticationException(); + var accessToken = headers[HeaderNames.Authorization]; + accessToken = accessToken.ToString().Replace("Bearer ", ""); - if (!headers.Keys.Any(x => x.Equals(HeaderNames.Authorization))) throw new AuthenticationException(); - var accessToken = headers[HeaderNames.Authorization]; - accessToken = accessToken.ToString().Replace("Bearer ", ""); - - if (string.IsNullOrEmpty(accessToken)) throw new AuthenticationException(); - VerifyToken(accessToken); - } + if (string.IsNullOrEmpty(accessToken)) throw new AuthenticationException(); + VerifyToken(accessToken); + } - private static async void VerifyToken(string accessToken) + private static async void VerifyToken(string accessToken) + { + var tokenRequest = new TokenRequest { - var tokenRequest = new TokenRequest - { - AccessToken = accessToken - }; + AccessToken = accessToken + }; - var json = JsonConvert.SerializeObject(tokenRequest); - var data = new StringContent(json, Encoding.UTF8, "application/json"); - var url = $"{_acmeServiceSettings.AuthUrl}/verify-token"; + var json = JsonConvert.SerializeObject(tokenRequest); + var data = new StringContent(json, Encoding.UTF8, "application/json"); + var url = $"{_acmeServiceSettings.AuthUrl}/verify-token"; - using var client = new HttpClient(); + using var client = new HttpClient(); - var response = await client.PostAsync(url, data); + var response = await client.PostAsync(url, data); - if (!response.IsSuccessStatusCode) - { - throw new AuthenticationException(); - } - } + if (!response.IsSuccessStatusCode) throw new AuthenticationException(); } } \ No newline at end of file diff --git a/apps/acme-order/Configuration/AcmeServiceSettings.cs b/apps/acme-order/Configuration/AcmeServiceSettings.cs index 03cc84c4..615906ec 100755 --- a/apps/acme-order/Configuration/AcmeServiceSettings.cs +++ b/apps/acme-order/Configuration/AcmeServiceSettings.cs @@ -1,14 +1,11 @@ -using System; +namespace AcmeOrder.Configuration; -namespace acme_order.Configuration +public class AcmeServiceSettings : IAcmeServiceSettings { - public class AcmeServiceSettings : IAcmeServiceSettings - { - public string AuthUrl { get; set; } - } - - public interface IAcmeServiceSettings - { - public string AuthUrl { get; set; } - } + public string AuthUrl { get; set; } +} + +public interface IAcmeServiceSettings +{ + public string AuthUrl { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Configuration/CloudRoleNameTelemetryInitializer.cs b/apps/acme-order/Configuration/CloudRoleNameTelemetryInitializer.cs deleted file mode 100644 index fb03e1c7..00000000 --- a/apps/acme-order/Configuration/CloudRoleNameTelemetryInitializer.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Microsoft.ApplicationInsights.Channel; -using Microsoft.ApplicationInsights.Extensibility; - -namespace acme_order.Configuration -{ - public class CloudRoleNameTelemetryInitializer : ITelemetryInitializer - { - public void Initialize(ITelemetry telemetry) - { - telemetry.Context.Cloud.RoleName = "order-service"; - } - } -} \ No newline at end of file diff --git a/apps/acme-order/Controllers/OrderController.cs b/apps/acme-order/Controllers/OrderController.cs index 1cc953d9..e5439d3a 100755 --- a/apps/acme-order/Controllers/OrderController.cs +++ b/apps/acme-order/Controllers/OrderController.cs @@ -1,52 +1,41 @@ -using acme_order.Models; -using acme_order.Services; -using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; -using acme_order.Auth; -using acme_order.Response; -using Microsoft.AspNetCore.Authorization; +using AcmeOrder.Auth; +using AcmeOrder.Models; +using AcmeOrder.Response; +using AcmeOrder.Services; +using Microsoft.AspNetCore.Mvc; using Microsoft.Net.Http.Headers; -namespace acme_order.Controllers -{ +namespace AcmeOrder.Controllers; - [Route("order")] - [ApiController] - public class OrderController : ControllerBase +[Route("order")] +[ApiController] +public class OrderController(OrderService orderService) : ControllerBase +{ + [HttpPost("add/{userid}")] + [ServiceFilter(typeof(AuthorizeResource))] + public async Task> Create(string userid, Order orderIn) { - private readonly OrderService _orderService; - - public OrderController(OrderService orderService) - { - _orderService = orderService; - } - - [HttpPost("add/{userid}")] - [ServiceFilter(typeof(AuthorizeResource))] - public async Task> Create(string userid, Order orderIn) - { - var authorization = HttpContext.Request.Headers[HeaderNames.Authorization].ToString(); - return await _orderService.Create(userid, orderIn, authorization); - } + var authorization = HttpContext.Request.Headers[HeaderNames.Authorization].ToString(); + return await orderService.Create(userid, orderIn, authorization); + } - [HttpGet("all")] - [ServiceFilter(typeof(AuthorizeResource))] - public ActionResult> Get() => - _orderService.Get(); + [HttpGet("all")] + [ServiceFilter(typeof(AuthorizeResource))] + public ActionResult> Get() + { + return orderService.Get(); + } - [HttpGet("{userId}", Name = "GetOrderByUser")] - [ServiceFilter(typeof(AuthorizeResource))] - public ActionResult> Get(string userId) - { - var orderList = _orderService.Get(userId); + [HttpGet("{userId}", Name = "GetOrderByUser")] + [ServiceFilter(typeof(AuthorizeResource))] + public ActionResult> Get(string userId) + { + var orderList = orderService.Get(userId); - if (orderList == null || orderList.Count == 0) - { - return NotFound(); - } + if (orderList == null || orderList.Count == 0) return NotFound(); - return orderList; - } + return orderList; } } \ No newline at end of file diff --git a/apps/acme-order/Db/OrderContext.cs b/apps/acme-order/Db/OrderContext.cs index f62ae1d1..eb8662bd 100755 --- a/apps/acme-order/Db/OrderContext.cs +++ b/apps/acme-order/Db/OrderContext.cs @@ -1,18 +1,12 @@ -using acme_order.Models; +using AcmeOrder.Models; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; -namespace acme_order.Db -{ - public abstract class OrderContext : DbContext - { - protected readonly IConfiguration Configuration; +namespace AcmeOrder.Db; - protected OrderContext(IConfiguration configuration) - { - Configuration = configuration; - } +public abstract class OrderContext(IConfiguration configuration) : DbContext +{ + protected readonly IConfiguration Configuration = configuration; - public virtual DbSet Orders { get; set; } - } + public virtual DbSet Orders { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Db/PostgresOrderContext.cs b/apps/acme-order/Db/PostgresOrderContext.cs index c6daab28..928c2882 100755 --- a/apps/acme-order/Db/PostgresOrderContext.cs +++ b/apps/acme-order/Db/PostgresOrderContext.cs @@ -1,79 +1,74 @@ using System; -using acme_order.Models; +using AcmeOrder.Models; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; +using Steeltoe.Connector.PostgreSql.EFCore; -namespace acme_order.Db +namespace AcmeOrder.Db; + +public class PostgresOrderContext(IConfiguration configuration) : OrderContext(configuration) { - public class PostgresOrderContext : OrderContext + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { - public PostgresOrderContext(IConfiguration configuration) - : base(configuration) - { - } - - protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) - { - optionsBuilder.UseNpgsql(Configuration.GetConnectionString("OrderContext")); - } + optionsBuilder.UseNpgsql(Configuration); + } - protected override void OnModelCreating(ModelBuilder modelBuilder) + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + modelBuilder.HasPostgresExtension("uuid-ossp"); + modelBuilder.Entity(entity => { - modelBuilder.HasPostgresExtension("uuid-ossp"); - modelBuilder.Entity(entity => - { - entity.ToTable("order"); + entity.ToTable("order"); - entity.Property(e => e.Id) - .HasColumnName("id") - .HasColumnType("uuid") - .HasDefaultValueSql("uuid_generate_v4()") - .IsRequired(); + entity.Property(e => e.Id) + .HasColumnName("id") + .HasColumnType("uuid") + .HasDefaultValueSql("uuid_generate_v4()") + .IsRequired(); - entity.Property(e => e.Address) - .HasColumnName("address") - .HasColumnType("json"); + entity.Property(e => e.Address) + .HasColumnName("address") + .HasColumnType("json"); - entity.Property(e => e.Card) - .HasColumnName("card") - .HasColumnType("json"); + entity.Property(e => e.Card) + .HasColumnName("card") + .HasColumnType("json"); - entity.Property(e => e.Cart) - .HasColumnName("cart") - .HasColumnType("json"); + entity.Property(e => e.Cart) + .HasColumnName("cart") + .HasColumnType("json"); - entity.Property(e => e.Date) - .HasColumnName("date") - .HasDefaultValue(DateTime.UtcNow); + entity.Property(e => e.Date) + .HasColumnName("date") + .HasDefaultValue(DateTime.UtcNow); - entity.Property(e => e.Delivery) - .HasColumnName("delivery") - .HasMaxLength(1000); + entity.Property(e => e.Delivery) + .HasColumnName("delivery") + .HasMaxLength(1000); - entity.Property(e => e.Email) - .HasColumnName("email") - .HasMaxLength(1000); + entity.Property(e => e.Email) + .HasColumnName("email") + .HasMaxLength(1000); - entity.Property(e => e.Firstname) - .HasColumnName("firstname") - .HasMaxLength(1000); + entity.Property(e => e.Firstname) + .HasColumnName("firstname") + .HasMaxLength(1000); - entity.Property(e => e.Lastname) - .HasColumnName("lastname") - .HasMaxLength(1000); + entity.Property(e => e.Lastname) + .HasColumnName("lastname") + .HasMaxLength(1000); - entity.Property(e => e.Paid) - .HasColumnName("paid") - .HasMaxLength(1000); + entity.Property(e => e.Paid) + .HasColumnName("paid") + .HasMaxLength(1000); - entity.Property(e => e.Total) - .HasColumnName("total") - .HasMaxLength(1000); + entity.Property(e => e.Total) + .HasColumnName("total") + .HasMaxLength(1000); - entity.Property(e => e.UserId) - .HasColumnName("user_id") - .HasMaxLength(1000); - }); - } + entity.Property(e => e.UserId) + .HasColumnName("user_id") + .HasMaxLength(1000); + }); } } \ No newline at end of file diff --git a/apps/acme-order/Db/SqliteOrderContext.cs b/apps/acme-order/Db/SqliteOrderContext.cs index 73571e43..a0040fa0 100755 --- a/apps/acme-order/Db/SqliteOrderContext.cs +++ b/apps/acme-order/Db/SqliteOrderContext.cs @@ -1,91 +1,85 @@ using System; using System.Collections.Generic; -using acme_order.Models; +using AcmeOrder.Models; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; -namespace acme_order.Db +namespace AcmeOrder.Db; + +public class SqliteOrderContext(IConfiguration configuration) : OrderContext(configuration) { - public class SqliteOrderContext : OrderContext + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { - public SqliteOrderContext(IConfiguration configuration) - : base(configuration) - { - } - - protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) - { - optionsBuilder.UseSqlite(Configuration.GetConnectionString("OrderContext")); - } + optionsBuilder.UseSqlite("Data Source=sqlite.order.db"); + } - protected override void OnModelCreating(ModelBuilder modelBuilder) + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + modelBuilder.Entity(entity => { - modelBuilder.Entity(entity => - { - entity.ToTable("order"); + entity.ToTable("order"); - entity.Property(e => e.Id) - .HasColumnName("id") - .ValueGeneratedOnAdd() - .IsRequired(); + entity.Property(e => e.Id) + .HasColumnName("id") + .ValueGeneratedOnAdd() + .IsRequired(); - entity.Property(e => e.Address) - .HasColumnName("address") - .HasConversion( - v => JsonConvert.SerializeObject(v, - new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), - v => JsonConvert.DeserializeObject
(v, - new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); + entity.Property(e => e.Address) + .HasColumnName("address") + .HasConversion( + v => JsonConvert.SerializeObject(v, + new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), + v => JsonConvert.DeserializeObject
(v, + new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); - entity.Property(e => e.Card) - .HasColumnName("card") - .HasConversion( - v => JsonConvert.SerializeObject(v, - new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), - v => JsonConvert.DeserializeObject(v, - new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); + entity.Property(e => e.Card) + .HasColumnName("card") + .HasConversion( + v => JsonConvert.SerializeObject(v, + new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), + v => JsonConvert.DeserializeObject(v, + new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); - entity.Property(e => e.Cart) - .HasColumnName("cart") - .HasConversion( - v => JsonConvert.SerializeObject(v, - new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), - v => JsonConvert.DeserializeObject>(v, - new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); + entity.Property(e => e.Cart) + .HasColumnName("cart") + .HasConversion( + v => JsonConvert.SerializeObject(v, + new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), + v => JsonConvert.DeserializeObject>(v, + new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore })); - entity.Property(e => e.Date) - .HasColumnName("date") - .HasDefaultValue(DateTime.UtcNow); + entity.Property(e => e.Date) + .HasColumnName("date") + .HasDefaultValue(DateTime.UtcNow); - entity.Property(e => e.Delivery) - .HasColumnName("delivery") - .HasMaxLength(1000); + entity.Property(e => e.Delivery) + .HasColumnName("delivery") + .HasMaxLength(1000); - entity.Property(e => e.Email) - .HasColumnName("email") - .HasMaxLength(1000); + entity.Property(e => e.Email) + .HasColumnName("email") + .HasMaxLength(1000); - entity.Property(e => e.Firstname) - .HasColumnName("firstname") - .HasMaxLength(1000); + entity.Property(e => e.Firstname) + .HasColumnName("firstname") + .HasMaxLength(1000); - entity.Property(e => e.Lastname) - .HasColumnName("lastname") - .HasMaxLength(1000); + entity.Property(e => e.Lastname) + .HasColumnName("lastname") + .HasMaxLength(1000); - entity.Property(e => e.Paid) - .HasColumnName("paid") - .HasMaxLength(1000); + entity.Property(e => e.Paid) + .HasColumnName("paid") + .HasMaxLength(1000); - entity.Property(e => e.Total) - .HasColumnName("total") - .HasMaxLength(1000); + entity.Property(e => e.Total) + .HasColumnName("total") + .HasMaxLength(1000); - entity.Property(e => e.UserId) - .HasColumnName("user_id") - .HasMaxLength(1000); - }); - } + entity.Property(e => e.UserId) + .HasColumnName("user_id") + .HasMaxLength(1000); + }); } } \ No newline at end of file diff --git a/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.Designer.cs b/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.Designer.cs index 932a3b2d..2724e19b 100644 --- a/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.Designer.cs +++ b/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.Designer.cs @@ -1,15 +1,15 @@ // + using System; using System.Collections.Generic; +using AcmeOrder.Db; +using AcmeOrder.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; -using acme_order.Db; -using acme_order.Models; -namespace acmeorder.Migrations.Postgres +namespace AcmeOrder.Migrations.Postgres { [DbContext(typeof(PostgresOrderContext))] [Migration("20220509085519_InitialPostgres")] @@ -24,7 +24,7 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) .HasAnnotation("ProductVersion", "3.1.24") .HasAnnotation("Relational:MaxIdentifierLength", 63); - modelBuilder.Entity("acme_order.Models.Order", b => + modelBuilder.Entity("AcmeOrder.Models.Order", b => { b.Property("Id") .ValueGeneratedOnAdd() diff --git a/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.cs b/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.cs index eb1d012c..7f80ef90 100644 --- a/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.cs +++ b/apps/acme-order/Migrations/Postgres/20220509085519_InitialPostgres.cs @@ -1,44 +1,41 @@ using System; using System.Collections.Generic; +using AcmeOrder.Models; using Microsoft.EntityFrameworkCore.Migrations; -using acme_order.Models; -namespace acmeorder.Migrations.Postgres +namespace AcmeOrder.Migrations.Postgres; + +public partial class InitialPostgres : Migration { - public partial class InitialPostgres : Migration + protected override void Up(MigrationBuilder migrationBuilder) { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AlterDatabase() - .Annotation("Npgsql:PostgresExtension:uuid-ossp", ",,"); + migrationBuilder.AlterDatabase() + .Annotation("Npgsql:PostgresExtension:uuid-ossp", ",,"); - migrationBuilder.CreateTable( - name: "order", - columns: table => new - { - id = table.Column(type: "uuid", nullable: false, defaultValueSql: "uuid_generate_v4()"), - date = table.Column(nullable: true, defaultValue: new DateTime(2022, 5, 9, 8, 55, 19, 197, DateTimeKind.Unspecified).AddTicks(5020)), - paid = table.Column(maxLength: 1000, nullable: true), - user_id = table.Column(maxLength: 1000, nullable: true), - firstname = table.Column(maxLength: 1000, nullable: true), - lastname = table.Column(maxLength: 1000, nullable: true), - email = table.Column(maxLength: 1000, nullable: true), - delivery = table.Column(maxLength: 1000, nullable: true), - total = table.Column(maxLength: 1000, nullable: true), - address = table.Column
(type: "json", nullable: true), - card = table.Column(type: "json", nullable: true), - cart = table.Column>(type: "json", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_order", x => x.id); - }); - } + migrationBuilder.CreateTable( + "order", + table => new + { + id = table.Column("uuid", nullable: false, defaultValueSql: "uuid_generate_v4()"), + date = table.Column(nullable: true, + defaultValue: new DateTime(2022, 5, 9, 8, 55, 19, 197, DateTimeKind.Unspecified).AddTicks(5020)), + paid = table.Column(maxLength: 1000, nullable: true), + user_id = table.Column(maxLength: 1000, nullable: true), + firstname = table.Column(maxLength: 1000, nullable: true), + lastname = table.Column(maxLength: 1000, nullable: true), + email = table.Column(maxLength: 1000, nullable: true), + delivery = table.Column(maxLength: 1000, nullable: true), + total = table.Column(maxLength: 1000, nullable: true), + address = table.Column
("json", nullable: true), + card = table.Column("json", nullable: true), + cart = table.Column>("json", nullable: true) + }, + constraints: table => { table.PrimaryKey("PK_order", x => x.id); }); + } - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "order"); - } + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + "order"); } -} +} \ No newline at end of file diff --git a/apps/acme-order/Migrations/Postgres/PostgresOrderContextModelSnapshot.cs b/apps/acme-order/Migrations/Postgres/PostgresOrderContextModelSnapshot.cs index d1636bbf..38987a59 100644 --- a/apps/acme-order/Migrations/Postgres/PostgresOrderContextModelSnapshot.cs +++ b/apps/acme-order/Migrations/Postgres/PostgresOrderContextModelSnapshot.cs @@ -1,12 +1,12 @@ // using System; using System.Collections.Generic; +using AcmeOrder.Db; +using AcmeOrder.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; -using acme_order.Db; -using acme_order.Models; namespace acmeorder.Migrations.Postgres { @@ -22,7 +22,7 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasAnnotation("ProductVersion", "3.1.24") .HasAnnotation("Relational:MaxIdentifierLength", 63); - modelBuilder.Entity("acme_order.Models.Order", b => + modelBuilder.Entity("AcmeOrder.Models.Order", b => { b.Property("Id") .ValueGeneratedOnAdd() diff --git a/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.Designer.cs b/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.Designer.cs index 52366d0f..28c48729 100644 --- a/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.Designer.cs +++ b/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.Designer.cs @@ -1,12 +1,12 @@ // + using System; +using AcmeOrder.Db; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using acme_order.Db; -namespace acmeorder.Migrations.Sqlite +namespace AcmeOrder.Migrations.Sqlite { [DbContext(typeof(SqliteOrderContext))] [Migration("20220509091741_InitialSqlite")] @@ -18,7 +18,7 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) modelBuilder .HasAnnotation("ProductVersion", "3.1.24"); - modelBuilder.Entity("acme_order.Models.Order", b => + modelBuilder.Entity("AcmeOrder.Models.Order", b => { b.Property("Id") .ValueGeneratedOnAdd() diff --git a/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.cs b/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.cs index ce915374..01688c4a 100644 --- a/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.cs +++ b/apps/acme-order/Migrations/Sqlite/20220509091741_InitialSqlite.cs @@ -1,39 +1,36 @@ using System; using Microsoft.EntityFrameworkCore.Migrations; -namespace acmeorder.Migrations.Sqlite +namespace AcmeOrder.Migrations.Sqlite; + +public partial class InitialSqlite : Migration { - public partial class InitialSqlite : Migration + protected override void Up(MigrationBuilder migrationBuilder) { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "order", - columns: table => new - { - id = table.Column(nullable: false), - date = table.Column(nullable: true, defaultValue: new DateTime(2022, 5, 9, 9, 17, 40, 879, DateTimeKind.Utc).AddTicks(7650)), - paid = table.Column(maxLength: 1000, nullable: true), - user_id = table.Column(maxLength: 1000, nullable: true), - firstname = table.Column(maxLength: 1000, nullable: true), - lastname = table.Column(maxLength: 1000, nullable: true), - email = table.Column(maxLength: 1000, nullable: true), - delivery = table.Column(maxLength: 1000, nullable: true), - total = table.Column(maxLength: 1000, nullable: true), - address = table.Column(nullable: true), - card = table.Column(nullable: true), - cart = table.Column(nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_order", x => x.id); - }); - } + migrationBuilder.CreateTable( + "order", + table => new + { + id = table.Column(nullable: false), + date = table.Column(nullable: true, + defaultValue: new DateTime(2022, 5, 9, 9, 17, 40, 879, DateTimeKind.Utc).AddTicks(7650)), + paid = table.Column(maxLength: 1000, nullable: true), + user_id = table.Column(maxLength: 1000, nullable: true), + firstname = table.Column(maxLength: 1000, nullable: true), + lastname = table.Column(maxLength: 1000, nullable: true), + email = table.Column(maxLength: 1000, nullable: true), + delivery = table.Column(maxLength: 1000, nullable: true), + total = table.Column(maxLength: 1000, nullable: true), + address = table.Column(nullable: true), + card = table.Column(nullable: true), + cart = table.Column(nullable: true) + }, + constraints: table => { table.PrimaryKey("PK_order", x => x.id); }); + } - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "order"); - } + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + "order"); } -} +} \ No newline at end of file diff --git a/apps/acme-order/Migrations/Sqlite/SqliteOrderContextModelSnapshot.cs b/apps/acme-order/Migrations/Sqlite/SqliteOrderContextModelSnapshot.cs index 7382f818..6a46f937 100644 --- a/apps/acme-order/Migrations/Sqlite/SqliteOrderContextModelSnapshot.cs +++ b/apps/acme-order/Migrations/Sqlite/SqliteOrderContextModelSnapshot.cs @@ -1,9 +1,9 @@ // using System; +using AcmeOrder.Db; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using acme_order.Db; namespace acmeorder.Migrations.Sqlite { @@ -16,7 +16,7 @@ protected override void BuildModel(ModelBuilder modelBuilder) modelBuilder .HasAnnotation("ProductVersion", "3.1.24"); - modelBuilder.Entity("acme_order.Models.Order", b => + modelBuilder.Entity("AcmeOrder.Models.Order", b => { b.Property("Id") .ValueGeneratedOnAdd() diff --git a/apps/acme-order/Models/Address.cs b/apps/acme-order/Models/Address.cs index 2ad580bf..b73eaca0 100755 --- a/apps/acme-order/Models/Address.cs +++ b/apps/acme-order/Models/Address.cs @@ -1,11 +1,10 @@ -namespace acme_order.Models +namespace AcmeOrder.Models; + +public class Address { - public class Address - { - public string Street { get; set; } - public string City { get; set; } - public string Zip { get; set; } - public string State { get; set; } - public string Country { get; set; } - } + public string Street { get; set; } + public string City { get; set; } + public string Zip { get; set; } + public string State { get; set; } + public string Country { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Models/Card.cs b/apps/acme-order/Models/Card.cs index 7c954713..fb91fe5d 100755 --- a/apps/acme-order/Models/Card.cs +++ b/apps/acme-order/Models/Card.cs @@ -1,11 +1,10 @@ -namespace acme_order.Models +namespace AcmeOrder.Models; + +public class Card { - public class Card - { - public string Type { get; set; } - public string Number { get; set; } - public string ExpMonth { get; set; } - public string ExpYear { get; set; } - public string Ccv { get; set; } - } + public string Type { get; set; } + public string Number { get; set; } + public string ExpMonth { get; set; } + public string ExpYear { get; set; } + public string Ccv { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Models/Cart.cs b/apps/acme-order/Models/Cart.cs index 72026552..9fde3710 100755 --- a/apps/acme-order/Models/Cart.cs +++ b/apps/acme-order/Models/Cart.cs @@ -1,10 +1,9 @@ -namespace acme_order.Models +namespace AcmeOrder.Models; + +public class Cart { - public class Cart - { - public string Id { get; set; } - public string Description { get; set; } - public int Quantity { get; set; } - public string Price { get; set; } - } + public string Id { get; set; } + public string Description { get; set; } + public int Quantity { get; set; } + public string Price { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Models/Order.cs b/apps/acme-order/Models/Order.cs index ee49fb4e..f02e5b9c 100755 --- a/apps/acme-order/Models/Order.cs +++ b/apps/acme-order/Models/Order.cs @@ -1,21 +1,20 @@ using System; using System.Collections.Generic; -namespace acme_order.Models +namespace AcmeOrder.Models; + +public class Order { - public class Order - { - public Guid Id { get; set; } - public DateTime? Date { get; set; } - public string Paid { get; set; } - public string UserId { get; set; } - public string Firstname { get; set; } - public string Lastname { get; set; } - public string Email { get; set; } - public string Delivery { get; set; } - public string Total { get; set; } - public Address Address { get; set; } - public Card Card { get; set; } - public ICollection Cart { get; set; } - } + public Guid Id { get; set; } + public DateTime? Date { get; set; } + public string Paid { get; set; } + public string UserId { get; set; } + public string Firstname { get; set; } + public string Lastname { get; set; } + public string Email { get; set; } + public string Delivery { get; set; } + public string Total { get; set; } + public Address Address { get; set; } + public Card Card { get; set; } + public ICollection Cart { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Program.cs b/apps/acme-order/Program.cs index b5c396c8..86101c2b 100755 --- a/apps/acme-order/Program.cs +++ b/apps/acme-order/Program.cs @@ -1,34 +1,25 @@ using System; -using System.ComponentModel; -using acme_order.Auth; -using acme_order.Configuration; -using acme_order.Db; -using acme_order.Services; -using Azure.Extensions.AspNetCore.Configuration.Secrets; -using Azure.Identity; -using Azure.Security.KeyVault.Secrets; -using Microsoft.ApplicationInsights.Extensibility; +using AcmeOrder.Auth; +using AcmeOrder.Configuration; +using AcmeOrder.Db; +using AcmeOrder.Services; using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; -using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Options; +using Npgsql; +using Steeltoe.Common.Http.Discovery; +using Steeltoe.Discovery.Client; +using Steeltoe.Discovery.Eureka; +using Steeltoe.Extensions.Configuration.CloudFoundry; using Steeltoe.Management.Endpoint; + var builder = WebApplication.CreateBuilder(args); +builder.AddCloudFoundryConfiguration(); var services = builder.Services; var configuration = builder.Configuration; builder.AddAllActuators(); -var keyVaultUri = configuration["ConnectionStrings:KeyVaultUri"]; -if (!string.IsNullOrEmpty(keyVaultUri)) -{ - var secretClient = new SecretClient( - new Uri(keyVaultUri), - new DefaultAzureCredential()); - configuration.AddAzureKeyVault(secretClient, new KeyVaultSecretManager()); -} - +builder.AddServiceDiscovery(c => c.UseEureka()); services.Configure(configuration.GetSection(nameof(AcmeServiceSettings))); @@ -38,33 +29,28 @@ switch (configuration["DatabaseProvider"]) { case "Sqlite": - services.AddDbContext(ServiceLifetime.Singleton); + services.AddDbContext(); break; case "Postgres": - services.AddDbContext(ServiceLifetime.Singleton); + NpgsqlConnection.GlobalTypeMapper.EnableDynamicJson(); + services.AddDbContext(); break; } -services.AddSingleton(); +services.AddHttpClient(c => c.BaseAddress = new Uri("https://acme-payment")) + .AddServiceDiscovery(); services.AddControllers(); services.AddScoped(); -services.AddApplicationInsightsTelemetry(); -services.AddSingleton(); - var app = builder.Build(); using (var scope = app.Services.CreateScope()) { - var db = scope.ServiceProvider.GetRequiredService(); + var db = scope.ServiceProvider.GetRequiredService(); db.Database.Migrate(); } -if (app.Environment.IsDevelopment()) -{ - app.UseDeveloperExceptionPage(); -} -app.UseHttpsRedirection(); +app.UseDeveloperExceptionPage(); app.UseRouting(); -app.UseEndpoints(endpoints => endpoints.MapControllers()); +app.MapControllers(); await app.RunAsync(); \ No newline at end of file diff --git a/apps/acme-order/Properties/launchSettings.json b/apps/acme-order/Properties/launchSettings.json index d0520852..2777dd5a 100755 --- a/apps/acme-order/Properties/launchSettings.json +++ b/apps/acme-order/Properties/launchSettings.json @@ -1,11 +1,10 @@ { "$schema": "http://json.schemastore.org/launchsettings.json", "profiles": { - "acme_order": { + "AcmeOrder": { "commandName": "Project", - "launchBrowser": true, "launchUrl": "order", - "applicationUrl": "http://localhost:5000", + "applicationUrl": "http://localhost:8086", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/apps/acme-order/README.md b/apps/acme-order/README.md index 5537eb58..7c4d124c 100755 --- a/apps/acme-order/README.md +++ b/apps/acme-order/README.md @@ -1,7 +1,18 @@ # ACME Order Service +Requires DotNet version 8. + ## Getting Started +Download donet +https://dotnet.microsoft.com/en-us/ + +In Visual Studio Code +Download the DotNet C# Dev Kit extension +VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit + +## Locally running acme-order + To run the acme order service, do the following: Start the mongodb container: @@ -13,11 +24,30 @@ Start the mongodb container: Start the application: ```bash - dotnet run + dotnet run --urls=http://localhost:8086/ ``` Verify the health of the application: ```bash - open localhost:5000/actuator/health + open localhost:8086/actuator/health +``` + +## Deploying acme-order app + +### Build deployable + +```bash +dotnet publish -r linux-x64 +``` + +### Deploy on TAS + +Included [manifest.yml](./manifest.yml) file can be used to deploy the published binary + +Ensure you're logged in to your TAS instance on cf cli + +```bash +cf login -a +cf push -f manifest.yml ``` \ No newline at end of file diff --git a/apps/acme-order/Request/CardRequest.cs b/apps/acme-order/Request/CardRequest.cs index 2cae4015..148ef43e 100755 --- a/apps/acme-order/Request/CardRequest.cs +++ b/apps/acme-order/Request/CardRequest.cs @@ -1,14 +1,13 @@ using Newtonsoft.Json; -namespace acme_order.Request +namespace AcmeOrder.Request; + +public class CardRequest { - public class CardRequest - { - [JsonProperty("number")] public string Number { get; set; } - [JsonProperty("expMonth")] public string ExpMonth { get; set; } - [JsonProperty("expYear")] public string ExpYear { get; set; } - [JsonProperty("ccv")] public string Ccv { get; set; } - - [JsonProperty("type")] public string Type { get; set; } - } + [JsonProperty("number")] public string Number { get; set; } + [JsonProperty("expMonth")] public string ExpMonth { get; set; } + [JsonProperty("expYear")] public string ExpYear { get; set; } + [JsonProperty("ccv")] public string Ccv { get; set; } + + [JsonProperty("type")] public string Type { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Request/PaymentRequest.cs b/apps/acme-order/Request/PaymentRequest.cs index 2c1ff626..826bc522 100755 --- a/apps/acme-order/Request/PaymentRequest.cs +++ b/apps/acme-order/Request/PaymentRequest.cs @@ -1,12 +1,9 @@ -using System.Text.Json.Serialization; -using acme_order.Models; using Newtonsoft.Json; -namespace acme_order.Request +namespace AcmeOrder.Request; + +public class PaymentRequest { - public class PaymentRequest - { - [JsonProperty("card")] public CardRequest Card { get; set; } - [JsonProperty("total")] public string Total { get; set; } - } + [JsonProperty("card")] public CardRequest Card { get; set; } + [JsonProperty("total")] public string Total { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Request/TokenRequest.cs b/apps/acme-order/Request/TokenRequest.cs index 5b3d218e..d835d25a 100755 --- a/apps/acme-order/Request/TokenRequest.cs +++ b/apps/acme-order/Request/TokenRequest.cs @@ -1,9 +1,8 @@ using Newtonsoft.Json; -namespace acme_order.Request +namespace AcmeOrder.Request; + +public class TokenRequest { - public class TokenRequest - { - [JsonProperty("access_token")] public string AccessToken { get; set; } - } + [JsonProperty("access_token")] public string AccessToken { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Response/OrderCreateResponse.cs b/apps/acme-order/Response/OrderCreateResponse.cs index e489aee4..2a73a1b9 100755 --- a/apps/acme-order/Response/OrderCreateResponse.cs +++ b/apps/acme-order/Response/OrderCreateResponse.cs @@ -1,12 +1,11 @@ -using acme_order.Models; +using AcmeOrder.Services; using Newtonsoft.Json; -namespace acme_order.Response +namespace AcmeOrder.Response; + +public class OrderCreateResponse { - public class OrderCreateResponse - { - [JsonProperty("userid")] public string UserId { get; set; } - [JsonProperty("order_id")] public string OrderId { get; set; } - public Payment Payment { get; set; } - } + [JsonProperty("userid")] public string UserId { get; set; } + [JsonProperty("order_id")] public string OrderId { get; set; } + public Payment Payment { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Response/OrderResponse.cs b/apps/acme-order/Response/OrderResponse.cs index c7d5c963..af4e7c88 100755 --- a/apps/acme-order/Response/OrderResponse.cs +++ b/apps/acme-order/Response/OrderResponse.cs @@ -1,18 +1,17 @@ using System.Collections.Generic; -using acme_order.Models; +using AcmeOrder.Models; -namespace acme_order.Response +namespace AcmeOrder.Response; + +public class OrderResponse { - public class OrderResponse - { - public string Userid { get; set; } - public string Firstname { get; set; } - public string Lastname { get; set; } - public Address Address { get; set; } - public string Email { get; set; } - public string Delivery { get; set; } - public Card Card { get; set; } - public ICollection Cart { get; set; } - public string Total { get; set; } - } + public string Userid { get; set; } + public string Firstname { get; set; } + public string Lastname { get; set; } + public Address Address { get; set; } + public string Email { get; set; } + public string Delivery { get; set; } + public Card Card { get; set; } + public ICollection Cart { get; set; } + public string Total { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Services/OrderService.cs b/apps/acme-order/Services/OrderService.cs index cc94e18b..ca9963d7 100755 --- a/apps/acme-order/Services/OrderService.cs +++ b/apps/acme-order/Services/OrderService.cs @@ -4,136 +4,142 @@ using System.Net; using System.Net.Http; using System.Net.Http.Headers; +using System.Net.Http.Json; using System.Text; using System.Threading.Tasks; -using acme_order.Configuration; -using acme_order.Db; -using acme_order.Models; -using acme_order.Request; -using acme_order.Response; +using AcmeOrder.Db; +using AcmeOrder.Models; +using AcmeOrder.Request; +using AcmeOrder.Response; using Microsoft.Extensions.Logging; using Newtonsoft.Json; +using Steeltoe.Common.Discovery; +using Steeltoe.Discovery; -namespace acme_order.Services -{ - public class OrderService - { - private readonly OrderContext _context; - private readonly ILogger _logger; - private readonly HttpClient _httpClient; - private const string PendingTransactionId = "pending"; - private readonly string _paymentUrl; - - public OrderService(OrderContext context, ILogger logger) - { - _context = context; - _logger = logger; - _httpClient = new HttpClient(); - - var paymentHost = Environment.GetEnvironmentVariable("PAYMENT_SERVICE_SERVICE_HOST") ?? "payment-service"; - _paymentUrl = $"http://{paymentHost}/pay"; - } - - public async Task Create(string userid, Order orderIn, string authorization) - { - var order = new Order - { - Paid = "pending", - UserId = userid, - Firstname = orderIn.Firstname, - Lastname = orderIn.Lastname, - Total = orderIn.Total, - Address = orderIn.Address, - Email = orderIn.Email, - Delivery = orderIn.Delivery, - Card = orderIn.Card, - Cart = orderIn.Cart - }; - var payment = await MakePayment(orderIn.Total, order.Card, authorization); - _logger.LogDebug("Received payment response transactionId {transactionId}", payment.TransactionId); +namespace AcmeOrder.Services; - if (string.Equals(PendingTransactionId, payment.TransactionId)) return new OrderCreateResponse(); +public class OrderService +{ + private const string PendingTransactionId = "pending"; + private readonly OrderContext _context; + private readonly HttpClient _httpClient; + private readonly ILogger _logger; - order.Paid = payment.TransactionId; - var savedOrder = SaveOrder(order); - return new OrderCreateResponse - { - UserId = userid, - OrderId = savedOrder.Id.ToString(), - Payment = payment - }; - } + public OrderService(PostgresOrderContext context, ILogger logger, HttpClient httpClient) + { + _context = context; + _logger = logger; + _httpClient = httpClient; - public List Get() => - FromOrderToOrderResponse(_context.Orders.ToList()); - public List Get(string userId) => - FromOrderToOrderResponse(_context.Orders.Where(o => o.UserId == userId).ToList()); + } - private Order SaveOrder(Order order) - { - _logger.LogDebug("Attempting to Save Order {order}", order); - var saved = _context.Orders.Add(order).Entity; - _context.SaveChanges(); - _logger.LogDebug("Saved Order {saved}", saved); - return saved; - } - - private async Task MakePayment(string total, Card card, string authorization) + public async Task Create(string userid, Order orderIn, string authorization) + { + var order = new Order { - var paymentRequest = new PaymentRequest() - { - Card = new CardRequest() - { - Number = card.Number, - ExpMonth = card.ExpMonth, - ExpYear = card.ExpYear, - Ccv = card.Ccv, - Type = card.Type - }, - Total = total - }; + Paid = "pending", + UserId = userid, + Firstname = orderIn.Firstname, + Lastname = orderIn.Lastname, + Total = orderIn.Total, + Address = orderIn.Address, + Email = orderIn.Email, + Delivery = orderIn.Delivery, + Card = orderIn.Card, + Cart = orderIn.Cart + }; - var json = JsonConvert.SerializeObject(paymentRequest); - var data = new StringContent(json, Encoding.UTF8, "application/json"); + var payment = await MakePayment(orderIn.Total, order.Card, authorization); + _logger.LogDebug("Received payment response transactionId {transactionId}", payment.TransactionId); - _logger.LogDebug("Making Payment Request for {total} to {url}", total, _paymentUrl); - var request = new HttpRequestMessage(HttpMethod.Post, _paymentUrl); - request.Content = data; - request.Headers.Authorization = AuthenticationHeaderValue.Parse(authorization); + if (string.Equals(PendingTransactionId, payment.TransactionId)) return new OrderCreateResponse(); - _httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); + order.Paid = payment.TransactionId; - var response = await _httpClient.SendAsync(request); + var savedOrder = SaveOrder(order); - if (response.StatusCode != HttpStatusCode.OK && response.StatusCode != HttpStatusCode.Unauthorized && - response.StatusCode != HttpStatusCode.BadRequest && - response.StatusCode != HttpStatusCode.PaymentRequired) return new Payment(); + return new OrderCreateResponse + { + UserId = userid, + OrderId = savedOrder.Id.ToString(), + Payment = payment + }; + } - var result = response.Content.ReadAsStringAsync().Result; - var obj = JsonConvert.DeserializeObject(result); + public List Get() + { + return FromOrderToOrderResponse(_context.Orders.ToList()); + } - return obj ?? new Payment(); - } + public List Get(string userId) + { + return FromOrderToOrderResponse(_context.Orders.Where(o => o.UserId == userId).ToList()); + } - private static List FromOrderToOrderResponse(IEnumerable orderList) + private Order SaveOrder(Order order) + { + _logger.LogDebug("Attempting to Save Order {order}", order); + var saved = _context.Orders.Add(order).Entity; + _context.SaveChanges(); + _logger.LogDebug("Saved Order {saved}", saved); + return saved; + } + + private async Task MakePayment(string total, Card card, string authorization) + { + var paymentRequest = new PaymentRequest { - return orderList.Select(order => - new OrderResponse - { - Userid = order.UserId, - Firstname = order.Firstname, - Lastname = order.Lastname, - Address = order.Address, - Email = order.Email, - Delivery = order.Delivery, - Card = order.Card, - Cart = order.Cart, - Total = order.Total - }).ToList(); - } + Card = new CardRequest + { + Number = card.Number, + ExpMonth = card.ExpMonth, + ExpYear = card.ExpYear, + Ccv = card.Ccv, + Type = card.Type + }, + Total = total + }; + + var json = JsonConvert.SerializeObject(paymentRequest); + var data = new StringContent(json, Encoding.UTF8, "application/json"); + + _logger.LogDebug("Making Payment Request for {total} to {baseurl}/pay", total, _httpClient.BaseAddress); + var request = new HttpRequestMessage(HttpMethod.Post, "/pay"); + request.Content = data; + request.Headers.Authorization = AuthenticationHeaderValue.Parse(authorization); + + _httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); + + var response = await _httpClient.SendAsync(request); + + if (response.StatusCode != HttpStatusCode.OK && response.StatusCode != HttpStatusCode.Unauthorized && + response.StatusCode != HttpStatusCode.BadRequest && + response.StatusCode != HttpStatusCode.PaymentRequired) return new Payment(); + + var str = await response.Content.ReadAsStringAsync(); + _logger.LogInformation(str); + var result = JsonConvert.DeserializeObject(str); + return result; + } + + private static List FromOrderToOrderResponse(IEnumerable orderList) + { + return orderList.Select(order => + new OrderResponse + { + Userid = order.UserId, + Firstname = order.Firstname, + Lastname = order.Lastname, + Address = order.Address, + Email = order.Email, + Delivery = order.Delivery, + Card = order.Card, + Cart = order.Cart, + Total = order.Total + }).ToList(); } } \ No newline at end of file diff --git a/apps/acme-order/Services/Payment.cs b/apps/acme-order/Services/Payment.cs index 161e018e..b22681d5 100755 --- a/apps/acme-order/Services/Payment.cs +++ b/apps/acme-order/Services/Payment.cs @@ -1,14 +1,13 @@ using Newtonsoft.Json; -namespace acme_order.Models +namespace AcmeOrder.Services; + +public class Payment { - public class Payment - { - public string Amount { get; set; } - public string Message { get; set; } - public string Success { get; set; } - - public int Status { get; set; } - [JsonProperty("transactionID")] public string TransactionId { get; set; } - } + public string Amount { get; set; } + public string Message { get; set; } + public string Success { get; set; } + + public int Status { get; set; } + [JsonProperty("transactionID")] public string TransactionId { get; set; } } \ No newline at end of file diff --git a/apps/acme-order/Startup.cs b/apps/acme-order/Startup.cs deleted file mode 100755 index deb45fe2..00000000 --- a/apps/acme-order/Startup.cs +++ /dev/null @@ -1,65 +0,0 @@ -using acme_order.Auth; -using acme_order.Configuration; -using acme_order.Db; -using acme_order.Services; -using Microsoft.ApplicationInsights.Extensibility; -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Options; - -namespace acme_order -{ - public class Startup - { - public Startup(IConfiguration configuration) - { - Configuration = configuration; - } - - public IConfiguration Configuration { get; } - - // This method gets called by the runtime. Use this method to add services to the container. - public void ConfigureServices(IServiceCollection services) - { - services.Configure( - Configuration.GetSection(nameof(AcmeServiceSettings))); - - services.AddSingleton(sp => - sp.GetRequiredService>().Value); - - switch (Configuration["DatabaseProvider"]) - { - case "Sqlite": - services.AddDbContext(ServiceLifetime.Singleton); - break; - - case "Postgres": - services.AddDbContext(ServiceLifetime.Singleton); - break; - } - - services.AddSingleton(); - services.AddControllers(); - services.AddScoped(); - - services.AddApplicationInsightsTelemetry(); - services.AddSingleton(); - } - - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. - public void Configure(IApplicationBuilder app, IWebHostEnvironment env) - { - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - } - - app.UseHttpsRedirection(); - app.UseRouting(); - app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); - } - } -} \ No newline at end of file diff --git a/apps/acme-order/acme-order.csproj b/apps/acme-order/acme-order.csproj index a12cf974..71bd29d3 100755 --- a/apps/acme-order/acme-order.csproj +++ b/apps/acme-order/acme-order.csproj @@ -1,33 +1,37 @@ - - net6.0 - acme-order project - + + net8.0 + acme-order project + AcmeOrder + - - 3.1.2 - + + 3.2.8 + - - - - - - - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + + + - - - - + + + + diff --git a/apps/acme-order/acme-order.sln b/apps/acme-order/acme-order.sln new file mode 100644 index 00000000..843ae848 --- /dev/null +++ b/apps/acme-order/acme-order.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "acme-order", "acme-order.csproj", "{3C3B531A-B8B4-4780-B4E3-5EDC4A66781D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3C3B531A-B8B4-4780-B4E3-5EDC4A66781D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C3B531A-B8B4-4780-B4E3-5EDC4A66781D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3C3B531A-B8B4-4780-B4E3-5EDC4A66781D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3C3B531A-B8B4-4780-B4E3-5EDC4A66781D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {40871F87-1B85-4413-B696-0BB0D0F57D43} + EndGlobalSection +EndGlobal diff --git a/apps/acme-order/app.config b/apps/acme-order/app.config index 40844fce..96d82662 100755 --- a/apps/acme-order/app.config +++ b/apps/acme-order/app.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/apps/acme-order/appsettings.Development.json b/apps/acme-order/appsettings.Development.json index 9fbdc05c..04afbf75 100755 --- a/apps/acme-order/appsettings.Development.json +++ b/apps/acme-order/appsettings.Development.json @@ -1,11 +1,25 @@ { + "$schema": "https://steeltoe.io/schema/latest/schema.json", "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information", "Steeltoe": "Information", - "acme_order": "Debug" + "AcmeOrder": "Debug" } + }, + "Postgres": { + "Client": { + "ConnectionString": "Host=localhost;Port=5432;Database=acme-order;Username=root;Password=rootpassword" + } + }, + "Eureka": { + "Instance": { + "IpAddress": "127.0.0.1" + } + }, + "AcmeServiceSettings": { + "AuthUrl": "http://localhost:8090" } } diff --git a/apps/acme-order/appsettings.json b/apps/acme-order/appsettings.json index 7bccfcc3..ce7e7df2 100755 --- a/apps/acme-order/appsettings.json +++ b/apps/acme-order/appsettings.json @@ -1,17 +1,10 @@ { "Spring": { "Application": { - "Name":"order-service" + "Name": "acme-order" } }, - "DatabaseProvider": "Sqlite", - "ConnectionStrings": { - "OrderContext": "Data Source=sqlite.order.db", - "KeyVaultUri": "" - }, - "ApplicationInsights": { - "ConnectionString" : "" - }, + "DatabaseProvider": "Postgres", "AcmeServiceSettings": { "AuthUrl": "" }, @@ -21,14 +14,16 @@ "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information", "Steeltoe": "Information", - "acme_order": "Information" + "AcmeOrder": "Information" } }, "Management": { "Endpoints": { "Actuator": { "Exposure": { - "Include": ["*"] + "Include": [ + "*" + ] }, "Health": { "ShowDetails": "Always" diff --git a/apps/acme-order/docker-compose.yml b/apps/acme-order/docker-compose.yml deleted file mode 100755 index 227c44e6..00000000 --- a/apps/acme-order/docker-compose.yml +++ /dev/null @@ -1,11 +0,0 @@ -version: '3.7' -services: - postgres: - container_name: order_service_postgres - image: postgres - environment: - POSTGRES_USER: root - POSTGRES_PASSWORD: rootpassword - POSTGRES_DB: acmefit - ports: - - "5432:5432" \ No newline at end of file diff --git a/apps/acme-order/manifest.yml b/apps/acme-order/manifest.yml new file mode 100644 index 00000000..3d934771 --- /dev/null +++ b/apps/acme-order/manifest.yml @@ -0,0 +1,14 @@ +--- +applications: + - name: acme-order + memory: 200M + path: bin/Release/net8.0/linux-x64/publish/ + buildpacks: + - dotnet_core_buildpack + services: + - acme-registry + - acme-order-postgres + routes: + - route: acme-order.apps.internal + env: + AcmeServiceSettings__AuthUrl: "https://acme-fitness.apps.vcf3.vmtanzu.com" # To be replaced with your Gateway url in TAS diff --git a/azure-spring-apps-enterprise/resources/json/routes/order-service.json b/apps/acme-order/order-routes.json similarity index 83% rename from azure-spring-apps-enterprise/resources/json/routes/order-service.json rename to apps/acme-order/order-routes.json index 629591ac..aa5d9abf 100644 --- a/azure-spring-apps-enterprise/resources/json/routes/order-service.json +++ b/apps/acme-order/order-routes.json @@ -1,7 +1,6 @@ -[ +{ "routes": [ { - "ssoEnabled": true, - "tokenRelay": true, + "token-relay": true, "title": "Create an order.", "description": "Creates an order for the user.", "predicates": [ @@ -16,8 +15,7 @@ ] }, { - "ssoEnabled": true, - "tokenRelay": true, + "token-relay": true, "title": "Retrieve User's Orders.", "description": "Lookup all orders for the given user", "predicates": [ @@ -31,4 +29,5 @@ "order" ] } -] \ No newline at end of file +] +} \ No newline at end of file diff --git a/apps/acme-payment/README.md b/apps/acme-payment/README.md new file mode 100644 index 00000000..f8e93e4f --- /dev/null +++ b/apps/acme-payment/README.md @@ -0,0 +1,17 @@ +# Payment + + +> A payment service, used to emulate service to handle the payment flow. + +### Run + +* [Docker](https://www.docker.com/docker-community) + + +## Local running + +To run locally + + +`./gradlew bootRun --args="--spring.profiles.active=local"` + diff --git a/apps/acme-payment/build.gradle b/apps/acme-payment/build.gradle index 0faad5f5..c0dfc283 100644 --- a/apps/acme-payment/build.gradle +++ b/apps/acme-payment/build.gradle @@ -1,12 +1,12 @@ plugins { id 'java' id 'org.springframework.boot' version "${springBootVersion}" - id 'io.spring.dependency-management' version '1.1.0' + id 'io.spring.dependency-management' version '1.1.6' } group = 'com.vmware' version = '0.0.1-SNAPSHOT' -sourceCompatibility = '17' +sourceCompatibility = '21' repositories { mavenCentral() @@ -29,6 +29,14 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry' + implementation 'io.pivotal.spring.cloud:spring-cloud-services-starter-config-client' + implementation group: 'io.pivotal.cfenv', name: 'java-cfenv-boot', version: '3.1.5' + implementation group: 'io.pivotal.cfenv', name: 'java-cfenv-boot-pivotal-sso', version: '3.1.5' + implementation 'org.springframework.credhub:spring-credhub-starter:3.1.0' + + compileOnly 'org.projectlombok:lombok' + annotationProcessor 'org.projectlombok:lombok' runtimeOnly 'io.micrometer:micrometer-registry-prometheus' @@ -39,9 +47,11 @@ dependencies { dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" + mavenBom "io.pivotal.spring.cloud:spring-cloud-services-dependencies:4.1.3" + } } tasks.named('test') { useJUnitPlatform() -} \ No newline at end of file +} diff --git a/apps/acme-payment/gradle.properties b/apps/acme-payment/gradle.properties index c1c07af6..3e90d368 100644 --- a/apps/acme-payment/gradle.properties +++ b/apps/acme-payment/gradle.properties @@ -1,2 +1,2 @@ -springBootVersion=3.2.1 -springCloudVersion=2023.0.0 +springBootVersion=3.3.2 +springCloudVersion=2023.0.3 diff --git a/apps/acme-payment/gradle/wrapper/gradle-wrapper.jar b/apps/acme-payment/gradle/wrapper/gradle-wrapper.jar index 41d9927a..d64cd491 100644 Binary files a/apps/acme-payment/gradle/wrapper/gradle-wrapper.jar and b/apps/acme-payment/gradle/wrapper/gradle-wrapper.jar differ diff --git a/apps/acme-payment/gradle/wrapper/gradle-wrapper.properties b/apps/acme-payment/gradle/wrapper/gradle-wrapper.properties index 774fae87..0d184210 100644 --- a/apps/acme-payment/gradle/wrapper/gradle-wrapper.properties +++ b/apps/acme-payment/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/apps/acme-payment/gradlew b/apps/acme-payment/gradlew index 1b6c7873..1aa94a42 100755 --- a/apps/acme-payment/gradlew +++ b/apps/acme-payment/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +80,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ @@ -205,6 +214,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/apps/acme-payment/gradlew.bat b/apps/acme-payment/gradlew.bat index 107acd32..6689b85b 100644 --- a/apps/acme-payment/gradlew.bat +++ b/apps/acme-payment/gradlew.bat @@ -1,89 +1,92 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/apps/acme-payment/manifest.yml b/apps/acme-payment/manifest.yml new file mode 100644 index 00000000..faea0b83 --- /dev/null +++ b/apps/acme-payment/manifest.yml @@ -0,0 +1,15 @@ +--- +applications: +- name: acme-payment + memory: 1G + path: build/libs/acme-payment-0.0.1-SNAPSHOT.jar + buildpack: java_buildpack_offline + services: + - acme-config + - acme-registry + routes: + - route: acme-payment.apps.internal + env: + JBP_CONFIG_SPRING_AUTO_RECONFIGURATION: '{enabled: false}' + SPRING_PROFILES_ACTIVE: http2,cloud + JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 21.+ } }' diff --git a/azure-spring-apps-enterprise/resources/json/routes/assist-service.json b/apps/acme-payment/pay-routes.json similarity index 62% rename from azure-spring-apps-enterprise/resources/json/routes/assist-service.json rename to apps/acme-payment/pay-routes.json index 506e0bea..a167ff13 100644 --- a/azure-spring-apps-enterprise/resources/json/routes/assist-service.json +++ b/apps/acme-payment/pay-routes.json @@ -1,14 +1,16 @@ -[ +{ "routes": [ { + "token-relay": true, "predicates": [ - "Path=/ai/*", + "Path=/pay", "Method=POST" ], "filters": [ "StripPrefix=0" ], "tags": [ - "assist-service" + "pay" ] } -] \ No newline at end of file +] +} diff --git a/apps/acme-payment/src/main/java/com/example/acme/payment/Card.java b/apps/acme-payment/src/main/java/com/example/acme/payment/Card.java index 78745e0b..c6a4adca 100644 --- a/apps/acme-payment/src/main/java/com/example/acme/payment/Card.java +++ b/apps/acme-payment/src/main/java/com/example/acme/payment/Card.java @@ -2,8 +2,14 @@ import java.time.LocalDate; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; import org.springframework.util.StringUtils; +@Data +@NoArgsConstructor +@AllArgsConstructor public class Card { private String number; @@ -11,48 +17,6 @@ public class Card { private String expMonth; private String ccv; - public Card(String number, String expYear, String expMonth, String ccv) { - this.number = number; - this.expYear = expYear; - this.expMonth = expMonth; - this.ccv = ccv; - } - - public Card() { - } - - public String getNumber() { - return number; - } - - public void setNumber(String number) { - this.number = number; - } - - public String getExpYear() { - return expYear; - } - - public void setExpYear(String expYear) { - this.expYear = expYear; - } - - public String getExpMonth() { - return expMonth; - } - - public void setExpMonth(String expMonth) { - this.expMonth = expMonth; - } - - public String getCcv() { - return ccv; - } - - public void setCcv(String ccv) { - this.ccv = ccv; - } - public boolean containsMissingInfo() { return !StringUtils.hasText(number) || !StringUtils.hasText(expYear) || !StringUtils.hasText(ccv) || !StringUtils.hasText(expMonth); } diff --git a/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentController.java b/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentController.java index 6bcc6c04..1b8f100c 100644 --- a/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentController.java +++ b/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentController.java @@ -2,20 +2,18 @@ import io.micrometer.core.annotation.Timed; +import lombok.AllArgsConstructor; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; @Timed("store.payment") @RestController +@AllArgsConstructor public class PaymentController { private final PaymentService paymentService; - public PaymentController(PaymentService paymentService) { - this.paymentService = paymentService; - } - @PostMapping("/pay") public PaymentResponse processPayment(@RequestBody PaymentRequest paymentRequest) { return paymentService.processPayment(paymentRequest); diff --git a/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentRequest.java b/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentRequest.java index d645ccfa..8c4be404 100644 --- a/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentRequest.java +++ b/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentRequest.java @@ -1,32 +1,15 @@ package com.example.acme.payment; +import lombok.AllArgsConstructor; +import lombok.Data; import org.springframework.util.StringUtils; +@Data +@AllArgsConstructor public class PaymentRequest { private Card card; private String total; - public Card getCard() { - return card; - } - - public PaymentRequest(Card card, String total) { - this.card = card; - this.total = total; - } - - public void setCard(Card card) { - this.card = card; - } - - public String getTotal() { - return total; - } - - public void setTotal(String total) { - this.total = total; - } - public boolean containsMissingData(){ return !StringUtils.hasText(total) || card.containsMissingInfo(); } diff --git a/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentResponse.java b/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentResponse.java index 6c9d73b9..c9cd6485 100644 --- a/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentResponse.java +++ b/apps/acme-payment/src/main/java/com/example/acme/payment/PaymentResponse.java @@ -1,5 +1,10 @@ package com.example.acme.payment; +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor public class PaymentResponse { private boolean success; @@ -8,52 +13,4 @@ public class PaymentResponse { private String transactionID; private int status; - public boolean getSuccess() { - return success; - } - - public PaymentResponse(boolean success, String message, String amount, String transactionID, int status) { - this.success = success; - this.message = message; - this.amount = amount; - this.transactionID = transactionID; - this.status = status; - } - - public void setSuccess(boolean success) { - this.success = success; - } - - public String getMessage() { - return message; - } - - public void setMessage(String message) { - this.message = message; - } - - public String getAmount() { - return amount; - } - - public void setAmount(String amount) { - this.amount = amount; - } - - public String getTransactionID() { - return transactionID; - } - - public void setTransactionID(String transactionID) { - this.transactionID = transactionID; - } - - public int getStatus() { - return status; - } - - public void setStatus(int status) { - this.status = status; - } - } diff --git a/apps/acme-payment/src/main/resources/application-local.yaml b/apps/acme-payment/src/main/resources/application-local.yaml new file mode 100644 index 00000000..cfe643c3 --- /dev/null +++ b/apps/acme-payment/src/main/resources/application-local.yaml @@ -0,0 +1,7 @@ + spring: + cloud: + config: + enabled: true + config: + import: + - configserver:http://localhost:8888 diff --git a/apps/acme-payment/src/main/resources/application.yml b/apps/acme-payment/src/main/resources/application.yml index e00ee26f..4568e3a4 100644 --- a/apps/acme-payment/src/main/resources/application.yml +++ b/apps/acme-payment/src/main/resources/application.yml @@ -1,8 +1,11 @@ +spring: + application: + name: acme-payment eureka: client: - enabled: false + enabled: true management: endpoints: web: exposure: - include: info,health \ No newline at end of file + include: info,health diff --git a/apps/acme-payment/src/test/java/com/example/acme/payment/PaymentServiceTest.java b/apps/acme-payment/src/test/java/com/example/acme/payment/PaymentServiceTest.java index 076fcdbb..1ea33eb9 100644 --- a/apps/acme-payment/src/test/java/com/example/acme/payment/PaymentServiceTest.java +++ b/apps/acme-payment/src/test/java/com/example/acme/payment/PaymentServiceTest.java @@ -25,7 +25,7 @@ void processPayment_shouldBeSuccessfulForValidRequest() { PaymentResponse response = paymentService.processPayment(paymentRequest); - assertThat(response.getSuccess()).isTrue(); + assertThat(response.isSuccess()).isTrue(); assertThat(response.getAmount()).isEqualTo(paymentRequest.getTotal()); assertThat(response.getTransactionID()).isNotBlank(); assertThat(response.getStatus()).isEqualTo(HttpStatus.OK.value()); @@ -38,7 +38,7 @@ void processPayment_shouldBeUnsuccessfulForMissingCard() { PaymentResponse response = paymentService.processPayment(paymentRequest); - assertThat(response.getSuccess()).isFalse(); + assertThat(response.isSuccess()).isFalse(); assertThat(response.getAmount()).isEqualTo("0"); assertThat(response.getTransactionID()).isEqualTo("-1"); assertThat(response.getStatus()).isEqualTo(HttpStatus.BAD_REQUEST.value()); @@ -54,7 +54,7 @@ void processPayment_shouldBeUnsuccessfulForMissingRequestData() { PaymentResponse response = paymentService.processPayment(paymentRequest); - assertThat(response.getSuccess()).isFalse(); + assertThat(response.isSuccess()).isFalse(); assertThat(response.getAmount()).isEqualTo("0"); assertThat(response.getTransactionID()).isEqualTo("-1"); assertThat(response.getStatus()).isEqualTo(HttpStatus.BAD_REQUEST.value()); @@ -72,7 +72,7 @@ void processPayment_shouldBeUnsuccessfulForInvalidCard() { PaymentResponse response = paymentService.processPayment(paymentRequest); - assertThat(response.getSuccess()).isFalse(); + assertThat(response.isSuccess()).isFalse(); assertThat(response.getAmount()).isEqualTo("0"); assertThat(response.getTransactionID()).isEqualTo("-2"); assertThat(response.getStatus()).isEqualTo(HttpStatus.BAD_REQUEST.value()); @@ -90,7 +90,7 @@ void processPayment_shouldBeUnsuccessfulForExpiredCard() { PaymentResponse response = paymentService.processPayment(paymentRequest); - assertThat(response.getSuccess()).isFalse(); + assertThat(response.isSuccess()).isFalse(); assertThat(response.getAmount()).isEqualTo("0"); assertThat(response.getTransactionID()).isEqualTo("-3"); assertThat(response.getStatus()).isEqualTo(HttpStatus.BAD_REQUEST.value()); diff --git a/apps/acme-payment/src/test/resources/application.yml b/apps/acme-payment/src/test/resources/application.yml new file mode 100644 index 00000000..9c011998 --- /dev/null +++ b/apps/acme-payment/src/test/resources/application.yml @@ -0,0 +1,7 @@ +spring: + cloud: + config: + enabled: false +eureka: + client: + enabled: false diff --git a/apps/acme-shopping/.gitignore b/apps/acme-shopping/.gitignore index 9975b900..4e9e6fa3 100644 --- a/apps/acme-shopping/.gitignore +++ b/apps/acme-shopping/.gitignore @@ -1,2 +1,4 @@ /.idea/ -node_modules \ No newline at end of file +node_modules +*.iml +.env \ No newline at end of file diff --git a/apps/acme-shopping/README.md b/apps/acme-shopping/README.md index b958ed8c..0471205b 100644 --- a/apps/acme-shopping/README.md +++ b/apps/acme-shopping/README.md @@ -41,29 +41,21 @@ The images are tagged with: ### public/ -* Contains all the html file -* every html file has a - - - - - - -